* MaskedTextBox.cs: Update the base text whenever the text changes. MTB
[mono-project.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
blobd67451b50bf65b865dcc9f204325fbeeddf4b55f
1 2007-05-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3         * MaskedTextBox.cs: Update the base text whenever the text changes. MTB
4           now actually enters a usable state.
6 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
8         * ToolBar.cs: Check for handle created in redraw to prevent unneeded size
9         calculations, it reduces the size cauculation from 7 to 3 on a toolbar with
10         3 buttons.
12 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
14         * ToolBar.cs: Save default_size on create handle to use later for buttons
15         without text, needed to mimic win32 behavior.
17 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
19         * ToolBar.cs: Fix button layour to best fit width or height according to
20         vertical or not. Fixes #81524.
22 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
24         * ToolBarButton.cs: When change style call ToolBar.Redraw to update
25         toolbar size info because different styles theres different sizes.
26         Fixes #81522.
28 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
30         * ThemeWinClassic.cs: For .Net 2.0 don't draw any image
31         if we are using checkboxes, checked is true, and we have less
32         than two images in StateImageList; for the 1.1 in the same scenario
33         draw the first image if we have at least one image in StateImageList.
34         Fixes part of #81191.
36 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
38         * ToolStrip.cs, ToolStripManager.cs: We need to remove items from
39         the owner's Items collection on merge.
41 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
43         * ToolStrip.cs: Use new internal ToolStripItemCollection constructor.
44         * ToolStripItemCollection.cs: Lots of fixes to when events get called
45         and parent/owner gets changed based on gert's unit tests.
47 2007-05-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
49         * MaskedTextBox.cs: Started implementing parts of it.
51 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
53         * ListView.cs: When clicking the checkbox on the items
54         take into account the double clicks even if we have only
55         one image in StateImageList (only for 1.0/1.1). Also 
56         generate an extra change of checked state when we receive
57         the second click on checkbox (match .Net behaviour). 
58         Fixes part of #81191.
60 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
62         * ThemeWin32Classic.cs: Fix text rectangles in Tooltips.
64 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
66         * Form.cs: Move some of OnLoad to OnLoadInternal so it gets called
67         even if OnLoad is overriden and base.OnLoad is not called.
68         [Fixes bug #81582]
70 2007-05-10  Andreia Gaita  <avidigal@novell.com>
72         * TableLayoutSettings.cs: A big doh! fix and bowing down of head in 
73         shame. (I blame my ever-persisting and annoying cold)
75 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
77         * ListView.cs: Don't eat navigation keys.  Let them flow through to
78         KeyDown/KeyPress routines.  [Fixes bug #81569]
80 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
82         * ListView.cs: When handling keys for selecting the item based off
83         keyboard input, do not consider keys pressed with Alt or Control.  Also,
84         correctly handle keys when the Shift key is down. [Fixes bug #81578]
86 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
88         * Control.cs: When using UseWaitCursor, we have to store the requested
89         Cursor to use when UseWaitCursor is turned off.
91 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
93         * Control.cs: Implement PreProcessControlMessage.  Default IsInputChar
94         to false.
95         * Application.cs: Use PreProcessControlMessage instead of
96         PreProcessMessage.
97         * PreProcessControlMessage.cs: Make internal for 1.1.
99 2007-05-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
101         * Control.cs: Add InternalContains focus property, which hast the same
102         functionality of ContainsFocus, but also including implicit controls.
103         * ListViewItem.cs: Use InternalContainsFocus instead of ContainsFocus,
104         since we need to know if the focus is contained in our implicit
105         ItemControl when calculating Layout. Fixes part of #80888.
107 2007-05-08  Everaldo Canuto  <everaldo@simios.org>
109         * ToolTip.cs: Remove center form string alignment as it must be align to
110         left.
112 2007-05-08  Jonathan Pobst  <monkey@jpobst.com>
114         * ToolStripItemCollection.cs: Set the new item's parent and owner
115         in Insert like we do in Add.  [Fixes bug #81568]
117 2007-05-08  Jackson Harper  <jackson@ximian.com>
119         * TreeView.cs: GotFocus differences between 1.1 and 2.0.
120         - Off by one error in SetTop
121         - Disable DoubeBuffering
122         
123 2007-05-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
125         * ScrollableControl.cs: ScrollIControlntoView: we now only move the
126           control as much as necessary in order to make it entirely visible,
127           instead of centering the control in the container (matches MS
128           behaviour). CalculateCanvasSize: we need to take the current scroll
129           position into account when calculating the maximum canvas,
130           otherwise the following scenario will fail: resize so that the
131           scrollbars appear, use the scrollbars to scroll, resize again
132           smaller, and now the canvas size is too small. Recalculate: when
133           showing scrollbars make sure they start off at 0, and try to scroll
134           the active control into view. Fixes #79540. HandleScrollBar: don't
135           scroll anywhere if the scrollbar isn't visible.
137 2007-05-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
139         * ListView.cs: When focus changed, call Layout/Invalidate
140         in the focused item to update the selected state (should show
141         entire label when ListView is focused, and a part of it if is not).
142         * ListViewItem.cs: When doing layout for LargeIcon, take into account
143         for displaying the entire label not only the Focused state of the
144         item, but also the Focused state of the ListView (match .Net
145         behaviour).
147 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
149         * Control.cs: Stub CanRaiseEvents, IsMirrored, and NotifyClients.
150         Implement UseWaitCursor. 
152 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
153         Applying contributed patch from Sergey Volk.
155         * Clipboard.cs: Implement SetDataObject retry logic and new overload
156         of SetDataObject.
157         * XplatUIWin32.cs: Throw an ExternalException if the clipboard set fails.
159 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
161         * Control.cs: Implement DrawToBitmap.
163 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
164         Applying contributed patch from Stefan Noack.
165         
166         * Control.cs: Add [Get|Set]AutoSizeMode.
168 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
170         * MdiClient.cs: Unmerge menus when the last child is closed.
172 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
174         * ToolStrip.cs: Do not call BeginMerge on DropDowns.
175         * ToolStripManager.cs: Call Merge on DropDowns.
176         [Fixes bug #81477]
178 2007-05-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
180         * XplatUIWin32.cs: Changed Win32CreateWindow to take enums instead of
181           uints.
182         * Form.cs: CreateParams: don't set WS_VISIBLE if we're changing
183           visibility. We can't create forms visible, since we have to set the
184           owner before making the form visible (otherwise Win32 will do
185           strange things with task bar icons). The problem is that we set the
186           internal is_visible to true before creating the control, so
187           is_changing_visible_state is the only way of determining if we're
188           in the process of creating the form due to setting Visible=true -
189           this works because SetVisibleCore explicitly makes the form
190           visibile afterwards anyways. Fixes #80775.
192 2007-05-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
194         * ThemeWin32Classic.cs: When drawing ListViewItems,
195         use StringTrimming.EllipsisCharacter if the view is Tile, Details,
196         or LargeIcon _and_ item is not focused (match .Net behaviour).
198 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
200         * Control.cs, Form.cs: Fix some obsolete method warnings.
202 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
204         * Control.cs: Implement GetChildAtPoint and OnParentCursorChanged.
205         * GetChildAtPointSkip.cs: Make internal for 1.1 profile.
207 2007-05-04  Andreia Gaita  <avidigal@novell.com>
209         * ContainerControl.cs: Fix active_control attribution when going
210         up the parent chain so that the first parent container gets the control
211         and the rest of the parent containers get the child containers (skips
212         non-containers). Fixes #80729
214 2007-05-04  Randolph Chung  <tausq@debian.org>
216         * FileDialog.cs: Implement the SupportMultiDottedExtensions property.
217         [Fixes bug #81499]
219 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
221         * XplatUIX11.cs: Add a TranslateWindowSizeToXWindowSize overload that
222           takes a size parameter, since the CreateParam's size isn't true for
223           minimized forms. Fixes #81518,
225 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
227         * Form.cs: Add OnDeactivateInternal.
228         * MdiClient.cs: Raise Deactivate event. Fixes #81409.
230 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
232         * DateTimePicker.cs: CalculateDropDownLocation: do a null check before
233           accessing the parent. Fixes #81508.
235 2007-05-03  Chris Toshok  <toshok@ximian.com>
237         * CurrencyManager.cs (CurrencyManager.ListChangeHandler): in the
238         2.0 block, pass listposition + 1 to ChangeRecordState when a row
239         was added before the current listposition.  Fixes the
240         TestInsertRowBeforeCurrent unit test.
242 2007-05-03  Jonathan Pobst  <monkey@jpobst.com>
244         * Application.cs: Add RaiseIdle.
245         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
246         XplatUIX11.cs: Implement RaiseIdle.
248 2007-05-02  Jonathan Pobst  <monkey@jpobst.com>
249         corcompare work: N - Z
250         * NotifyIcon.cs
251         * ProgressBar.cs
252         * RadionButton.cs
253         * ScrollableControl.cs
254         * SplitContainer.cs
255         * SplitterPanel.cs
256         * StatusBar.cs
257         * SystemInformation.cs
258         * TabControl.cs
259         * TableLayoutControlCollection.cs
260         * TableLayoutPanel.cs
261         * TabPage.cs
262         * ToolBar.cs
263         * ToolBarButton.cs
264         * ToolStrip.cs
265         * ToolStripComboBox.cs
266         * ToolStripContainer.cs
267         * ToolStripContentPanel.cs
268         * ToolStripDropDown.cs
269         * ToolStripDropDownItem.cs
270         * ToolStripDropDownMenu.cs
271         * ToolStripItem.cs
272         * ToolStripItemCollection.cs
273         * ToolStripMenuItem.cs
274         * ToolStripPanel.cs
275         * ToolStripSplitButton.cs
276         * ToolTip.cs
277         * TreeNode.cs
278         * TreeNodeCollection.cs
279         * TreeNodeMouseHoverEventArgs.cs
280         * TreeView.cs
282 2007-05-01  Everaldo Canuto  <everaldo@simios.org>
284         * ContextMenu.cs: Add public method Show with alignment property to 2.0
285         stuff. Thanks aatdark for the patch. 
287 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
289         * GridItem.cs: Implement 2.0 Tag property.
291 2007-05-01  Frederik Carlier <frederik.carlier@carlier-online.be> 
293         * TreeNodeCollection.cs: Fix ContainsKey and IndexOfKey methods to use
294         count instead of Nodes.Length.  [Fixes bug #81448]
296 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
298         * ComboBox.cs: Fix paramName sent to ArgumentOutOfRangeException's.
299         [Fixes bug #81506]
301 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
302         corcompare work: A - M
303         * BindingNavigator.cs
304         * Button.cs
305         * ButtonBase.cs
306         * CheckBox.cs
307         * Control.cs
308         * FlowLayoutPanel.cs
309         * Form.cs
310         * Label.cs
311         * LinkLabel.cs
312         * ListView.cs
314 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
316         * Application.cs: Give toolstrips a chance to process mnemonics.
317         * ToolStrip.cs, ToolStripDropDownButton.cs, ToolStripItem.cs,
318         ToolStripItemTextRenderEventArgs.cs, ToolStripLabel.cs,
319         ToolStripMenuItem.cs, ToolStripSplitButton.cs: Implement keyboard mnemonics.
321 2007-05-01  Jackson Harper  <jackson@ximian.com>
323         * TextBoxBase.cs: Better preferred height, FixedSingle gets the
324         wider area too.
325         - Don't set the BoundsSpecified
327 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
329         * Application.cs: When using the toolstrip shortcut mechanism, allow the
330         message to pass through to a regular control if it hosted by a toolstrip.
331         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
332         ToolStripManager.cs: Enable keyboard navigation for ToolStrips.
334 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
336         * TextRenderer.cs: Use the flags argument when using the MeasureString
337         fallback algorithm.
339 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
341         * MenuStrip.cs: Don't let multiple ToolStripSeparators get added to
342         the MDI menu item.  [Fixes bug #81483]
344 2007-04-30  Gert Driesen  <drieseng@users.sourceforge.net>
346         * DataGridViewColumn.cs: Initialize value of headercell to zero-length
347         string. When setting Name to null, use zero-length string instead.
349 2007-04-29  Andreia Gaita  <avidigal@novell.com>
351         * TabControl.cs: Implement missing 2.0 methods (SelectTab, 
352         DeselectTab). Implement missing 2.0 TabPageCollection methods
353         (Add, ContainsKey, RemoveByKey, IndexOfKey)
355 2007-04-29  Pedro Martínez Juliá  <pedromj@gmail.com>
357         * DataGridViewColumn.cs: Make HeaderText take preference over Name.
359 2007-04-29  Gert Driesen  <drieseng@users.sourceforge.net>
361         * RichTextBox.cs: In LoadFile, use StreamReader to read plain text.
362         Fixes bug #81479. Include details of exception when LoadFile fails.
364 2007-04-28  Alan McGovern <alan.mcgovern@gmail.com>
366         * DrawListViewSubItemEventArgs.cs: Added missing setter
368 2007-04-27  Andreia Gaita  <avidigal@novell.com>
370         * ToolTip.cs: Add missing 2.0 properties. Implement 2.0 Show and 
371         Hide methods (not complete). Implement missing 2.0 OnPopup event.
373 2007-04-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
375         * ListView.cs: In ItemControl.OnMouseDown restore a pair of braces I
376         removed in ly last commit (it was breaking the Label edit feature).
378         * ThemeWin32Classic.cs: When drawing a ListViewItem use
379         StringAlignment.Near for LineAlignment (match .Net).
381 2007-04-27  Andreia Gaita  <avidigal@novell.com>
383         * TabControl.cs: Change SetTab so it adds the tabpage to the list
384         of controls if it isn't already there - was blowing up when doing
385         tabcontrol.TabPages[i]=new TabPage(). 
386         SetTab now does a replace by removing the page at the index. 
387         Add a new InsertTab method that inserts a page in a given index 
388         instead of replacing. 
389         Implements TabPageCollection.Insert(int, TabPage).
391 2007-04-27  Chris Toshok  <toshok@ximian.com>
393         * BindingManagerBase.cs: fill in CurrentItemChanged (and have an
394         internal handler that can be invoked from our subclasses.)  Also,
395         add a comment to PushData about how we need to fix it.
397         * CurrencyManager.cs: tons of changes here.  trying to get things
398         matching the behavior of .net wrt event orders (ItemChanged,
399         CurrentChanged, PositionChanged.)  I've implemented a private .net
400         symbol (ChangeRecordState) that appears in stack traces because
401         it's actually easier to do this than to effective inline all its
402         various behaviors at every call site.
404         * RelatedPropertyManager.cs: guard against an exception here by
405         not using parent.Current if the position is set to -1 (if the
406         parent datasource is cleared, for instance).
408         * Binding.cs: don't parse data in PushData (this might be wrong,
409         but it jives with MS's behavior.)  Also, don't call PushData when
410         we get a CurrentChanged event.
412 2007-04-27  Andreia Gaita  <avidigal@novell.com>
414         * WebBrowser.cs,
415           WebBrowserBase.cs,
416           WebBrowserSiteBase.cs,
417           HtmlDocument.cs: Added stubbed out classes, no real implementations 
418           yet.
420 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
422         * MainMenu.cs: In draw method without parameters call draw method with 
423         PaintEvent, another one (just rect) adjust rectangle and we dont need it
424         as Rect property is already adjusted. Fixes #80694.
426 2007-04-27  Jonathan Pobst  <monkey@jpobst.com>
428         * Application.cs: Need to handle keyboard menu deselection here.
429         * Control.cs: Use WM_SYSKEYUP instead of WM_SYSCOMMAND to start menu keyboard
430         navigation, allowing keyboard to work on X11.
431         * ToolStrip.cs: Don't worry about handling the Menu key here anymore.
433 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
435         * MenuAPI.cs: When deactivate menu verify if hotkey (_) is active and redraw
436         menu bar. It fixes some drawing issues in menu bar.
438 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
440         * MenuAPI.cs: Remove unneeded "keynav_state = KeyNavState.Idle" before 
441         Deactivate calls, Deactivate method already do it. Also ser ActiveTracker
442         when <alt> key is pressed.
444 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
446         * XplatUIX11.cs: Simplify SystrayRemove to be like other libraries,     Gtk as 
447         example just set visible to false and make this prevent from other problems.
448         In SystrayAdd always remove pending expose. Fixes #81072.
450 2007-04-26  Marek Safar  <marek.safar@gmail.com>
452         * TextBoxBase.cs (CaretMoved): Consider scroll maximum when scroll
453         value is set.
455 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
457         * ListView.cs: Added three missing 2.0 events and corresponding
458         EventHandlers. Added the OwnerDraw property.
459         * DrawListViewColumnHeaderEventHandler.cs: fixed typo
461 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
463         * DrawListViewItemEventArgs.cs
464         * DrawListViewSubItemEventArgs.cs: Brought classes up to 2.0 status.
466 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
468         * TextControl.cs: Fixed typo in constructor
470 2007-04-26  Jonathan Pobst  <monkey@jpobst.com>
472         * Application.cs: Create a shortcut path so that currently selected
473         MenuStrips can intercept keyboard events without having focus.
474         * Control.cs: Handle WM_SYSCOMMAND message to activate MenuStrips.
475         * MenuStrip.cs, ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownItem.cs,
476         ToolStripItem.cs, ToolStripManager.cs, ToolStripMenuItem.cs: Support
477         keyboard navigation (arrows, tab, enter, esc) on Windows.  Still need to
478         generate WM_SYSCOMMAND message in X11 for other platforms.
479         * ToolStripProfessionalRenderer.cs: ToolStripMenuItems need to be painted
480         in OnRenderMenuItemBackground instead of OnRenderButtonBackground.
481         * ToolStripSplitButton.cs: Add DefaultItem property.
482         
483 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
485         * MainMenu.cs: In OnMenuChanged pass PaintEventArgs to Draw method, it
486         fixes some menu draw problem on Windows with border diferent from default
487         it also fixes #81403.
489 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
491         * Form.cs: Refactor WndProc into separate methods, just like Control is
492           doing it.
494 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
496         * Control.cs: set_Text: move the call to the driver into a seperate
497           virtual method so that Form can override it.
498         * MaskedTextBox.cs: Corcompare fixes.
499         * Form.cs: Override UpdateWindowText and only update the styles if the
500           form has been shown (fixes #81405).
502 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
504         * Control.cs, Form.cs: Use the better supported WM_?BUTTONDOWN and
505         WM_ACTIVATE messages instead of WM_MOUSEACTIVATE and
506         WM_ACTIVATEAPP.  This fixes menus not disappearing on X11 when
507         the form lost focus or another control was clicked.
509 2007-04-25  Gert Driesen  <drieseng@users.sourceforge.net>
511         * DataGrid.cs: Uncomment MakeTransparent calls since bug #80151 is
512         fixed.
514 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
516         * DrawListViewColumnHeaderEventHandler.cs, DrawToolTipEventArgs.cs,
517           DrawListViewItemEventHandler.cs,
518           DrawListViewSubItemEventHandler.cs, DrawToolTipEventHandler.cs:
519           Added.
520         * X11Structs.cs: More ToString implementation.
522 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
524         * ToolStripDropDownItem.cs: Don't lazy create a DropDown in Dispose.
525         * ToolStripOverflowButton.cs: Don't lazy create a DropDown in HasDropDownItems.
527 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
529         * Control.cs: Only raise OnVisibleChanged if we're not recreating the
530           handle.
531         * FormCollection.cs: Don't add a form if it's already in the
532           collection.
533         * Form.cs: Change ShowDialog () to call ShowDialog (owner) with a null
534           according to behaviour and MSDN. The ownerWin32 is the active
535           window at the moment when we call ShowDialog, not the context's
536           main form (the context's main form may open another form that opens
537           a form with ShowDialog, the win32 owner is the second form). Add
538           and remove forms to the Application.OpenForms in other places to
539           better match MS behaviour. Add an IsActive property that raises
540           On(de)Activated only if the active state has changed (we were
541           raising OnDeactivated before OnActivated while creating forms).
542         * Application.cs: Refactor Enabling/Disabling of windows for modal
543           dialog loops out to separate methods, and restore the thread
544           context when we quit the method. Fixes #81407.
546 2007-04-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
548         * ListView.cs: In ItemControl.HandleClicks, also fire 
549         2.0 MouseClick or MouseDoubleClick events on the parent,
550         not only the Click/DoubleClick events.
552 2007-04-24  Andreia Gaita  <avidigal@novell.com>
554         * TableLayoutSettings.cs: 
555         - Added a GetControls method and a support structure to help the 
556         TypeConverter to enumerate the controls for     serialization. 
557         - Added a new serialization constructor. 
558         - Added a isSerialized flag initialized to true on the 
559         serialization constructor so that the TableLayoutPanel.LayoutSettings 
560         setter does not throw the designed NotSupportedOperation exception
561         when the object is built through deserialization.
562         - Implemented GetObjectData
563         
564         * TableLayoutPanel.cs: Added check on LayoutSettings.
566 2007-04-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
568         * ListView.cs: Report Click and DoubleClick events to the parent
569         from ItemsMouseUp, instead of ItemsMouseDown. This prevents us
570         from breaking the click count state when using dialog forms (Control
571         reports the clicks in a similar fashion). In the previous behaviour
572         the last WM_LBUTTONUP message in a  double click was sent to the
573         ListView's form, instead of the ListView, which was breaking the click
574         count for it. Fixes #80387.
576 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
578         * BindingNavigator.cs : fixed bugs revealed by new nunit tests
580 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
582         * ToolStripDropDownItem.cs: Lazy initialize the DropDown.  This prevents
583         us from created dropdowns for menu items that do not have subitems.
584         * ToolStripItem.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs:
585         Check HasDropDownItems before calling DropDown so a dropdown will not be
586         created if it isn't needed.
588 2007-04-24  Jackson Harper  <jackson@ximian.com>
590         * TreeView.cs: Set the first node to the selected node when we get
591         focus if there is no selected node.
593 2007-04-24  Andreia Gaita  <avidigal@novell.com>
595         * MimeIcon.cs: remove using blocks so that image streams are
596         not disposed of. Fixes #80151
598 2007-04-24  Jackson Harper  <jackson@ximian.com>
600         * TextBoxBase.cs: Fixup the height of textboxes when the control
601         is created.
603 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
605         * ToolStrip.cs: Fully implement GetNextItem.  Call OnParentRightToLeftChanged
606         for each ToolStripItem when the parent's RightToLeftChanged is called.
608 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
610         * ComboBox.cs: Forward ContextMenu to the underlying textbox, if any.
611           Fixes #80163.
612         * Control.cs: Replace GetContextMenuInternal() with ContextMenuInternal
613           property, so that the setter can be overriden too.
614         * TextBox.cs: Change GetContextMenuInternal() to use
615           ContextMenuInternal.
617 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
619         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
620           #81406.
622 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
624         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
625           #81406.
627 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
629         * MaskedTextBox.cs: Commit this so nobody else starts working on it and
630           avoid duplicate work. Mostily skeleton code, it's not working at
631           all yet.
633 2007-04-20  Leszek Ciesielski <skolima@gmail.com>
635         * NotifyIcon.cs : stub for MouseClick event
636         * Application.cs: stub for SetUnhandledExceptionMode
638 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
640         * BindingNavigator.cs : Initial (partial) implementation
642 2007-04-23  Jackson Harper  <jackson@ximian.com>
644         * TreeView.cs: Do not create the treeview's handle when setting
645         the scroll position.
646         - ExpandAll needs to compute the scrollbars so it knows which
647         position to set the bar too.
648         * TreeNode.cs: 
649         * TreeNodeCollection.cs: Pass new flag to UpdateScrollBars
651 2007-04-23  Jackson Harper  <jackson@ximian.com>
653         * TextBoxBase.cs: Non multiline textboxes shouldn't take the enter
654         key. Fixes #81408.
656 2007-04-23  Jonathan Pobst  <monkey@jpobst.com>
658         * ToolStripItem.cs: Make GetImageSize internal.
659         * ToolStripMenuItem.cs: Use GetImageSize to determine the size we
660         need to draw an item.  Fixes a reported issue where images on menus
661         that were not 16x16 were drawing incorrectly.
663 2007-04-21  Miguel de Icaza  <miguel@novell.com>
665         * Padding.cs: Use the converter, fixes the resgen2 issue with
666         XMLNotePad. 
668 2007-04-21  Jackson Harper  <jackson@ximian.com>
670         * TreeView.cs: Dont try to unhighlight the selected node if there
671         isn't a selected node.
673 2007-04-21  Jackson Harper  <jackson@ximian.com>
675         * UpDownBase.cs:
676         * TextBoxBase.cs:
677         * ListView.cs:
678         * ListBox.cs:
679         * TreeView.cs: Use the InternalBorderStyle property to set the
680         initial border style, this forces the client rectangle to be sized
681         correctly.
683 2007-04-20  Jackson Harper  <jackson@ximian.com>
685         * TreeView.cs: Simplify scrolling to the last node after expanding
686         all.
687         - Fix some off by ones with setting the bottom.
689 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
691         * Control.cs: Use DefaultSize for Size, calculate ClientSize from
692         that.  We were incorrectly doing it the other way around.  Also,
693         update ClientSize if we change the BorderStyle before the control
694         is created.
696 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
698         * XplatUI.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
699         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
700         XplatUIDriver.Caption to CaptionHeight. Spaces to tabs.
701         * XplatUIDriver.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
702         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
703         Caption to CaptionHeight.
704         * XplatUIX11.cs: Renamed Caption to CaptionHeight.
705         * Theme.cs: Modified Border3DSize, BorderSize, CaptionButtonSize
706         and FixedFrameBorderSize to return value from current XplatUI driver.
707         * XplatUIWin32.cs: Implemented Border3DSize, BorderSize,
708         CaptionButtonSize, DragFullWindows, DoubleClickSize, DoubleClickTime
709         and FixedFrameBorderSize using win32 API. Renamed Caption to
710         CaptionHeight.
711         * XplatUIOSX.cs: Renamed Caption to CaptionHeight.
712         * SystemInformation.cs: Fixed typo in BorderSize.
714 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
716         * XplatUI.cs: Added MenuAccessKeysUnderlined.
717         * XplatUIDriver.cs: Added MenuAccessKeysUnderlined.
718         * XplatUIX11.cs: Implemented MenuAccessKeysUnderlined by always
719         returning false.
720         * Theme.cs: Modified MenuAccessKeysUnderlined to return corresponding
721         value from XplatUI driver.
722         * XplatUIWin32.cs: Implemented MenuAccessKeysUnderlined using
723         SystemParametersInfo.
724         * ThemeWin32Classic.cs: Remove obsolete MenuAccessKeysUnderlined
725         override.
726         * XplatUIOSX.cs: Implemented MenuAccessKeysUnderlind by always
727         returning false.
729 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
731         * XplatUIX11.cs, Hwnd.cs: Remove warnings.
733 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
735         * MessageBox.cs, XplatUIX11.cs, Hwnd.cs: Remove warnings.
737 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
739         * ToolStripManager.cs: Fix a reported InvalidCastException when unmerging
740         MenuStrips that contain ToolStripSeparators.
742 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
744         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Add
745           DefineStdCursorBitmap.
746         * Cursor.cs: Add an internal constructor so that the Cursor knows if it
747           has been created off a standard cursor. This is used to get a
748           bitmap of the standard cursor when Draw or DrawStretched is called
749           in order to draw the cursor.
750         * X11Structs.cs: Added XcursorImage and XcursorImages.
751         * XplatUIX11.cs, XplatUIWin32.cs: Add and implement
752           DefineStdCursorBitmap.
753         * Cursors.cs: Update all relevant creations of Cursor to use the new
754           internal constructor.
756 2007-04-19  Jackson Harper  <jackson@ximian.com>
758         * TextBox.cs: Move the has_been_focused into the base control, so
759         some of the text adding methods can manipulate it (probably time
760         for a better name for this flag too).
761         - Call a new version of selectall that doesn't scroll
762         * TextBoxBase.cs: When we append text, if the document is empty,
763         don't scroll.  If the document has text already, we scroll to the
764         end of the appended text.
765         - When the text is changed, we reset the has_been_focused, so the
766         next time the control gets focused, all the text is selected.
768 2007-04-19  Jackson Harper  <jackson@ximian.com>
770         * TextControl.cs: Move the margins to the document, add a method
771         so the margin sizes can be updated.
772         * TextBoxBase.cs: When the border style is changed, update the
773         border sizes.
775 2007-04-19  Jonathan Pobst  <monkey@jpobst.com>
777         * Control.cs: Respect DefaultPadding.
778         * GroupBox.cs: Implement DefaultPadding, DisplayRectangle takes
779         padding into account.
780         * ToolStrip.cs: Remove setting padding to DefaultPadding in constructor.        
782 2007-04-19  Jackson Harper  <jackson@ximian.com>
784         * TextControl.cs: Oops, we need to use the ClientRect not the
785         bounds here.
787 2007-04-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
789         * ListView.cs: In ItemControl.ItemsMouseDown, take into
790         account the double clicks when CheckBoxes are used and
791         the pointer is inside the checkbox. Fixes part of #81191.
793 2007-04-18  Jackson Harper  <jackson@ximian.com>
795         * TextControl.cs: Pressing the end key shouldn't move the caret
796         past the line ending.
797         * TextBoxBase.cs: We can still delete if we are in the line
798         ending and the combine will just kill the existing line ending.
800 2007-04-18  Jackson Harper  <jackson@ximian.com>
802         * TextControl.cs: We can't move lines, then invalidate their
803         bounds, we need to get the old bounds and combine that with the
804         new bounds.
805         * TextBoxBase.cs: Before combining two lines for a delete, we need
806         to invalidate the area of the old line, since that will be moved
807         in the combine operation.
809 2007-04-18  Everaldo Canuto  <everaldo@simios.org>
811         * LinkLabel.cs: In OnPaint invoke draw background to fix problems
812         with transparent background. Fixes #80482.
814 2007-04-18  Jonathan Pobst  <monkey@jpobst.com>
816         * PictureBox.cs: Refresh on resize when SizeMode = Zoom.
817         * ThemeWin32Classic.cs: Implement PictureBox.SizeMode = Zoom.
818         [Fixes bug #81391]
820 2007-04-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
822         * CreateParams.cs: Add a couple of helper methods and do a less string
823           concatenation in ToString.
824         * XplatUIX11.cs: Add an TranslateClientRectangleToXClientRectangle
825           overload that takes a Control parameter, since this method may be
826           called before a control is assigned to the hwnd (from
827           CreateWindow), and update CreateWindow to use the new overload. In
828           GetMenuOrigin subtract the title bar from the y position if the
829           form has a window manager (since we're painting it and not X).
830         * XplatUIWin32.cs: If we can get a form in GetMenuOrigin use the form's
831           CreateParams to calculate the origin (since border sizes may vary).
832           In ScreenToMenu only subtract the title height if we actually have
833           a title.
834         * MdiWindowManager.cs: Override MenuHeight to always return 0, since
835           mdi children never have menus of themselves.
836         * InternalWindowManager.cs: Implement menu handling like form does.
837           Added GetMenuOrigin to calculate the menu origin, can't use the
838           CreateParams from the form like normally since it's lying.
839         * Hwnd.cs: Implement GetBorderSize better (in the sense more
840           windows-like) and add Inflate and comparison operators to the
841           Borders type. When calculating MenuOrigin and it's a form with a
842           window manager, use the window manager to calculate it.
844 2007-04-17  Chris Toshok  <toshok@ximian.com>
846         * Control.cs (CreateControl): turns out in 2.0 we don't need this
847         OnBindingContextChanged thing here.  It's only generated from
848         ContainerControl.OnCreateControl.  Fixes a newly written unit test
849         - BindingTest.BindingContextChangedTest4.
850         
851 2007-04-17  Jackson Harper  <jackson@ximian.com>
853         * ScrollBar.cs: When setting values, make sure the current
854         position stays within the new values range.
856 2007-04-17  Chris Toshok  <toshok@ximian.com>
858         * Control.cs (CreateControl): talk about a bizarre corner case.
859         Don't emit OnBindingContextChanged here if we're a parentless
860         control (i.e. if we're a form.).  Fixes
861         BindingTest.BindingContextChangedTest2.
863 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
865         * ButtonBase.cs: Remove TextFormatFlags.WordBreak to mimic same behavior 
866         from win32. Fixes #81255.
868 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
870         * ThemeWin32Classic.cs: Remove text offset from DrawButtonText as it is
871         already present in CalculateButtonTextAndImageLayout.
873 2007-04-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
875         * XplatUIX11.cs: When setting min/max size for a window we need to
876           translate the coordinates to x coordinates. Create an overload of
877           SetWindowMinMax that takes a CreateParams handling this, and change
878           SetWMStyles to call this function (can't use Control.FromHandle in
879           the SetWindowMinMax to get the control/CreateParams from the handle
880           because the handle might not have been assigned to the control
881           yet). Fixes #81371.
883 2007-04-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
885         * ListView.cs: In ItemControl.ItemMouseDown, don't change check state
886         if StateImageList is non-null and it has less than two items (match MS
887         behaviour). Also, in HandleNavKeys handle the Space key, calling
888         the new ToggleItemsCheckState method, which tries to change the
889         checked state of the selected items. Fixes part of #81191.
891 2007-04-16  Jackson Harper  <jackson@ximian.com>
893         * RichTextBox.cs: namespace cleanup.
895 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
897         * XplatUIWin32.cs: Back last parameter to true in SetClipRegion.
899 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
901         [Fixes #79447]
902         * Control.cs: Call invalidate in set_Region.
904         * XplatUIX11.cs, XplatUIWin32.cs: Remove invalidate from SetClipRegion as
905         it dont works here.
907 2007-04-16  Jackson Harper  <jackson@ximian.com>
909         * TextBoxBase.cs: When enter is pressed, we need to update all
910         lines below the current.
912 2007-04-16  Jonathan Pobst  <jpobst@monkey.com>
914         * MdiClient.cs: Implement implicit menu merging for MDI
915         children.  When a child form is active, if it has a menustrip
916         and the parent form has a MainMenuStrip, automatically merge
917         the menus.
919 2007-04-15  Andreia Gaita  <avidigal@novell.com>
921         * TabControl.cs: Refactored sizing methods to not repeat
922         code all over the place. Tab bounds are now calculated
923         as if alignment is top and single line, and only when 
924         setting the bounds are the positions adjusted according
925         to alignment. Replaced hardcoded positions, spacings and
926         paddings by getting the values the ThemeEngine. 
927         Fixes #79619.
928         
929         * Theme.cs: Change TabControl properties and methods so
930         that all start with TabControl*. Added more properties
931         to help remove hardcoded values on tabcontrol.
932         Add CPDrawBorder3D declaration so the Theming classes
933         can access it.
934         
935         * ThemeClearlooks.cs, ThemeNice.cs: Method signature changes from Theme.
937         * ThemeWin32Classic.cs: Rector TabControl out to the TabControlPainter
938         on the Theming namespace, and call the appropriate methods here.
939         Change CPDrawBorder3D to public.
941 2007-04-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
943         * Control.cs: In WmRButtonUp, send the WM_CONTEXTMENU message to
944         the control after firing the OnMouseUp event, instead of sending
945         the message before the mentioned event. This is so we can match the
946         MS behaviour. Fixes part of #80385.
948 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
950         * ToolStripItem.cs: Call the RightToLeftChanged event when setting the
951         RightToLeft property.
953 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
955         * ToolStrip.cs: Add properties and internal methods to support merging.
956         * ToolStripItem.cs: Add MergeAction and MergeIndex.
957         * ToolStripItemCollection.cs: Add Insert and Remove methods that do
958         not trigger reparenting or layouts.
959         * ToolStripManager.cs: Add Merge and RevertMerge methods.
960         * ToolStripOverflow.cs: Add a convenience method to find the ToolStrip that
961         is hosting the overflow menu.
963 2007-04-13  Jackson Harper  <jackson@ximian.com>
965         * TextControl.cs: Set the line ending correctly for the first
966         inserted line.
968 2007-04-13  Sebastien Pouliot  <sebastien@ximian.com>
970         * Theme.cs: Update GetMethod to get the new definition for 
971         KnownColors.Update (and fix theme color updates).
973 2007-04-12  Everaldo Canuto  <everaldo@simios.org>
975         * MessageBox.cs: Fix some test and button position.
977 2007-04-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
979         * Form.cs: Consider the implicit controls in
980         GetRealChildAtPoint. We need it since this method
981         is called on Form when handling the some messages in
982         WndProc, and need to consider those implicit ones too.
983         Fixes #80385.
985 2007-04-12  Jonathan Pobst  <monkey@jpobst.com>
987         * ToolStripMenuItem.cs: Display the ShortcutKeyDisplayString even
988         if there are no ShortcutKeys set.
989         * ToolStripProfessionalRenderer.cs: If an item has had its BackColor
990         set, use it when painting.
992 2007-04-12  Jackson Harper  <jackson@ximian.com>
994         * TextControl.cs: Fix some off-by-one issues in line duplication
995         and insertion in the undo manager. Also, overwrite the first tag
996         of a line on insert, if it is just a zero lengthed tag. This
997         prevents us from getting an extra stranded tag at the beginning of
998         the first line.
1000 2007-04-11  Everaldo Canuto  <everaldo@simios.org>
1002         * Label.cs: Remove check for handle created in CalcAutoSize, we need 
1003         to calculated proper size including when handle was not created yet.
1005 2007-04-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1007         * MdiWindowManager.cs: When moving a form, allow the form to be moved
1008           when the mouse is outside of it's parent's client rectangle. Fixes
1009           #79982 (take 3, part 2).
1011 2007-04-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1013         * X11Structs.cs: Add a few ToString() overrides.
1014         * XplatUIX11.cs: Added GetTopLevelWindowLocation to try to calculate
1015           the window location in a window-manager independent way. Reworked
1016           FrameExtents, it now actually works. Reworked AddConfigureNotify
1017           and ReparentNotify handling to use GetTopLevelWindowLocation
1018           instead of the earlier, more hacky solution. Reworked SetWMStyles,
1019           hopefully for the better: we now set _NET_WM_WINDOW_TYPE* for all
1020           windows, DIALOG for modal windows, UTILITY for toolboxes and NORMAL
1021           for all other windows (fixes #81281 part 1), a toolwindow is hidden
1022           from the taskbar if it has a parent (fixes #81281 part 2 for kwin),
1023           and generally refactored to do as few calculations as possible
1024           inside the lock.
1026 2007-04-09  Sebastien Pouliot  <sebastien@ximian.com>
1028         * Theme.cs: Change "reflective-contract" between MWF and SD to 
1029         minimize # of calls, avoid Color serialization and avoid updating 
1030         every "known colors" each time a single one is updated.
1032 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
1034         * DataGridTextBoxColumn.cs: Only set IsInEditOrNavigateMode to false
1035         when not readonly and the text is explicitly set. Code style updates.
1036         * DataGridTableStyle.cs: Removed extra line.
1037         * DataGrid.cs: Code style updates. Removed extra whitespace.
1038         * DataGridColumnStyle.cs: Code style updates. Removed extra 
1039         whitespace.
1041 2007-04-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1043         * XplatUIX11.cs: Added comment that "fixes" #80021.
1045 2007-04-09  Jackson Harper  <jackson@ximian.com>
1047         * TextControl.cs: We don't need this -1 on the line count anymore.
1049 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
1051         * DataGridTextBoxColumn.cs: In Commit, use TypeConverter to convert
1052         entered value to underlying type, and convert it back to a string to
1053         apply formatting. Modified GetFormattedValue to use TypeConverter
1054         if available.
1056 2007-04-08  Gert Driesen  <drieseng@users.sourceforge.net>
1058         * ListViewItem.cs: Added null checks. Avoid duplicating code in ctors.
1059         Use SubItems property when we want to ensure there's at least one
1060         subitem. Modified SubItems property to ensure there's always at least
1061         one subitem. Avoid using ListViewSubItemCollection.AddRange to match
1062         the NRE's reported by MS.
1064 2007-04-07  Gert Driesen  <drieseng@users.sourceforge.net>
1066         * ProgressBar.cs: On 2.0 profile, default forecolor is Highlight. Added
1067         ResetForeColor override on 2.0. Fixed a few API compatibility issues.
1068         Spaces to tabs. Removed extra tabs.
1070 2007-04-06  Jonathan Pobst  <monkey@jpobst.com>
1072         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
1073         infinite loop.  (Forgot to copy to the horizontal toolstrip case.)
1075 2007-04-06  Jackson Harper  <jackson@ximian.com>
1077         * TextBoxBase.cs: When a delete removes a line, recalculate all
1078         lines below that line (they need to get offsets setup correctly)
1079         and invalidate.
1081 2007-04-05  Jackson Harper  <jackson@ximian.com>
1083         * TextControl.cs: We need to invalidate across the width of the
1084         document when we are invalidating multiple lines.
1085         * TextBoxBase.cs: Don't delete into the line ending.
1087 2007-04-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1089         * ListView.cs: Restore the check for the MouseHover event
1090         in ListView. It looks like the ListView fires more than one MouseHover
1091         event when HoverSelection is true  _only_ in weird-corner scenarios, but
1092         in most of the cases it only fires one. Also, add the 2.0 ItemMouseHover
1093         event.
1095 2007-04-05  Mike Kestner  <mkestner@novell.com>
1097         * ListView.cs : raise MouseDown before updating selection.
1098         [Fixes #80373 tab 1&3]
1100 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
1102         * ToolStripRenderer.cs: Add static method to mirror image.
1103         * ToolStripProfessionalRenderer.cs: Support ImageTransparentColor
1104         and RightToLeftAutoMirrorImage.
1105         * ToolStripItem.cs: Remove MonoTODO from ImageTransparentColor.
1107 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
1109         * ToolStripSplitStackLayout.cs: Support Alignment property.
1110         * ToolStripItem.cs: Remove MonoTODO from the Alignment property.
1112 2007-04-05  Jackson Harper  <jackson@ximian.com>
1114         * TextControl.cs: Move around the line endings when crossing line
1115         boundaries.
1116         - When combining lines, strip the ending text off the first line.
1118 2007-04-05  Jackson Harper  <jackson@ximian.com>
1120         * TextControl.cs:
1121         * TextBoxBase.cs: Try to never move the cursor into the line
1122         ending.
1123         
1124 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
1126         * ToolStripItem.cs: Make sure we aren't firing mouse events when
1127         the item is disabled.  Also add a few missing methods.
1129 2007-04-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1131         * ListView.cs: We don't need the MouseEnter/MouseLeave check
1132         to fire just one MouseHover event when HoverSelection is true, since
1133         .Net does fire more than one MouseHover event in that scenario. Also,
1134         fix the selection in HoverSelection, by invoking UpdateMultiSelect
1135         if MultiSelect is true, instead of only setting ListViewItem.Selected.
1136         Finally, we need to reset the Hover logic in MouseMove, even when we
1137         don't have a selected item.
1139 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
1141         * ToolStrip.cs: Add several missing methods, properties, and events.
1143 2007-04-04  Chris Toshok  <toshok@ximian.com>
1145         * DataGridTextBoxColumn.cs: set the bounds of the text box to
1146         (0,0,0,0) in Commit, as MS does.
1148         * DataGrid.cs: call EndEdit() from Select() as microsoft does, and
1149         make sure we set CurrentRow on a row header click *before* calling
1150         Select.  This moves the current cell (and the textbox) to the new
1151         row.  The call to Select then hides the textbox, giving us the
1152         correct behavior.  Fixes #80362.
1154         * CurrencyManager.cs (UpdateIsBinding): raise ItemChanged (-1).
1155         (ListChangedHandler): reorder the position/current changed events,
1156         and call UpdateIsBinding in the ItemAdded case.
1158         * GridColumnStylesCollection.cs: add some columns events, one of
1159         which raises the CollectionChanged event.
1161 2007-04-04  Jackson Harper  <jackson@ximian.com>
1163         * TextControl.cs: When we delete multiple selection lines
1164         invalidate the selection area, don't need to do that for single
1165         lines because the final update view will handle it.
1167 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
1169         * Control.cs: When we CreateControl, we need to also create all of the
1170         control's children.  The child's OnLoad must also fire before the parent's
1171         OnLoad.  Fixes the toolbox size in PDN.
1173 2007-04-04  Jackson Harper  <jackson@ximian.com>
1175         * TextBoxBase.cs: When the user presses enter, insert a line
1176         ending into the text. (Maybe this would be a good spot for
1177         Environment.NewLine).
1178         * TextControl.cs: Remove undo manager hack, line endings get
1179         inserted properly now.
1180         
1181 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
1183         * MenuAPI.cs: 
1184         - Remove unneeded parameters in UpdateCursor.
1185         - Fix UpdateCursor to check if menu is active.
1186         - Call UpdateCursor when menu deactivate my click.
1187         [Fixes remaining issues from #80410]
1189 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
1191         * Control.cs: GetRealChildAtPoint method added, it make an
1192         recursive child control search for the point. 
1194         * Form.cs: Makes use of GetRealChildAtPoint in mouse event after closes
1195         menu.
1197         * MenuAPI.cs: Makes use of GetRealChildAtPoint in UpdateCursor.
1199 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
1201         * Form.cs: Fix mouse position when send back mouse event after closes
1202         menu.
1204 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
1206         * Form.cs: Simplify the BUTTONDOWN for active tracker.
1208 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
1210         * Control.cs: Fix an issue where if a user resized a control inside
1211         a sizing method like OnResize, we would overwrite their explicit
1212         value.  Also, only call DefaultSize once in the constructor instead
1213         of 4 times.  Also, do not call SetBoundsCore from SetBounds if 
1214         nothing actually changed.
1216 2007-04-03  Jackson Harper  <jackson@ximian.com>
1218         * TextControl.cs: Don't attempt to copy text for lines with no
1219         text in them (technically this shouldn't happen, but we aren't
1220         always inserting line endings when we should be).
1222 2007-04-03  Jackson Harper  <jackson@ximian.com>
1224         * TextBoxBase.cs: Calculate the scrollbars before calculating the
1225         document, because this sets some of the document size properties
1226         that are needed.
1228 2007-04-03  Jackson Harper  <jackson@ximian.com>
1230         * TextBoxBase.cs: We need to calculate maximums even if this is
1231         not a multiline control, because the maxs are used for scrolling.
1232         - Display the caret after doing a page up/down, we need to
1233         manually display it because a proper CaretMoved event isn't
1234         triggered (this is because of the way the math is done to
1235         determine how far to scroll).
1237 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
1239         * ToolBar.cs: Fix some breakage caused by the SetBoundsCore change.
1240         (ToolBar was relying on SetBoundsCore to default the values sent 
1241         base off of BoundsSpecified.)
1243 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1245         * DateTimePicker.cs: Change Text so that when a null value or empty
1246           string is assigned to the test we always raise ValueChanged and
1247           TextChanged (earlier implementation would only raise ValueChanged
1248           if the current date value was different from DateTime.Now).
1250 2007-04-03  Andreia Gaita <avidigal@novell.com> 
1252         * ButtonBase: Call update after invalidation, fixes #80194
1254 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1256         * ThemeWin32Classic.cs: Draw StatusBar using double buffering. Fixes
1257           #79335.
1259 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1261         * XplatUIX11.cs: SetWMStyles: If the control is a form with
1262           FormBorderStyle = None, don't give the window any decorations.
1263           Fixes #81276.
1265 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1267         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
1268         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style
1269           to check for is a mix of several styles (such as WS_CAPTION for
1270           instance).
1271         * Control.cs: Don't paint an area bigger than the client area when
1272           painting the background colour. Add an internal GetCreateParams.
1273           Update calls to XplatUI.CalculateWindowRect due to API change.
1274         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole
1275           window's size, and handle WM_NCCALCSIZE in DefWndProc to calculate
1276           the size if it hasn't been handled by any windows. When creating
1277           and moving windows, X wants the location of the entire window, but
1278           the size of the client window, so add
1279           TranslateClientRectangleToXClientRectangle,
1280           TranslateWindowSizeToXWindowSIze and
1281           TranslatedXWindowSizeToWindowSize to cope with this, and call them
1282           before every window creation and move. Update CalculateWIndowRect
1283           to use Hwnd.GetWindowRect (one step towards removing DeriveStyles).
1284           In AddConfigureNotify don't do anything if the hwnd is a zombie
1285           (fixes the BadWindow we were getting while running the tests),
1286           always calculate the offsets when it's a parentless window, not
1287           only when reparented, and translate the window size, since we're
1288           getting the client size of the whole window, excluding entire
1289           window.
1290         * Theme.cs: Added BorderSizableSize.
1291         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
1292           anymore. Update calls to XplatUI.CalculateWindowRect due to API
1293           chang
1294         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API
1295           change. Fake the window styles here instead of in XplatUIWin32 so
1296           that all back-ends get the same window styles (and it's Form that's
1297           deciding when to use wm, not the Win32 backend anyways)
1298         * Hwnd.cs: Completely reworked GetWindowRectangle and
1299           GetClientRectangle - they are now passed a CreateParams and they
1300           only use Style and ExStyle to determine the rectangles (they should
1301           now work just like Win32AdjustWindowRectEx - though quite a few
1302           special cases are probably missing). They should also be 100%
1303           complimentary (i.e. GetWindowRectangle (GetClientRectangle (rect))
1304           == rect), and all numbers (borders, menu sizes) are taken from the
1305           current theme. Added a GetBorders helper function that will return
1306           the borders for any given CreateParams (including captions and
1307           menus), and GetBorderSize that returns the given border size only.
1308         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
1309           Hwnd.GetClientRectangle.
1311 2007-04-02  Chris Toshok  <toshok@ximian.com>
1313         * DataGridBoolColumn.cs: rewrite things a bit, and fix up the
1314         logic between the values we present to the user and the values
1315         which are stored in the column's property.  Also, don't call
1316         GetPreferredSize - it's virtual. Along the way, fix bug #80965.
1318 2007-04-02  Jackson Harper  <jackson@ximian.com>
1320         * TextBoxBase.cs: Scroll faster!
1322 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
1324         * StatusStrip.cs: Layout fixes for PDN.
1325         * ToolStrip.cs: Set item's available to true, and placement to main when
1326         added.
1327         * ToolStripItem.cs: Fix an Available issue, check that Parent is really
1328         changing in setter before doing any work, add InternalVisible.
1329         * ToolStripPanel.cs: Remove unused variable to fix compiler warning.
1330         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
1331         infinite loop.
1333 2007-04-02  Jackson Harper  <jackson@ximian.com>
1335         * TextBox.cs: LBUTTON does not make the textbox select all of it's
1336         text on focus.
1338 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1340         * XplatUIWin32.cs: Use the previous change in SetParent for forms only.
1341           Makes ToolStripComboBoxes show up again.
1343 2007-04-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1345         * ListView.cs: Add a hover_pending field in ListView
1346         to fire just one OnMouseHover event for each MouseEnter/MouseLeave
1347         cycle (we are resetting the MouseHover logic in XplatUI
1348         to handle HoverSelection). Fixes #80429.
1350 2007-04-02  Jackson Harper  <jackson@ximian.com>
1352         * TextControl.cs: Make sure the attributes get set on the last
1353         tag.
1354         - Still have to do the end tag if we have stepped all the ways to
1355         the end.
1357 2007-04-02  Sebastien Pouliot  <sebastien@ximian.com>
1359         * XplatUIOSX.cs, XplatUIX11.cs, XplatUIX11GTK.cs: Remove dependency
1360         on an internal libgdiplus call when the information is already 
1361         available via the public API.
1363 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1365         * Control.cs: Call ContainerControl.ChildControlRemoved whenever a
1366           control is removed from a control collecftion.
1367         * XplatUIX11.cs: The first location for toplevel form is (22, 22).
1368           Fixes FormPropertyTest (failed on rare occasions).
1369         * XplatUIWin32.cs: Add a workaround in SetParent for strange behaviour
1370           of Win32SetParent (when changing from no parent to a parent it
1371           might add the new parent's location in screen coordinates to this
1372           window's location).
1373         * Form.cs: Rework ChangingParent once again, now the handle is
1374           recreated whenever a FormWindowManager is added or removed (that is
1375           whenever a normal form is parented or abandoned). Also change
1376           CreateParams so that all non-toplevel windows always get the
1377           specified sice (StartupPosition is never considered for
1378           non-TopLevel forms).
1379         * ContainerControl.cs: Add ChildControlRemoved, the container control
1380           needs to be notified when a control is removed from it's
1381           collection, in the case the removed control is the active control.
1383 2007-04-02  Jackson Harper  <jackson@ximian.com>
1385         * RichTextBox.cs: Use the new methods for setting the font and
1386         color, these methods set the specified attribute without
1387         overriding the other attributes.
1389 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
1391         * ToolStripPanel.cs: Fixes for better layouts in PDN.
1393 2007-03-31  Gert Driesen  <drieseng@users.sourceforge.net>
1395         * TextBox.cs: Added internal ChangeBackColor method to special-case
1396         Color.Empty. Added check for invalid ScrollBars value.
1397         * TextBoxBase.cs: Added internal ChangeBackColor method.
1398         * RichTextBox.cs: Only set backcolor_set on 2.0 profile. Added
1399         internal ChangeBackColor method to special-case Color.Empty. Added
1400         check for invalid ScrollBars value.
1402 2007-03-30  Everaldo Canuto  <everaldo@simios.org>
1404         * MenuItem.cs: On invalidate prevent form to create handle. [Fixes #81272]
1406 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
1408         * ScollableControl.cs: Add HorizontalScroll and VerticalScroll properties.
1409         * ScrollProperties.cs, HScrollProperties.cs, VScrollProperties.cs: Added.
1410         [Based on submitted patch from Olivier Duff.]
1412 2007-03-30  Jackson Harper  <jackson@ximian.com>
1414         * TextBox.cs: Only select all on initial focus if the user has not
1415         specified a selection area.
1417 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
1419         * UserControl.cs: Override CreateParams.
1421 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1423         [ Fixes #80995 ]
1425         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
1426         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style to
1427           check for is a mix of several styles (such as WS_CAPTION for instance).
1428         * Control.cs: Don't paint an area bigger than the client area when painting
1429           the background colour. Add an internal GetCreateParams. Update calls to
1430           XplatUI.CalculateWindowRect due to API change.
1431         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole window's
1432           size, and handle WM_NCCALCSIZE in DefWndProc to calculate the size if it
1433           hasn't been handled by any windows. When creating and moving windows, X
1434           wants the location of the entire window, but the size of the client
1435           window, so add TranslateClientRectangleToXClientRectangle,
1436           TranslateWindowSizeToXWindowSIze and TranslatedXWindowSizeToWindowSize
1437           to cope with this, and call them before every window creation and move.
1438           Update CalculateWIndowRect to use Hwnd.GetWindowRect (one step towards
1439           removing DeriveStyles). In AddConfigureNotify don't do anything if the
1440           hwnd is a zombie (fixes the BadWindow we were getting while running the
1441           tests), always calculate the offsets when it's a parentless window, not
1442           only when reparented, and translate the window size, since we're getting
1443           the client size of the whole window, excluding entire window.
1444         * Theme.cs: Added BorderSizableSize.
1445         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
1446           anymore. Update calls to XplatUI.CalculateWindowRect due to API change.
1447         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API change.
1448           Fake the window styles here instead of in XplatUIWin32 so that all
1449           back-ends get the same window styles (and it's Form that's deciding when
1450           to use wm, not the Win32 backend anyways)
1451         * Hwnd.cs: Completely reworked GetWindowRectangle and GetClientRectangle -
1452           they are now passed a CreateParams and they only use Style and ExStyle
1453           to determine the rectangles (they should now work just like
1454           Win32AdjustWindowRectEx - though quite a few special cases are probably
1455           missing). They should also be 100% complimentary (i.e. GetWindowRectangle
1456           (GetClientRectangle (rect)) == rect), and all numbers (borders, menu
1457           sizes) are taken from the current theme. Added a GetBorders helper
1458           function that will return the borders for any given CreateParams
1459           (including captions and menus), and GetBorderSize that returns the given
1460           border size only.
1461         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
1462           Hwnd.GetClientRectangle.
1464 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1466         * Form.cs: Don't layout mdi children on MdiParent creation, the initial
1467           layout of the mdi children is handled by CreateParams. Fixes
1468           #79964,
1470 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
1472         * MenuAPI.cs: Make OnMouseDown returns a boolean to identify if event is
1473         processed.
1475         * Form.cs: When active tracker mouse down is not processed, send event 
1476         back to control inside mouse position. [Fixes #81227]
1478 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
1480         * ComboBox.cs: Override the ComboListBox's ActivateOnShow property and
1481         remove WS_VISIBLE from CreateParams to prevent combobox dropdowns from
1482         stealing focus from the active form on Windows.  (Control will be made
1483         visible in ShowWindow.)
1485 2007-03-29  Mike Kestner  <mkestner@novell.com>
1487         * ImageList.cs : add internal Changed event.
1488         * ListView.cs : hook up to StateImageList.Changed to perform
1489         invalidations when the the state icon list changes. [Fixes #81191]
1491 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
1493         * ToolTip.cs: Override the ToolTipWindow's ActivateOnShow property
1494         to prevent tooltips from stealing focus from the active form on Windows.
1496 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
1498         * ThemeWin32Classic.cs: Small stetic fixes in notifyicon balloon. 
1500         * ThemeClearlooks.cs: Implement notifyicon balloon for clearlooks theme.
1502 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
1504         * NotifyIcon.cs, ThemeWin32Classic.cs: Icon support added to notifyicon
1505         balloons.
1507 2007-03-29  Jackson Harper  <jackson@ximian.com>
1509         * TextControl.cs: When deleting text from non multiline textboxes,
1510         we need to update the entire document, because line offsets will
1511         be shifting.
1513 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
1515         * XplatUIX11.cs, ThemeWin32Classic.cs, Theme.cs: ShowBalloonWindow method
1516         added to theme, now we can create themes that uses diferent notify engines
1517         like notification-daemon from galago project or growl for Mac OS.
1519 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
1521         * NotifyIcon.cs: Prevent Balloon to show in task bar.
1523 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
1525         * XplatUIX11.cs: Prevent system to open more than one balloon.
1527         * NotifyIcon.cs: Prevent system to open more than one balloon and remove
1528         some compiler warning messages.
1530 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
1532         [Fixes #79149]
1534         * XplatUIX11.cs: Implement SystrayBalloon for X11 systems.
1536         * ThemeWin32Classic.cs, Theme.cs: DrawBalloonWindow and BalloonWindowRect 
1537         implemented, this methods is used by NotifyIcon.BalloonWindow class.
1539         * NotifyIcon.cs: BalloonWindow class added to support Balloon in X11 
1540         systems.
1542 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1544         * ListViewItem.cs: Forgot to make Invalidate internal.
1546 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1548         * ListView.cs: Add a InvalidateSelection method to
1549         invalidate methods which are currently selected, and call
1550         it when setting FullRowSelect and HideSelection, instead of
1551         calling Redraw.
1553 2007-03-28  Chris Toshok  <toshok@ximian.com>
1555         * XplatUIX11.cs (UnmapWindow): reindent this block.
1557         * DataGrid.cs (UpdateSelectionAfterCursorMove): we need to update
1558         the selection_start if we're moving the selection (that is, not
1559         extending it). Fixes bug #80461.
1561 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
1563         * ProgressBar.cs: Make the default MarqueeAnimationSpeed = 100.
1564         * ToolStripPanel.cs: Fix RowMargin, Renderer, RenderMode, and
1565         create private ControlCollection.
1567 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
1569         * Control.cs: We need to call OnVisibleChanged for our implicit
1570         children as well as our normal children.  Fixes scrollbars in
1571         comboboxes not showing up.
1573 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
1575         * Control.cs, Form.cs: Anywhere we call CreateHandle, we need to do
1576         the check for IsHandleCreated first.  The check in CreateHandle is not
1577         good enough because CreateHandle can be overriden, and the override 
1578         should not be called if the handle is already created.
1580 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
1582         * ToolStrip.cs: Remove MonoTODO for tooltips.
1583         * ToolStripComboBox.cs: Fix MonoTODO for DropDownHeight and events.
1584         * ToolStripContainer.cs: Add custom ControlCollection class.
1585         * ToolStripContentPanel.cs: Fix Renderer setting to match MS behavior.
1586         * ToolStripDropDown.cs: Add some missing properties/methods.
1587         * ToolStripDropDownMenu.cs: Override OnLayout and SetDisplayedItems.
1588         * ToolStripItem.cs: Remove MonoTODO for tooltips.
1589         * ToolStripManager.cs: Add IsShortcutDefined.
1590         * ToolStripOverflow.cs: Override LayoutEngine.
1591         * ToolStripProgressBar.cs: Add MarqueeAnimationSpeed.
1592         * ToolStripSeparator.cs: Add ImageKey.
1594 2007-03-28  Jackson Harper  <jackson@ximian.com>
1596         * TextControl.cs: If a char delete removes a line ending, we need
1597         to update the ending style.
1598         - Make sure the line ending calcs get called.
1600 2007-03-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1602         * XplatUIX11.cs: CreateWindow: Remove old default form location code,
1603           it was making the new code not work. Fixed a typo in the new code
1604           as well. Fixes #79826.
1606 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
1608         * XplatUIWin32.cs:
1609         - NIF_STATE and NIF_INFO added to NotifyIconFlags.
1610         - NOTIFYICONDATA properties sizes fixed, szTip is 128, not 64.
1611         - SystrayBalloon method implemented.
1612         [Add support for notifyicon balloon on win32, #79149]
1614 2007-03-27  Mike Kestner  <mkestner@novell.com>
1616         * ThemeWin32Classic.cs : update StateImageList selection to mirror
1617         the ms behavior when only one image is added to the list.
1618         [Fixes #81191]
1620 2007-03-27  Jackson Harper  <jackson@ximian.com>
1622         * TextControl.cs: Improvements to non multiline line ending
1623         drawing/measuing.
1625 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
1627         * XplatUIX11.cs: Fix the time which tooltip is opened for NotifyIcon. 
1629 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
1631         * NotifyIcon.cs: 
1632         - Balloon message handling added.
1633         - Call XplatUI.SystrayBalloon in ShowBalloonTip. 
1635         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
1636         XplatUIOSX.cs, XplatUIX11-new.cs: ShowBalloonTip method renamed 
1637         to SystrayBalloon to me like other Systray method, also a
1638         handle parameter added.
1640 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1642         * ListView.cs: Show scrollbars even when items.Count == 0
1643         but the columns Width is bigger than the ListView.Width.
1644         Also, when columns.Count == 0 set layout_wd and layout_ht
1645         to the ClientRectangle values, so we don't show any scrollbar
1646         in that case.
1648 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
1650         * XplatUIStructs.cs: Balloon (NIN_BALLOON*) constants added.
1652 2007-03-27  Jackson Harper  <jackson@ximian.com>
1654         * RichTextBox.cs: The RTF library decodes the text properly for us
1655         now.
1657 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1659         * ListView.cs: Display HeaderControl even when columns.Count == 0.
1660         * ThemeWin32Classic.cs: Use SystemBrushes.Control to draw the
1661         ListView header (HeaderControl), instead of Control.BackColor.
1663 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
1665         * Control.cs: Call OnVisibleChanged in SetVisibleCore for non-forms.
1666         Fixes tab control issues where controls would not show up because they
1667         never received their OnVisibleChanged call.
1669 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
1671         * NotifyIcon.cs: Balloon events added (BalloonTipClicked, BalloonTipClosed,
1672         BalloonTipShown).
1674 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
1676         * Control.cs: We won't get a WM_SHOWWINDOW when we create a window that
1677         is maximized or minimized, so move CreateControl to Control.OnVisibleChanged.
1678         * Form.cs: After we set the form visible, send a fake WM_SHOWWINDOW if we
1679         are max or min.  Remove WS_VISIBLE from CreateParams unless we are recreating
1680         the handle.  Fix WindowState by using the internal variable until we are 
1681         sure that we've been shown.
1682         * XplatUIX11.cs: Do not generate a WM_SHOWWINDOW message if new form is
1683         max or min.
1684         [Fixes bug #81198]
1686 2007-03-27  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1688         * XplatUIX11.cs: Windows without WS_CAPTION can still get decorations
1689           (at least borders). Fixes #79386 on Linux (with a small difference
1690           in behaviour: when trying to resize a caption-less window metacity
1691           shows the sysmenu. Resizing is still possible though).
1692         * XplatUIWin32.cs: When setting window styles send request an extra
1693           WM_NCCALCSIZE when it's a form without title (due to no text and no
1694           caption), since Win32 seems to calculate it wrong the first time we
1695           get the message, though the second time things work as they should.
1696         * Form.cs: Reorder a few statements in ChangingParent, otherwise the
1697           newly reparented window might show up unparented. Update
1698           CreateParams to exclude WS_DLGFRAME if ControlBox is false and
1699           there's no title text. Fixes #79386.
1701 2007-03-27  Mike Kestner  <mkestner@novell.com>
1703         * ListBox.cs : don't perform invalidations if the handle hasn't been
1704         created.  [Fixes #80753]
1706 2007-03-27  Mike Kestner  <mkestner@novell.com>
1708         * ListBox.cs : don't adjust top item when SelectedIndex is set to -1.
1709         [Fixes #80428]
1711 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
1713         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
1714         needed to implement Balloon.
1716 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1718         * ListViewItem.cs: In the constructors that take
1719         an array of strings, don't use ListViewSubItemCollection.AddRange
1720         method to add items, since we need to have a different behaviour (in
1721         the constructors we add an item for each null string, opposed to
1722         the behaviour of AddRange, which adds nothing).
1724 2007-03-26  Andreia Gaita  <avidigal@novell.com>
1726         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
1728 2007-03-26  Jackson Harper  <jackson@ximian.com>
1730         * TextControl.cs: Draw and measure line endings when in non
1731         multiline mode.
1732         - When searching the text, count the end of the last line as a
1733         word boundary.
1735 2007-03-26  Jackson Harper  <jackson@ximian.com>
1737         * RichTextBox.cs: The selection_start and selection_end don't
1738         really track the correct tags for the selection. So we'll manually
1739         compute the correct tag here.
1741 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1743         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
1744           and Continuous styles. Fixes #79469.
1746 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
1748         * ToolStrip.cs: Implement Tooltips.
1749         * ToolStripItem.cs: Create internal method for determining tooltip.
1751 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
1753         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
1755 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
1757         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
1758         it prevents a problem thak keeps icon visible after application 
1759         closes on win32.
1761 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
1763         * NotifyIcon.cs: Balloon properties and methods created.
1765         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
1766         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
1768 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
1770         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
1772 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
1774         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
1775         parameter indicates which aspects were explicit/user-set.
1776         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
1778 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
1780         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
1781         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
1782         SmallChange, and Value (2.0).
1783         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
1785 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1787         * ListView.cs: Always set item_control.Width in LayoutDetails
1788         if View is Details. Setting it later in CalculateScrollBars
1789         in a not-so-corner scenario (the sum of columns width is
1790         not bigger than the ListView width when handle is created, and then
1791         that sum gets bigger by increasing the width of the columns)
1792         causes a very weird recursion path (which shouldn't be happening,
1793         since header_control sets it in CalculateScrollBars too). This bug
1794         appeared after Chris' fixes for handle created issues, so probably
1795         it's related to some handle-creation time.
1797 2007-03-23  Chris Toshok  <toshok@ximian.com>
1799         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
1800         case where there's an add row, just so we don't end up in a case
1801         where it's not displayed (this happens when the row is partially
1802         obscured).  Fixes bug #79574.
1804 2007-03-23  Jackson Harper  <jackson@ximian.com>
1806         * TextControl.cs:
1807         * TextBoxBase.cs:
1808         * RichTextBox.cs: Preserve line endings in the lines text buffer,
1809         also added an enum that represents the line ending type. 
1811 2007-03-23  Andreia Gaita  <avidigal@novell.com>
1813         * NumericUpDown.cs: Fix logic so Text and Value properties are not
1814         messed with in every method call, but only from DownButton, 
1815         UpButton, UpdateEditText() and ValidateText. Fixes #80346
1817 2007-03-23  Chris Toshok  <toshok@ximian.com>
1819         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
1820         format objects if the format spec is "".  Fixes bug #80889.
1822 2007-03-22  Miguel de Icaza  <miguel@novell.com>
1824         * ToolStripPanel.cs (Join): added stubs to build PDN3
1826         * Control.cs (AutoScrollOffset): Add.
1828         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
1829         property, its only implemented for Win32, on X11 it defaults to
1830         some hardcoded value.
1832         * ToolStripItem.cs (AllowDrop): Add property
1834 2007-03-22  Mike Kestner  <mkestner@novell.com>
1836         * ListView.cs : in FullRowSelect Details mode, only enable box
1837         selection if the user clicks over the "item" column outside of the
1838         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
1840 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1842         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
1843           handle is not created yet.
1844         * Form.cs: Select: Don't call CreateHandle if the handle is already
1845           created, avoids a stack overflow on Windows when we are recreating
1846           controls.
1847         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
1848           they are made visible, and override AfterTopMostControl to keep
1849           them on top when other controls are brought to front.
1850           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
1851           or force_*scroll_visible is true (old implementation always shows
1852           scrollbars when needed, no matter what auto_scroll was set to).
1853         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
1854           IsHandleCreated check.
1856 2007-03-22  Andreia Gaita  <avidigal@novell.com>
1858         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
1859         row or col separator.
1860         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
1862 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
1864         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
1866 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
1868         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
1869         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
1870         every time. Fixes #80410.
1872 2007-03-22  Chris Toshok  <toshok@ximian.com>
1874         * BindingSource.cs (AddNew): partially implement.
1876         remove a couple of NotImplementedException's
1877         to get bug #81148 closed.
1879 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
1881         [Fixes #80380]
1882         
1883         * Control.cs:
1884         - UpdateCursor method added to update the screen cursor.
1885         - GetAvailableCursor method added to return cursor for enabled tree,
1886         it searches for cursor on control and it's parent's for enabled control.
1887         - Call UpdateCursor method on setter of Cursor property.
1888         - On setter of Enabled call UpdateCursor when it is false, we need to
1889         change cursor to normal (or to this parent cursor) because cursor 
1890         setting theres no effect to disabled controls.
1891         - Some minor source changes to follow the coding style guidelines.
1893         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
1894         controls.
1896 2007-03-22  Chris Toshok  <toshok@ximian.com>
1898         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
1899         generates.
1901 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1903         * XplatUIX11.cs: Implement default locations for forms.
1904         * Form.cs: Completely rework startup location for forms. Fixes #79964.
1905         * Hwnd.cs: Add previous_child_startup_location (to track the current
1906           startup location for any child forms of the current form) and
1907           previous_main_startup_location (to track the startup location for
1908           the current toplevel form).
1910 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
1912         * Control.cs: Don't trigger a layout if an implicit control is added
1913         that isn't visible.  Also, don't notify the owner when an implicit control
1914         is added.  (Owners shouldn't even know about their implicit controls.)
1916 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
1918         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
1919         to save some re-layouts.
1921 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
1923         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
1924         [Fixes #81203]
1926 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
1928         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
1929         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
1931 2007-03-21  Mike Kestner  <mkestner@novell.com>
1933         * ListView.cs : disable selection update for non-left button clicks
1934         with mods and over selected items.  [Fixes #80524]
1936 2007-03-20  Jackson Harper  <jackson@ximian.com>
1938         * TextControl.cs:
1939         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
1940         \r\r\n, \n.
1942 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1944         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
1945           very probably a more complicated calculation there. Update the
1946           textbox' ForeColor and BackColor when the ComboBox' colors are
1947           changed. Change the border change in LayoutComboBox to only affect
1948           the textbox, not all the calculations there. Seems to fix most of
1949           #79436.
1951 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1953         * ComboBox.cs: Handle Home and End keys as well as all combinations of
1954           modifiers + navigation keys as input keys, enables advanced text
1955           selection in the combobox (like Shift+Left Arrow for instance).
1956           ComboTextBox now overrides Focused and returns whatever
1957           ComboBox.Focused returns, since it really should be focused
1958           whenever the ComboBox is. Fixes #80795. Also make the border around
1959           the text box one pixel bigger, as mentioned in #79436.
1961 2007-03-20  Jackson Harper  <jackson@ximian.com>
1963         * TreeView.cs: Don't offset the images, this was causing some
1964         artifacts when expanding/collapsing with images that were the
1965         exact height of the treenode.
1967 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1969         * TrackBar.cs: Query the theme for the correct value when the mouse
1970           moves and the thumb is pressed. 
1971         * Theme.cs: Added TrackBarValueFromMousePosition
1972         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
1973           implementation was updating the trackbar value when drawing, now
1974           the drawing methods only draw. Fixes #80900. Refactored the
1975           calculations out to TrackBarValueFromMousePosition and
1976           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
1977           according to the mouse position whenever it wants to. Changed the
1978           light coloured pen when drawing the thumb from ControlLight to
1979           ControlLightLight, because the ControlLight is the same colour as
1980           the background so the 3D effect is lost. 
1982 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
1984         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
1985         defined. Fixes #80784.
1987 2007-03-20  Marek Habersack  <mhabersack@novell.com>
1989         * ContextMenuStrip.cs: align with the change introduced in
1990         revision 74664.
1992 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
1994         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
1995         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
1996         in SetTopmost.
1998 2007-03-19  Chris Toshok  <toshok@ximian.com>
2000         * Control.cs (WmPaint): don't make use of the Handle property
2001         after an event is emitted, as the user could have closed the
2002         form/destroyed the control.  Store the Handle in a local variable
2003         and make use of that.  Fixes bug #80768.
2005 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
2007         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
2008         behavior in X11 environments.
2010 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
2012         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
2013         because on setter of topmost we dont call SetTopmost when handle is not
2014         created.
2016 2007-03-20  Jackson Harper  <jackson@ximian.com>
2018         * TextControl.cs: Need to use SelectionLength () not
2019         selection_length, since that var is reset to -1.
2020         - Draw the caret when we don't have focus.
2021         * TextBox.cs: The selectall actually doesn't occur until the first
2022         focus.
2023         * TextBoxBase.cs: Need to update the caret position after a
2024         selectall.
2025         
2026 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2028         * ListView.cs: Enable scrolling when using Tile view.
2030 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
2032         [Fixes #80902]
2034         * XplatUIDriver.cs: Abstract SetOwner method created.
2036         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
2037         must be implemented and was masked as todo.
2039         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
2040         GWL_HWNDPARENT.
2042         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
2043         cheking for null owner to remove transient. The SetTopmost will be change
2044         on a decond step.
2046         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
2047         SetTopmost. Now owned forms will work properly in win32 and X11.
2049 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2051         * MdiWindowManager.cs: Update function name.
2052         * Form.cs: After closing a form MdiParent is always null.
2053         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
2054           better what it should do: necessary book-keeping when the form is
2055           closed, it should not close the form itself.
2057 2007-03-19  Andreia Gaita  <avidigal@novell.com>
2059         * ListViewItem.cs: Fix back and fore color. The subitems only
2060         use their own colors if they are set, otherwise use the listview's
2061         colors. Don't set default colors on constructor for subitem.
2062         Fixes #79315.
2064 2007-03-19  Mike Kestner  <mkestner@novell.com>
2066         * ListView.cs : make box selection for Details views with 
2067         FullRowSelect conform to MS behavior when clicking in the "item" 
2068         column and clicking outside the defined columns.
2069         [Fixes case 5-6 of #80374]
2071 2007-03-19  Chris Toshok  <toshok@ximian.com>
2073         * ScrollableControl.cs: create the controls from within the ctor,
2074         but don't actually add them until our handle is created.  this
2075         fixes a NRE possibility jpobst found (if you override OnLayout in
2076         a subclass, it's called before your ctor).  Also, add a
2077         IsHandleCreated guard to UpdateSizeGripVisibility as well.
2079 2007-03-19  Jackson Harper  <jackson@ximian.com>
2081         * TextBox.cs: Reduce the amount of invalidation we do.
2082         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
2083         some of them are true by default on MS.
2084         - Add some functions to reduce the amount of invalidates we do.
2085         * TextControl.cs: Less invalidation.
2087 2007-03-19  Chris Toshok  <toshok@ximian.com>
2089         [ Fixes #81773, and *seems* to fix #81553 as well ]
2091         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
2092         AccumulateDestroyedHandles.  We need to do it *after* we send
2093         WM_DESTROY, as the user's code can access Control.Handle in
2094         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
2095         move the WM_DESTROY/zombie handling to before the call to
2096         XDestroyWindow.  For some reason without this ordering
2097         FormTest.RecreateHandle hangs.  This ordering is semantically
2098         equivalent, however, as XDestroyWindow is async anyway.
2100 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
2102         * RichTextBox.cs: Reset backcolor_set after setting default.
2104 2007-03-19  Chris Toshok  <toshok@ximian.com>
2106         * ScrollableControl.cs: the scroll position should not effect the
2107         canvas size.  commit patch from georgegiolfan@yahoo.com, which
2108         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
2109         
2110 2007-03-19  Chris Toshok  <toshok@ximian.com>
2112         * ScrollableControl.cs: clean this up a bit.  create the
2113         scrollbars in the ctor and just show/hide them as needed.  Also,
2114         make hscroll_visible/vscroll_visible internal to Recalculate, and
2115         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
2116         everywhere else.  This seems to fix the scrollbars appearing
2117         beneath the content for me (i have *no* idea why that is,
2118         however.)
2120 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
2122         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
2123         some redundacy for stuff in Anchor and Dock that base will take care of.
2124         [Fixes #80762]
2126 2007-03-19  Mike Kestner  <mkestner@novell.com>
2128         * ListView.cs : make box selection for Details views without 
2129         FullRowSelect dependent on the text bounds, not item bounds.
2130         * ListViewItem.cs : add an internal property to obtain the TextBounds
2131         in Details view.  [Fixes case 1-4 of #80374]
2133 2007-03-19  Andreia Gaita  <avidigal@novell.com>
2135         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
2136         we're < 2.0. #78448 && #80316
2138 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
2140         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
2141         have the same style available as the previously selected one.  Also,
2142         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
2144 2007-03-19  Jackson Harper  <jackson@ximian.com>
2146         * TextControl.cs: Add an alignment property that all new lines
2147         will be given.
2148         - Make sure to use the align shift when calculating the line's X
2149         position.
2150         * TextBox.cs: Set the alignment on the document as well as on all
2151         the document lines.
2153 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2155         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
2156           throw if setting the parent of an mdichild that already has an
2157           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
2158           AssemblyProductAttribute in the assembly, use the type's namespace (as
2159           MS seems to do). CreateControl: don't create the handle if the control
2160           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
2161           create handle if the control is not a form. Change FocusInternal to
2162           virtual so that it can be overriden by Form.
2163         * TextBox.cs: Update call to FocusInternal.
2164         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
2165           form is not a toplevel form when it's a mdi child, so update is_toplevel
2166           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
2167           hasn't been created. Show (IWin32Window): Don't allow this overload for
2168           toplevel windows. CenterToParent/CenterToScreen/Select: create the
2169           handle as MS does. SetVisibleCore: if called on a MdiChild and the
2170           parent isn't visible yet, save the visibility and restore it when the
2171           parent is made visible.
2172         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
2173           methods, since the visibility of the scrollbars can be changed from
2174           several places, not only from AutoScroll.
2175           [Fixes #81179]
2177 2007-03-19  Jackson Harper  <jackson@ximian.com>
2179         * RichTextBox.cs: Enable shortcuts by default.
2180         * TextBoxBase.cs: Add conditional shortcuts.  
2182 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
2184         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
2186 2007-03-19  Chris Toshok  <toshok@ximian.com>
2188         [ Fixes bug #80604]
2189         
2190         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
2191         swallow the message we're waiting on, instead of delivering it, as
2192         this is only used for the WM_SHOWWINDOW raised from
2193         MapWindow/UnmapWindow, and the message needs to be generated
2194         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
2195         before doing the Map/Unmap.  Also make sure that the Hwnd is still
2196         alive after the message has been handled.
2198         *before* the window is shown.
2200         * Control.cs (CreateControl): guard a few more things inside the
2201         if (!is_created) block, as we might end up being called again -
2202         yay .net.
2203         (WmShowWindow): call CreateControl if we're showing the control.
2205 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2207         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
2208           controls without a handle if they have any parent with a handle. In
2209           Dispose add a check whether the handle is created or not before
2210           calling BeginInvoke, this removes the need of the extra disposing
2211           parameter (which was bogus anyway since it didn't prevent the
2212           invoke from happening, it only skipped the check for an existing
2213           handle, meaning that the invoke would call on an inexistent
2214           handle).
2216 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
2218         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
2219         appears in taskbar.
2221 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
2223         * MessageBox.cs:
2224         - Fixed a problem that dont show help button for messages with 3 buttons.
2225         - Refactory button size and position calculations, now dont use fixed 
2226         values, also fixed button sizes (#80043) and form's border space.
2227         - AddButton method created, now all other AddButton methods call this one.
2228         - Some other source code cosmetic changes.
2230 2007-03-18  Jackson Harper  <jackson@ximian.com>
2232         * RichTextBox.cs: Don't do this all fonts must match check if
2233         there is only one char selected.
2235 2007-03-18  Jackson Harper  <jackson@ximian.com>
2237         * TreeView.cs: ScrollWindow works properly now, so we don't need
2238         to screw around with the scroll area.  This fixes some artifacts
2239         when expanding and collapsing.
2241 2007-03-18  Jackson Harper  <jackson@ximian.com>
2243         * TextBoxBase.cs: Allow updating the selection position when the
2244         cursor is outside the textarea, but we have a capture.
2245         * TextControl.cs: A special case for when the cursor is outside
2246         the bounds of the TB.
2247         
2248 2007-03-18  Jackson Harper  <jackson@ximian.com>
2250         * TextBoxBase.cs: Remove image pasting code for now.  There is no
2251         way to get an image on the clipboard right now anyways.
2252         * TextControl.cs:
2253         * RichTextBox.cs: Use the new RTF Picture class for pictures.
2255 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
2257         * MessageBox.cs:
2258         - Set window properties in constructor intead of on CreateParams.
2259         - Remove topmost from Window ExStyle.
2260         - Set ShowInTaskbar to false.
2261         - Set form border to FixedDialog.
2262         - Some cosmetic changes and remove unneeded comments.
2263         - It fixes itens 2,3 and 4 of bug #80043.
2265 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
2267         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
2268         none was explicitly set. Fixes part of bug #79949.
2270 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
2272         * ToolStripComboBox.cs: Add AutoComplete*.
2274 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
2276         * ToolStripComboBox.cs: Add FlatStyle.
2278 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
2280         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
2281         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
2283 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2285         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
2286           CheckBox.cs, RadioButton.cs, BindingSource.cs,
2287           DataGridColumnStyle.cs: Remove warnings.
2289 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2291         * Menu.cs: MergeMenu: Check menu argument for null before looping over
2292           it.
2293         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
2294           visibility of mdi child forms. FormSizeChangedHandler: update the
2295           maximized size if size has changed while maximized.
2296         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
2297           creating the handle.
2298         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
2299           avoid creating the handle if not created.
2300         * XplatUI.cs: Update debug output.
2301         * XplatUIStructs.cs: Added ToString's for a couple of structs.
2303 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
2305         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
2306         ProcessCmdKey().
2307         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
2308         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
2309         Implement keyboard shortcuts.
2311 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
2313         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
2314         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
2315         ColorDialog and all derived classes.
2317 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
2319         [ Fixes bug #79828 ]
2321         * ToolBar.cs:
2322         - Rename ToolBarButtonInfor to ToolBarItem.
2323         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
2324         - Maintain an array of ToolBarItem, used instead of ToolBarButton
2325         collection to be able add same button more than one time on a toolbar.
2326         - Refactory all properties and methods to use ToolBarItem. 
2328         * ToolBarButton.cs: 
2329         - Remove all propeties and methods that is now in ToolBarItem.
2330         - Rectangle propery now gets the rectangle from first ToolBarItem to
2331         mimic win32 behavior.
2332         - Size calculation and layout methods also removed.
2334         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
2335         ToolBarItem instead of ToolBarButton to right drawing buttons when
2336         same button/separator was added more than one time to ToolBar.
2338         * ThemeNice.cs: Same as above. 
2340 2007-03-15  Andreia Gaita  <avidigal@novell.com>
2342         * XplatUIX11.cs: Fire extra MouseMove events right after
2343         MouseDown and MouseUp, emulating win32's <censored> behaviour
2344         for apps that rely on it.
2346 2007-03-15  Jackson Harper  <jackson@ximian.com>
2348         * TextControl.cs:
2349         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
2350         it is drawn on the controls client window and there is no NC
2351         area.
2352         - Set the background color to gray on 2.0 when we are readonly.
2354 2007-03-15  Chris Toshok  <toshok@ximian.com>
2356         [ Fixes bug #81144 ]
2357         
2358         * XplatUIX11.cs: implement VirtualScreen independently of
2359         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
2360         property.
2362 2007-03-15  Chris Toshok  <toshok@ximian.com>
2364         * Hwnd.cs: add an internal field for the cached_window_state.
2366         * XplatUIX11.cs: cache the window state, invalidating the cache
2367         (and thus re-querying the X server) only when we see an update to
2368         the _NET_WM_STATE property.
2370 2007-03-15  Chris Toshok  <toshok@ximian.com>
2372         * BindingSource.cs: get a lot of the unit tests working.
2374 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
2376         * Control.cs: Modify UpdateStyles to store distances when bounds >=
2377         0 instead of just bounds > 0.  [Fixes bug #80912]
2379 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
2381         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
2382         and methods.
2384 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
2385         
2386         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
2387         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
2388         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
2389         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
2391 2007-03-15  Chris Toshok  <toshok@ximian.com>
2393         [ Fixes #81101 ]
2394         
2395         * Control.cs: add Ivan's fix for 81101, with a slight modification
2396         - you can set control.Target to null.
2398 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
2400         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
2401         HideDropDown, use Hide instead to prevent an NRE.
2402         [Fixes bug #81147]
2404 2007-03-14  Jackson Harper  <jackson@ximian.com>
2406         * TextBoxBase.cs: Mess with the creation stuff a little. We need
2407         to calculate the document before the handle is created, in some
2408         cases. (Actually just one case).
2410 2007-03-14  Jackson Harper  <jackson@ximian.com>
2412         * TextBoxBase.cs: Need to display the caret after letting the base
2413         wndproc handle the focus methods, because the caret display
2414         methods check the focus state.
2415         - Try to display the caret after updating it's position with SelectWord.
2416         - Don't need to do an immediate update on this recalc, since there
2417         will be an invalidate anyways.
2419 2007-03-14  Jackson Harper  <jackson@ximian.com>
2421         * TreeView.cs: Some workarounds so that we can match event order a
2422         little better.
2424 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
2426         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
2427         #80803. Avoid NullReferenceException when Control does not have
2428         parent. Fixed different blinkstyle issues. Only subscribe to Tick
2429         event a single time. Only draw error icon when control is created and
2430         visible. Fixes failing unit tests.
2432 2007-03-14  Andreia Gaita  <avidigal@novell.com>
2434         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
2435         Selecting events. Fire Leave and Enter events when changing tabs.
2437 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
2439         * TreeView.cs: Add TreeViewNodeSorter.
2440         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
2442 2007-03-14  Chris Toshok  <toshok@ximian.com>
2444         * Form.cs: go ahead and remove the RecreateHandles that jpobst
2445         removed earlier and I had him add back it.  It turns out metacity
2446         *does* in fact handle the MOTIF_WM_HINTS property changing, it
2447         just doesn't redraw the window titlebar until you resize the
2448         window.  This also means we aren't recreating the entire window
2449         hierarchy on X when you change this property.  And it looks better
2450         on windows, too.
2452 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2454         * ListViewItem.cs:
2455         * ListView.cs: Collecting selection information
2456         is now done in SelectedIndexCollection rather than in
2457         SelectedListViewItemCollection. This is done so we can
2458         have the selection information code in one single place
2459         (virtual mode selection information entirely depends on
2460         SelectedIndexCollection).
2462 2007-03-13  Miguel de Icaza  <miguel@novell.com>
2464         * ErrorProvider.cs: Add stubs for ISupportInitialize
2466 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2468         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
2469         in the right order with the right values, from the Checked property, 
2470         just as MS does (instead of triggering them from ListView).
2472         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
2474 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2476         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
2477         the correct handler in OnItemCheck method (ItemCheckEventHandler 
2478         instead of EventHandler). This used to throw an InvalidCastException.
2480 2007-03-13  Jackson Harper  <jackson@ximian.com>
2482         * TextBoxBase.cs: Calculate the document before the handle is
2483         created, so there isn't an extra invalidate called.
2485 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
2487         * Form.cs: Don't set owner in ShowDialog until we are sure
2488         that we aren't going to throw an exception.  [Fixes bug #80773]
2490 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
2492         * TreeView.cs: Make it compile.
2494 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
2496         * Control.cs: Another place we don't call SizeFromClientSize.
2497         * Form.cs: Another place we don't call SizeFromClientSize.
2498         [Fixes bug #81125]
2500 2007-03-12  Jackson Harper  <jackson@ximian.com>
2502         * TreeView.cs: Basically emulating some strangness here with
2503         exanding nodes and setting node positions when windows aren't
2504         created.
2505         - Also attempting to walk the node tree less than previously, and
2506         just use visible order calculations for determining offsets.
2507         - oops made scrolling backwards.
2508         * TreeNode.cs: We need to start nodes with a zero visible order,
2509         because the order calcs are based on the first nodes order.
2511 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
2513         * Form.cs: Don't exit the program if RecreateHandle is called on
2514         the main form.
2516 2007-03-12  Chris Toshok  <toshok@ximian.com>
2518         * XEventQueue.cs: remove the use of PostQuitState.
2520         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
2521         WM_QUIT message in GetMessage, return false (and if we're in the
2522         nested WaitForHwndMessage, repost the WM_QUIT message).
2524 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
2526         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
2527         or the MaximizeBox properties.  [Part of bug #80640]
2529 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
2531         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
2532         no links.
2534 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
2536         * ToolStripItem.cs: Fix some tests I broke by checking Visible
2537         instead of visible.
2539 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
2541         * FileDialog.cs: Use text of File name combobox to determine what
2542         files the user selected. Added tokenizer to parse the file names.
2543         Fixes bug #81123.
2545 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
2547         * Control.cs: We can't call SizeFromClientSize in the constructor,
2548         but we still need to do the same work, so make an internal version.
2549         [Fixes bug #80621]
2551 2007-03-12  Jackson Harper  <jackson@ximian.com>
2553         * TreeView.cs:
2554         * TreeNode.cs:
2555         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
2556         IsExpanded.
2558 2007-03-12  Jackson Harper  <jackson@ximian.com>
2560         * TextBoxBase.cs: Now that the handles are being created a little
2561         later, we need to make sure that the document is recalculated when
2562         the handle is created.
2564 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
2566         * Theme.cs: GetLinkFont abstract method added.
2567         
2568         * LinkLabel.cs: 
2569         - Remove CalcTrimRectangle, no longer needed.
2570         - Factor also remove, position issues must be fixed in libgdiplus.
2571         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
2572         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
2573         care about font used to draw links.
2574         - Set TabStop to true when control is "Selectable", control is selectable
2575         when have one or more links. Fixes #80501 (test case is also added).
2576         - Set the LinkArea values after links change, LinkArea values must be
2577         based in first link position and size, a test case was created.
2578         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
2579         the attribute must be true LinkArea.Length > 0. The same was applied to
2580         TabStop.
2581         
2582         * ThemeWin32Classic.cs: 
2583         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
2584         in draw method.
2585         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
2586         color change.
2587         - Draw focus rectangle for every parts focused, including parts that 
2588         is on another line, its because regions returns various rectangles
2589         and not only one. Needed to mimic W32 look.
2590         - Uses Graphics.Clip to delimite region painted, it mean that now 
2591         complete text is passed to DrawString, with this we solve layout
2592         issues without create another text renderer.
2593         - Uses Region.Intersect to fix some flickers problems, now only needed
2594         parts will redrawed.
2595         - This changes fixes #79614 and some other unreported issues, on Linux 
2596         some layout problems still remain, the problem is under 
2597         MeasureCharacterRanges but it is an libgdiplus bug.
2599 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
2601         * TextBox.cs: Set for foreground color.
2602         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
2603         this is already done in Control.
2605 2007-03-10  Jackson Harper  <jackson@ximian.com>
2607         * TextBox.cs: Set the background color, but reset the
2608         backcolor_set flag which is just for the user setting the
2609         background color.
2611 2007-03-09  Chris Toshok  <toshok@ximian.com>
2613         * Control.cs: really remove the call to XplatUI.SetVisible from
2614         CreateHandle(), like I said I did when I merged the branch.
2616         * BindingSource.cs: implement some more of this stuff.
2618 2007-03-09  Jackson Harper  <jackson@ximian.com>
2620         * TextBox.cs: Don't explicitly set our background colors.
2621         * TextControl.cs:
2622         * TextBoxBase.cs: Draw readonly text.
2623         - Need to invalidate when backcolor or readonly are changed.
2624         
2625 2007-03-09  Jackson Harper  <jackson@ximian.com>
2627         * TextBoxBase.cs: Don't set the forecolor until the handle is
2628         created.
2629         - Do not raise OnPaint, and removed some old debug code.
2631 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
2633         * ScrollableControl.cs: Fix mouse wheel scrolling.
2635 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
2637         * Control.cs: Wire up MouseDoubleClick event.
2639 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
2641         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
2642         top or bottom.
2643         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
2644         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
2645         item is added.  This logic was moved to ToolStrip.OnItemAdded.
2646         [Fixes bug #81090]
2648 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2650         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
2652 2007-03-08  Jackson Harper  <jackson@ximian.com>
2654         * TreeView.cs: Show the correct image for selected node (this used
2655         to work, not sure how the code got deleted). Also implemented 2.0 feature
2656         SelectedImageKey.
2658 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2660         * ListView.cs:
2661         * ListViewItem.cs: Cache index in items when retrieving them
2662         in VirtualMode.
2664 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
2666         * ToolStripItem.cs: Don't return the explicit_size if we are using 
2667         AutoSize.  Fixes invalidation issue when user has explicitly set a
2668         size and has AutoSize = true.
2670 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
2672         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
2674 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
2676         * DataGridView.cs: Remove event handler from DataView when a
2677         DataTable is used as DataSource.
2679 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
2681         * Control.cs: Create internal setter for client_size to allow it to be
2682         set without triggering resizing code.
2683         * Form.cs: Calculate client_size in constructor, only change client_size
2684         in FormBorderStyle property if Handle has been created.
2685         [Fixes #80574, #80791]
2687 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
2689         * SystemInformation.cs: Add TerminalServerSession.
2691 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
2693         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
2694         TreeView code.
2696 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
2698         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
2699         Handle before we were supposed to.  Now checks ActivateOnShow property
2700         in Control.
2701         * Control.cs: Add internal ActivateOnShow property.
2702         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
2703         for ActivateOnShow.
2704         * Hwnd.cs Remove no longer needed no_activate field.
2706 2007-03-07  Jackson Harper  <jackson@ximian.com>
2708         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
2709         2.0 properties
2710         * DrawTreeNodeEventHandler.cs: Add
2711         * DrawTreeNodeEventArgs.cs: Correct default value.
2712         
2713 2007-03-07  Chris Toshok  <toshok@ximian.com>
2715         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
2716         to be called before NativeWindow.WndProc.  Put the HwndCreating
2717         magic there to hook up our Hwnd's to handles.
2719 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
2721         * DataGridView.cs: Comment out debug code.
2723 2007-03-07  Chris Toshok  <toshok@ximian.com>
2725         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
2726         to make the rest of the world happy]
2728         * Control.cs (CreateHandle): there's no need to call
2729         XplatUI.SetVisible here, it's effectively done by
2730         XplatUI.CreateWindow on X now, and always was on windows.
2732         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
2733         shortcircuit out of the loop if we have a message loop running on
2734         this thread.
2736         [Changelog from merge]
2738         2007-03-05  Chris Toshok  <toshok@ximian.com>
2740                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
2741                 causes handle creation.
2743         2007-02-28  Chris Toshok  <toshok@ximian.com>
2745                 * ApplicationContext.cs: Add a flag to make sure we only raise the
2746                 ThreadExit event once (ExitThreadCore can be indirectly called
2747                 from a few places.)  I don't like the additional flag, but it
2748                 makes the event ordering/count correct.
2750                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
2751                 without locking the collection.  An enumerator doesn't give us any
2752                 protection from modification anyway.  Lock the thread hash and
2753                 replace the complicated enumerator loop with a foreach.
2754                 (Application.CloseForms): make internal so it can be called from
2755                 ApplicationContext.  This should probably be moved to MWFThread.
2756                 (Application.ExitThread): don't call MWFThread.Current.Exit()
2757                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
2758                 when the runloop exits (in response to WM_QUIT.)
2759                 (Application.RunLoop): add a comment (and check) for
2760                 context.MainForm being null after setting context.MainForm.Visible
2761                 = true.  This is because you're perfectly free to dispose of a
2762                 form in VisibilityChanged.  Chalk this up to another case where we
2763                 need to synchronously generate WM_ACTIVATE from Control.Show.
2764                 Also, add handling for WM_QUIT here so we'll exit the loop.
2765                 
2766                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
2767                 fact that we don't wait if we're only unmapping the whole_window
2768                 makes me a bit nervous, but it doesn't seem to cause any problems
2769                 yet.
2771                 also, add a comment about the stupid, broken and wrong resetting
2772                 of PostQuitState to false in GetMessage().
2774                 In PostQuitMessage, we need to add a WM_QUIT message to the
2775                 thread's queue.  We use the FosterParent to get the right
2776                 handle/hwnd/queue.
2778                 Lastly, in SetVisible, we need to unmap both windows, since the
2779                 waiting only happens when we're unmapping the client window.  So
2780                 now, the *only* time we unmap just the whole_window is in the hack
2781                 for resizing a control to 0,0.
2782                 
2783         2007-02-21  Chris Toshok  <toshok@ximian.com>
2785                 * Application.cs (CloseForms): rewrite this so that we don't
2786                 modify the list while we're traversing it.
2788         2007-02-20  Chris Toshok  <toshok@ximian.com>
2790                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
2791                 of OnHandleCreated.
2792                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
2793                 handle is created.  otherwise we'll create it here.
2794                 (VerticalScrollEvent): same here.
2796                 * Application.cs (CloseForms): call Form.Dispose, don't post
2797                 WM_CLOSE_INTERNAL.
2799                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
2800                 here. Application should Dispose() of the Form's.
2802                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
2803                 WM_DESTROY as well.
2804                 (MapWindow,UnmapWindow): only actually do the waiting for
2805                 SHOWWINDOW if the control we're dealing with is a Form.
2806                 (CreateWindow): if the control isn't a form, SendMessage
2807                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
2809                 * Control.cs (SetVisibleCore): always use is_visible here, not
2810                 value.  If we use value, we can end up re-setting something
2811                 visible if, for instance, you do Control.Hide() in a delegate
2812                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
2814         2007-02-20  Chris Toshok  <toshok@ximian.com>
2816                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
2817                 the message we need.  PeekMessage returning false should not be a
2818                 condition under which we exit the loop.
2820         2007-02-15  Chris Toshok  <toshok@ximian.com>
2822                 * Control.cs (Refresh): only refresh if we've got a handle and are
2823                 visible.
2824                 (CreateAccessibilityInstance): CreateControl() here.
2825                 (UpdateChildrenZOrder): complicate the code loop even more by
2826                 taking into account controls that haven't had their handle
2827                 created, and those that aren't visible.  But on the flip side,
2828                 simplify the code by splitting it into two loops.  one which
2829                 builds up the list of child controls we're interested in, and the
2830                 other that sets the z order of those children.
2832         2007-02-14  Chris Toshok  <toshok@ximian.com>
2834                 * Control.cs: Control.AccessibilityObject causes the control to be
2835                 created, not just the handle.
2837         2007-02-14  Chris Toshok  <toshok@ximian.com>
2839                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
2840                 problem on X where a window might have its handle created (and be
2841                 visible) while the window is unmapped.  calling XConfigureWindow
2842                 on an unmapped window is bad, and generates X errors.
2844         2007-02-13  Chris Toshok  <toshok@ximian.com>
2846                 * Control.cs (CreateHandle): don't loop over our children setting
2847                 their parent here.  do it when in WndProc when we're shown.
2848                 (UpdateChildrenZOrder): make this internal so we can call it from
2849                 ScrollableControl.
2850                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
2851                 creating its handle.  Also, remove the calls to PerformLayout from
2852                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
2853                 OnVisibleChanged only seems to be called directly here for the
2854                 toplevel control.  It's propagated down the window hierarchy by
2855                 calls to child.OnParentVisibleChanged.
2856                 (OnVisibleChanged): don't do layout here - it's done (oddly
2857                 enough, according to a glance at stack traces on ms.net..) in
2858                 ScrollableControl.
2859                 
2860                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
2861                 z order of our children before calling PerformLayout.
2863         2007-02-12  Chris Toshok  <toshok@ximian.com>
2865                 [big change, fixes #80020]
2866                 
2867                 * AccessibleObject.cs: we need to make owner internal again to fix
2868                 some of ControlAccessibleObject.
2870                 * Control.cs: lots of changes here.  add support for WM_CREATE,
2871                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
2872                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
2873                 we create child controls.  leave the MonoTODO's for the
2874                 accessibility calls, but fix the exceptions so the tests pass.
2876                 Add the InvalidOperationExceptions to Invoke methods, and remove a
2877                 couple of InvokeInternal methods we aren't using.
2878                 
2879                 Also, add a couple of CreateHandle calls in places where we know
2880                 the handles are being created but our code doesn't reference
2881                 .Handle.
2883                 Make SetVisibleCore call OnVisibleChange if the handle isn't
2884                 created.  If the handle is created, we rely on XplatUI.SetVisible
2885                 generating the event synchronously.
2886                 
2887                 Lastly, make sure we don't use this.Handle inside CreateHandle,
2888                 because we can call back into client (and that code can dispose of
2889                 the control).
2891                 * XplatUIStructs.cs: misc/cleanup.
2893                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
2894                 although we don't populate the wParam properly.
2895                 (CreateWindow): generate WM_CREATE.
2896                 (MapWindow,UnmapWindow): make these calls synchronous, at great
2897                 performance expense (particularly in the unmap case), to match
2898                 win32 behavior.
2900                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
2901                 to call it.
2902                 (set_MdiParent): don't recreate the handle unless it's been
2903                 created already.
2904                 
2905                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
2906                 it's created.
2908                 * NativeWindow.cs: this is probably the weirdest part of the
2909                 patch.  We need a way to link up the window being created to the
2910                 WM_CREATE message.  Since we can only be creating one window at a
2911                 time on a given thread, we keep track of a per-thread reference so
2912                 we can dispatch it properly.  We also need to keep track of the
2913                 Hwnd currently being created so that the win32 backend doesn't
2914                 have problems.
2915                 
2916                 * XplatUIWin32.cs: a similar change to the one we made in
2917                 NativeWindow.cs.
2919 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
2921         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
2922         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
2923         to draw the menu shortcut string.
2925 2007-03-07  Jackson Harper  <jackson@ximian.com>
2927         * TreeNode.cs: Add the 2.0 collapse method.
2929 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
2931         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
2933 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
2935         * DataGridView.cs: Change DataSource will clear column and row
2936         lists. Call Invalidate() to reflect DataSource change.
2938 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
2940         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
2941         and a new row is added to it.
2943 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
2945         * DataGridView.cs: Add columns when DataSource is en empty list but
2946         is a System.Data.DataView (from a System.Data.DataTable).
2948 2007-03-06  Andreia Gaita  <avidigal@novell.com>
2950         * Label.cs: Implement AutoEllipsis (2.0)
2952 2007-03-06  Jackson Harper  <jackson@ximian.com>
2954         * TreeView.cs: Implement 2.0 TopNode setter property.
2955         - Use a local var instead of the skipped_nodes field for computing
2956         how many nodes to skip.  Otherwise we won't scroll because the
2957         valuechanged handler checks if skipped_nodes is equal to the new
2958         value.
2959         - Implement 2.0 Sort method.
2960         - Add useless 2.0 DoubleBuffer property
2961         - Implement 2.0 LineColors property.  Lets you change the color of
2962         the lines in the tree. Terribly useful for creating non cohesive
2963         desktops.
2964         - Implement 2.0 image key feature.
2966 2007-03-06  Jackson Harper  <jackson@ximian.com>
2968         * TreeView.cs: We can't get the bounds of the nodes before raising
2969         the AfterSelect event, because that event could change the node's
2970         bounds (scrolling, font change, etc).
2972 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2974         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
2975         * Form.cs: Don't recreate handle when creating FormWindowManager, just
2976           update window styles. In CreateParams us VisibleInternal instead of
2977           VIsible to get the actual visible flag set for this form.
2978         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
2979           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
2980           handle the case when the form is already maximized, in which case
2981           it should be restored. Fixes #81043.
2983 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2985         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
2987 2007-03-05  Jackson Harper  <jackson@ximian.com>
2989         * TreeViewHitTestInfo.cs: implement.
2991 2007-03-05  Jackson Harper  <jackson@ximian.com>
2993         * InternalWindowManager.cs: class status fix.
2995 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2997         * InternalWindowManager.cs: All windows that have a parent
2998         are confined to their parent when they're being moved.
2999         Fixes #80822.
3001 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
3003         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
3004         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
3006 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3008         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
3009           buttons invisible before deciding which ones should be visible
3010           (fixes minimize/maximize buttons showing up in toolwindows). Remove
3011           an unused variable.
3012         * InternalWindowManager.cs: Remove warning.
3014 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3016         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
3017         to throw an InvalidOperationException is virtual mode is being used.
3019 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
3021         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
3022         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
3023         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
3024         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
3025         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
3026         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
3028 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3030         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
3031           driver.KeyboardDelay from XplatUI.KeyboardDelay 
3032         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
3033           (patch by Sergey Volk)
3035 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3037         * ToolWindowManager.cs: Added, contains logic for
3038           tool windows.
3039         * CreateParams.cs: Add a few helper methods and an
3040           internal variable to know which control the CreateParams belongs
3041           to.
3042         * Control.cs: Call Form.ChangingParent when the
3043           parent is about to be changed.
3044         * XplatUIX11.cs: DeriveStyles (): Set
3045           caption_height for all windows that have captions and are children.
3046           Update to use ToolWindowManager instead of InternalWindowManager
3047           for ToolWindows.
3048         * XplatUIWin32.cs: Set fake window styles for all
3049           windows that have window managers.
3050         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
3051           now duplicated for mdi windows when they are
3052           maximized, first for the buttons the window itself has, then for
3053           the buttons that appear in the menu bar. Makes things a little
3054           easier). Updated UpdateWindowDecorations, SetWindowState and the
3055           mouse eventhandlers accordingly.
3056         * Form.cs: Add ChangingParent (), contains the
3057           logic of what should happen when the parent changes. In MdiParent
3058           don't set things that ChangingParent () is doing. When handling
3059           WM_CLOSE, we can close the form if there are any other modal forms
3060           and the current form is a descendent of the modal form.
3061         * InternalWindowManager.cs: A lot of refactoring,
3062           the title buttons are now extracted to a separate container class
3063           that takes care of all button code (clicks, tooltips, etc). Moved
3064           Iconic|Maximized|Normal Bounds properties to this class from
3065           MdiWindowManager, so that the window state logic can succeed for
3066           other than mdi wm's. Implemented general window state change logic.
3067           Moved CreateButtons to ThemeWin32Classic, since the theme might
3068           override which buttons are available when as well as the exact
3069           location.
3070         * FormWindowManager.cs: Added, contains logic for
3071           normal forms.
3072         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
3073           which buttons go where (and if they are at all visible). 
3074           Removed special handling of maximized windows, since they aren't special. 
3075           In DrawManagedWindowDecorations don't try to draw the text if it is
3076           empty.
3077         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
3078           use whatever the wm gives us.
3080 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
3082         * ButtonBase.cs: Add 2.0 properties.
3083         * Button.cs: Override Draw for 2.0.
3084         * Control.cs: Add Entered and Selected properties.
3085         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
3086         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
3087         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
3088         buttons.
3089         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
3091 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
3093         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
3095 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
3097         * XplatUIWin32.cs: Register a new class with Windows each time we get
3098         a new ClassStyle.  [Fixes bugs #79432, #80817]
3099         * Controls.cs: Set the correct ClassStyle in CreateParams.
3100         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
3102 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
3104         * ListView.cs: Add fireEvent argument to ReorderColumn since the
3105         ColumnReordered event must not be signaled when modifying DisplayIndex
3106         of a ColumnHeader. Added internal ReorderColumns method which takes
3107         care of drawing, and updating the internal DisplayIndex of the
3108         ColumnHeader. Added AddColumn method which is invoked from
3109         ColumnHeaderCollection when adding or inserting columns, and which
3110         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
3111         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
3112         Recalculated dispay indices after removing a ColumnHeader.
3113         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
3114         match MS. Allows last display index to be returned after ListView
3115         is disposed. Update actual location of ColumnHeader when DisplayIndex
3116         is modified.
3118 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
3120         * LinkLabel.cs: Improve CalcTrimRectangle.
3121         
3122         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
3124 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
3126         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
3127         get rectangle as a result value.
3129 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
3131         * LinkLabel.cs: Theres some diferences between rectangle return from 
3132         MeasureCharacterRanges and the area used for DrawString to fix this 
3133         CalcMeasurementFactor method was created, it calcules the diferences
3134         to be use later to adjust rectangle in draw operations. Fixes #80473.
3135         
3136         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
3137         to adjust draw rectangle.
3139 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
3141         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
3142         text and some other changes to reduce and optimize source code.
3144 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
3146         * RadioButton.cs: Implement 2.0 event.
3147         * RelatedImageListAttribute.cs: Implement new class.
3149 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
3151         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
3153 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
3155         * CheckBox.cs: Implement 2.0 functionality.
3157 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3159         * ListView.cs: Refactor Add and AddRange methods of
3160         ListViewItemCollection, to not update the ListView
3161         everytime an item is added in AddRange. Also move the update
3162         code to a new CollectionChanged method, and call it
3163         from other methods that need it as well (this should also fix some
3164         bugs when Sorting is used).
3166 2007-02-27  Jackson Harper  <jackson@ximian.com>
3168         * TextControl.cs: Try to never let the caret stay in a non-text
3169         tag.
3170         * TextBoxBase.cs: Update the caret.
3172 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
3174         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
3175         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
3176         delete POINT structure, duplicate of one in XplatUIStructs.
3177         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
3179 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
3181         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
3182         edit box since otherwise the Label would immediately be set (even if
3183         the user did not modify the label). In OnKeyDown set Handled to true
3184         if Return or Escape was pressed. In ColumnHeaderCollection unlink
3185         columns that are to be removed. In ListViewItemCollection unlink items
3186         that are to be removed.
3188 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
3190         * TextRenderer.cs: If we set a GDI clip region, we need to clear
3191         it when we are done.  [Fixes bug #80949]
3193 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
3195         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
3197 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3199         * ListView.cs: I forgot to commit the changes for ListView 
3200         in my previous patch.
3202 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
3204         * Clipboard.cs: Partially implement an overload of SetDataObject.
3205         * Form.cs: Implement ShowWithoutActivation.
3206         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
3208 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3210         This is a first set of changes to make the Virtual mode works,
3211         by avoiding the retrieval of ListViewItem instances until
3212         draw time.
3214         * ListView.cs: Store item position in the ListView instead of the
3215         ListViewItem, this way we don't request the Bounds property of
3216         ListViewItem inside the ListView calculations, as well as cache the item
3217         size in item_size field. Store indexes instead of ListViewItem
3218         instances in the matrix used by icon view. Add a ItemMatrixLocation
3219         struct to hold the row and col info of the matrix info.
3221         * ListViewItem.cs: Don't store the location anymore, and only cache
3222         the rectangles for GetBounds. Use the ListView.GetItemLocation
3223         method to retrieve the actual location.
3225 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
3227         * TextRenderer.cs: Add clipping support, thanks to George.
3228         [Fixes bug #80949]
3230 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
3232         * ListViewItem.cs: Cancel label edit when item is removed from 
3233         ListView.
3234         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
3235         event before the edit textbox is displayed.  Added CancelEdit method
3236         which is used end to editing while ignoring the value set by the
3237         user. In EndEdit, set focus to ListView to avoid losing focus to
3238         other controls. In ListViewItemCollection.Clear, cancel editing of
3239         any of the items.  In Remove, cancel editing of item being removed.
3240         Avoid udplicate code by modifing RemoveAt to invoke Remove.
3242 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
3244         * FileDialog.cs: Update FSEntry when move is successful. Fixes
3245         bug #80948.  
3247 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
3249         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
3250         compatible with non X11 systems. Fixes #80901.
3252 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
3254         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
3255         whether the item should be unselected and reselect. We do no want this
3256         when we're starting to edit the label. Do not fire the 
3257         SelectedIndexChanged event from ListView when its already been fired
3258         by modifying ListViewItem.Selected. Fixes bug #80943.
3260 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
3262         * TextRenderer.cs: Previos commit logic was backwards.
3264 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
3266         * TextRenderer.cs: Don't add padding on MeasureText if we were
3267         sent the NoPadding flag.
3269 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
3271         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
3272         after DrawButton. To prevent image overlaps button borders SetClip and 
3273         ResetClip added before and after draw image. Fixes #79129.
3275 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
3277         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
3278         window size, it fix problem when you run under win32 that theres
3279         Size diferent than ClientSize. Also fix controls size and positions
3280         to mimic Win32. Fixes #80837.
3282 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
3284         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
3285         menu area to fix some problems for non X11 systems. Fixes #80613.
3287 2007-02-22  Jackson Harper  <jackson@ximian.com>
3289         * TreeNode.cs: When a node is expanded, set its is_expanded flag
3290         even if it doesn't have any children.
3292 2007-02-22  Jackson Harper  <jackson@ximian.com>
3294         * TreeView.cs: Calculate the top node 'on the fly', this
3295         eliminates issues where you need to click on the tree before
3296         scrolling it to get the top node computed correctly.
3297         * TreeNodeCollection.cs: We don't need to mess with the top node
3298         anymore.
3300 2007-02-22  Jackson Harper  <jackson@ximian.com>
3302         * DataGridViewRow.cs: Fix typo so height can actually be set.
3303         Patch by Peter Grimm.
3305 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
3307         * FileDialog.cs: Fixed support for renaming files and directories.
3308         * ListView.cs: Do not lose focus when edit is canceled. Process
3309         Escape as regular key (to prevent closing of dialogs).
3311 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
3313         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
3314         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
3316 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
3318         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
3319         did not modify label.
3320         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
3321         modified the text. Reset Label when user presses Escape in edit mode.
3322         Move focus to ListView after having cancelled or finished editing the
3323         label.
3325 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
3327         * ComboBox.cs: Removed unnecessary initializations. Marked items field
3328         private. Clear textbox when Text is set to null and SelectedIndex is
3329         already -1.
3330         * FileDialog.cs: Removed unnecessary initializations. Removed 
3331         workarounds for ComboBox bugs that are now fixed. Modified
3332         DefaultExt, InitialDirectory and Title property to change null to
3333         zero-length string in getters. Avoid directly accessing fields.
3335 2007-02-20  Jackson Harper  <jackson@ximian.com>
3337         * TextControl.cs: Remove RecalAlignments call, that was some
3338         debugging leftovers.
3339         - Don't use the line indent when we shouldn't.
3340         * RichTextBox.cs: Add support for paragraph left indents.
3342 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3344         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
3345         Seems like the class status pages doesn't catch params differences.
3347 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
3349         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
3351 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
3353         * ComboBox.cs: Setting Text should have no effect if item text of
3354         selected item exactly matches value. First lookup text using
3355         case-sensitive comparison, and fallback to case-insensitive comparison.
3356         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
3357         allow startIndex to be last index. Changed ArgumentOutOfRangeException
3358         paramname to match MS. Restart from first item if string is not found
3359         after startIndex. Fixed paramname of ArgumentNullException that is
3360         thrown for null value in ObjectCollection.Contains.
3362 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
3364         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
3366 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3368         * ListControl.cs: In SelectedValue use value.Equals to compare for
3369         equality instead of ==, otherwise it will fail for strings.
3370         Fixes #80794.
3372 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3373         
3374         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
3375         since the caret won't show up unless ShowSelection is true. 
3376         Fixes #80795.
3378 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3380         * Application.cs: When disabling all forms but the main form, do not
3381           disable any descendants of the main form (such as mdi children or
3382           other parented forms). Fixes #80822 on Windows.
3383         * Form.cs: If we have a parent, set the WS_CHILD style.
3384         * Control.cs: Update the window styles if the control whose parent has
3385           changed is a form (the WS_CHILD style has to be switched).
3387 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
3389         * XplatUIStructs.cs: MsgUIState structure added.
3391 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
3393         * FileDialog.cs: Removed need for separate fileName field. On 2.0
3394         profile, do not check filename(s) for illegal character if filename(s)
3395         were set non-interactively but always check on 1.0 profile. Fixed NRE
3396          in DefaultExt and only strip off first leading dot. Improve exception
3397         message when invalid Filter is set. Do not ignore InitialDirectory if
3398         it does no exist. Store specified Title, and if empty use default
3399         title (depending on type of dialog). Added an internal DialogTitle 
3400         property for retrieving dialog title. Fixed logic of displayed dir to
3401         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
3402         string as its buggy.
3403         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
3404         FileName is a zero-length string (it can never be null). Override 
3405         DialogTitle property to set default title of dialog box.
3406         * SaveFileDialog.cs: Override DialogTitle property to set default
3407         title of dialog box.
3409 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
3411         * FileDialog.cs: Modify default text of filename and filetype labels
3412         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
3413         after we've updated the SelectedIndex. Fixes part of bug #80887.
3414         * SaveFileDialog.cs: Set text of filetype label.
3416 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3418         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
3419         label field. Needed by latest Jackson's fixes for ListView.
3421 2007-02-16  Andreia Gaita  <avidigal@novell.com>
3423         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
3424         print preview images.
3426 2007-02-16  Jackson Harper  <jackson@ximian.com>
3428         * ListView.cs: Make AfterLabelEdit work correctly.
3429         * FileDialog.cs: After changing the name of the folder, we have to
3430         make sure that it is created, or that we pop up an error because
3431         it already exists.
3433 2007-02-16  Jackson Harper  <jackson@ximian.com>
3435         * X11Dnd.cs: Implement aliases on mime handlers, so things like
3436         System.String are mapped to text.
3437         - Handle dataobjects, getting all the possible formats out of them
3438         - We dont need the drag event args before we give feedback. This
3439         allows feedback cursors to be immediate before selections have
3440         been converted.
3442 2007-02-16  Jackson Harper  <jackson@ximian.com>
3444         * TextBoxBase.cs: Modified the method for inserting images to
3445         taking a line and position instead of tag and position.
3446         * RichTextBox.cs: Handle PngBlip data by inserting the png image
3447         into the RTF file.
3448         * TextControl.cs: Allow images to be inserted as the first tag of
3449         a line.
3450         - Fix some off by one issues when we assume the first tag is a
3451         text tag, not an image tag.
3453 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3455         * ListView.cs: Set focus to ListView when ItemControl gets a
3456         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
3457         Fixes part of #80467.
3459 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3461         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
3462           validate Text input (if null or empty string reset Value to default
3463           value). Fixes #80830.
3465 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3467         * ListView.cs: Set owner as null for columns and items when
3468         Dispose is invoked. Fixes #80607.
3470 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
3472         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
3473         showing DropDowns, don't show a Grip when doing Flow layout.
3474         [This fixes the toolbox in PDN 2.72.]
3475         * ToolStripItem.cs: Add Anchor property and some internal properties to
3476         reduces needed changes to FlowLayout.
3477         * ToolStripOverflow.cs: Remove unused variable.
3478         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
3479         use it in the layout calculations.
3481 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
3483         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
3484         reported in #79640.
3485         
3486         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
3487         size calculation.
3489 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
3491         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
3492         MeasureString format, it can make button very large in some cases, it is
3493         strange but is what win32 do.
3495 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
3497         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
3498         size calculation.
3500         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
3501         rendering, the value is based on MenuAccessKeysUnderlined.
3503 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
3505         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
3506         for most themes.
3507         
3508         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
3509         
3510         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
3511         and use MenuAccessKeysUnderlined instead.
3513 2007-02-13  Andreia Gaita  <avidigal@novell.com>
3515         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
3516         A selected control would not get a Focus call if:
3517                 - the default active control of the container is the same as
3518                   the one that was selected
3519                 - we are switching from one container to another
3520         Under these conditions, the container being selected already has
3521         an active_control, which is the same as the one being activated, 
3522         so set_ActiveControl would always return and not send the Focus
3523         call. Fix to check if the currently active control of the container
3524         is actually focused.
3526 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
3528         * StatusStrip.cs: Implement the spring layout.
3529         * ToolStripControlHost.cs: Make sure the hosted control's visibility
3530         always matches the host.
3531         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
3532         and TextAfterImage.
3534 2007-02-13  Andreia Gaita  <avidigal@novell.com>
3536         * Control.cs: Code reorganization only.
3537           - Reorganize the WndProc cases so that each case has it's own handling method, 
3538           to help with the no-line-numbering stack traces.
3539           - Formatting changes (it's vstudio's fault, really :p)
3541 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3543         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
3544           Thread.CurrentUICulture to match DateTimePicker's (and MS)
3545           behaviour.
3547 2007-02-12  Jackson Harper  <jackson@ximian.com>
3549         * RichTextBox.cs:
3550         * TextBox.cs: By default we have a non multiline document
3551         - use the multiline property instead of the internal variable
3552         * TextBoxBase.cs: Treat multiline and non multiline the same in
3553         most places.
3554         - Use the documents multiline flag instead of tracking it ourself
3555         * TextControl.cs: Attempt at getting multiline to match MS
3556         behavior.  Lines now track an offset, which is either their X or Y
3557         offset depending on whether or not we are in multiline mode.
3558         - Update all the methods to understand that lines have an X value.
3559         - Fix crash in Undo::Duplicate when empty lines are deleted.
3561 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
3563         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
3564         code moved to properties PreferredHeight and PreferredWidth. It solve the
3565         all problems when preferred sizes must be recalculated. Fixes #80801.
3567 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
3569         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
3570         font height when compatible_text_rendering is false. Partially fix #80801.
3572 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
3574         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
3576 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
3578         * Form.cs: Improved exception messages in ShowDialog.
3580 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
3582         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
3583         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
3584         if not set. Fixes bug #80764. Avoid accessing current_settings field
3585         directly.
3587 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
3589         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
3590         false.
3592         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
3593         public in 2.0 and for easy maintenance and dont break compatibility it is 
3594         internal in 1.1.
3595         
3596 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
3598         * ToolStripItem.cs: Implement using images from ImageList.
3600 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3602         * DateTimePicker.cs: Change default date-formatting culture from
3603           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
3604           seems to be the way MS does it.
3606 2007-02-08  Andreia Gaita  <avidigal@novell.com>
3608         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
3609         (the 6 was cut off on the right side)
3611 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
3613         * Form.cs: Tell MenuStrips to close when the form is clicked.
3614         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
3615         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
3616         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
3617         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
3618         support for Overflow, where items that do not fit are automatically
3619         reparented to a drop down menu.
3620         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
3621         Also: fixes bug #80747.
3623 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3625         * ComboBox.cs: Remove warning (unused code).
3626         * ScrollableControl.cs: Remove warning for 1.1 profile.
3628 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3630         * Form.cs: Remove a warning.
3632 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3634         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
3635           'g' specifier, not documented anywhere, but seems to always show up
3636           as a single space (might have something to do with the DateTime 'g'
3637           specifier, which is the era format, but since DateTimePicker can't
3638           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
3639           won't crash if the format has an unmatched quote. Now shows
3640           single-character formats correctly. Fixes #80744.
3642 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
3644         * StatusStrip.cs: Stretch property needs to call base.Stretch,
3645         not this.Stretch to fix stack overflow. [Fixes bug #80760]
3647 2007-02-07  Chris Toshok  <toshok@ximian.com>
3649         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
3650         background color.  it overwrites the background image we've
3651         already painted.  Fixes #80599.
3653 2007-02-07  Chris Toshok  <toshok@ximian.com>
3655         * DataGrid.cs: return immediately from Edit() when there are no
3656         columns.  Fixes #80662.
3658 2007-02-07  Chris Toshok  <toshok@ximian.com>
3660         * MessageBox.cs: fix #80625.  don't always show the Help button in
3661         2.0.  use the displayHelpButton parameter to determine if we
3662         should show it. Also, make the internal show_help field private.
3664 2007-02-07  Chris Toshok  <toshok@ximian.com>
3666         * Control.cs (SetVisibleCore): check in the proposed patch for
3667         80604, and set is_visible before calling CreateControl.
3669 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
3671         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
3672         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
3673         on it.
3675 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
3677         * MenuAPI.cs: hotkey_active internal field added, it is required because
3678         we need to know when hotkeys must be draw, before this change a keystate
3679         Navigating was used but we can have menu in navigating state without
3680         hotkeys. Fixes #80694.
3681         
3682         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
3684 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3686         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
3687           corresponding events and methods to be internal for 1.1 profile and
3688           public for 2.0 profile (required by SizeGrip).
3689         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
3690           implicit control list). Don't set the size nor the location of the
3691           SizeGrip anymore as it's not needed.
3692         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
3693           draw directly on the captured control (fixes #80656). Removed
3694           ShowGrip (it wasn't used anywhere), redraw (always true), added
3695           GetDefaultSize and GetDefaultRectangle to calculate defaults.
3696         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
3697           be called from SizeGrip.
3699 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3701         * Timer.cs: Throw ArgumentException if Interval <= 0.
3703 2007-02-05  Jackson Harper  <jackson@ximian.com>
3705         * TreeView.cs: We need to check scrollbar visibility when window
3706         visibility is updated, because non visible trees don't ever add
3707         scrollbars.
3708         * Cursor.cs: We want the override cursor to be reset to NULL when
3709         we set current cursor to the default cursor.
3711 2007-02-05  Jackson Harper  <jackson@ximian.com>
3713         * TextControl.cs: Don't have crlfs when we are non multiline.
3714         - Consolidate the line position.
3716 2007-02-05  Jackson Harper  <jackson@ximian.com>
3718         * X11Keyboard.cs: BACK+CTRL gets a special char code.
3720 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3722         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
3723           handling LeaveNotify->NotifyUngrab in order to send
3724           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
3725           after calling XUngrabPointer, so we call WindowUngrabbed directly
3726           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
3727         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
3728           MouseCaptureChanged correctly. Also create handles if changing
3729           Capture (matches MS behaviour).
3731 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3733         * SizeGrip.cs: Make the last change 2.0 only.
3735 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3737         * SizeGrip.cs: If resizing and the capture is lost, revert any size
3738           changes to initial size (fixes #80597).
3740 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3742         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
3744 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3746         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
3747           background) and only allow dragging if enabled. This way the
3748           sizegrip can be used to fill the open square that otherwise would
3749           have been shown in the bottom right corner of ScrollableControl
3750           when ScrollableControl is not suppose to support sizing.
3751         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
3752           sizegrip is shown and enabled, and hook up with necessary events.
3754 2007-02-01  Chris Toshok  <toshok@ximian.com>
3756         * DataGridTextBoxColumn.cs: clean up the
3757         GetFormattedString/GetColumnValueAtRow combination of functions.
3758         Also fix UpdateUI, and the initial state of
3759         IsInEditOrNavigateMode.
3761         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
3762         aren't supposed to scroll the textbox here, we're supposed to
3763         scroll the datagrid.
3765 2007-02-01  Chris Toshok  <toshok@ximian.com>
3767         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
3768         setting the position.
3770 2007-02-01  Chris Toshok  <toshok@ximian.com>
3772         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
3773         here, since the most recent focus fixes keep us from generating
3774         the Leave event when our textbox gets focus.
3775         (Edit): we should be passing null for the column style's
3776         instantText parameter.
3777         
3778 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
3780         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
3781         raised.  Fixes menu text/icons not showing up in PDN.
3783 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3785         * Control.cs: Remove code in constructor that makes every
3786         control with WS_CHILD set have initial location -1, -1.
3788 2007-01-31  Jackson Harper  <jackson@ximian.com>
3790         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
3791         XplatUIX11.
3792         * XplatUIX11.cs: Give teh keyboard to teh dnd.
3794 2007-01-31  Jackson Harper  <jackson@ximian.com>
3796         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
3797         - Remove some debug code.
3799 2007-01-31  Jackson Harper  <jackson@ximian.com>
3801         * XplatUIX11.cs: If you set the override cursor during a grab, it
3802         should actually override the grab cursor.  This comes into play
3803         when you are setting custom cursors in a DND feedback method.
3805 2007-01-31  Jackson Harper  <jackson@ximian.com>
3807         * X11Dnd.cs: Add support for handling the QueryContinue and
3808         GiveFeedback events.
3809         - Cancel drag and drop actions when the escape key is clicked.
3810         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
3811         can handle the ESCAPE key.
3812         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
3813         done when dnd events are continued after the button is released.
3814         - Add a new helper method so that dnd can translate key events.
3816 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
3818         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
3819         make it more obvious what is happening.
3821 2007-01-30  Jackson Harper  <jackson@ximian.com>
3823         * XplatUIX11.cs: Don't break when handling button release in drag
3824         and drop operations. We need that BUTTONUP message to get through
3825         so capture is released.
3826         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
3827         this is handled automatically when the mouse is down.
3829 2007-01-30  Jackson Harper  <jackson@ximian.com>
3831         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
3832         is closed, so we need to make sure that we aren't changing the
3833         dialog result when the OK (Open or Save) button has been clicked
3834         and we are closing the window ourselves.  Note we don't need to
3835         worry about the cache being written in this case, because it was
3836         already done in the previous FilOk call.
3838 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3839         
3840         * DateTimePicker.cs: Remove a warning.
3841         * ComboBox.cs: Remove a couple of warnings.
3843 2007-01-29  Chris Toshok  <toshok@ximian.com>
3845         * XplatUIX11.cs: don't crash, and remove the icon if the user has
3846         set one, if SetIcon is passed a null icon.
3848 2007-01-29  Andreia Gaita  <avidigal@novell.com>
3850         * TextBox.cs: Redraw when the password characters changes
3851         * TextControl.cs: Check if textbox has a password char and draw 
3852         a line of password chars instead of the text in the line. LineTag gets 
3853         an extra Draw() method which allows document.Draw to override the text 
3854         that will be drawn. Removes 1024 char limitation on length of passworded 
3855         lines.
3857 2007-01-29  Jackson Harper  <jackson@ximian.com>
3859         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
3860         single chars is not.
3862 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
3864         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
3865         one pixel.  Fix a StackOverflowException caused by an overload wrongly
3866         calling itself.
3868 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
3870         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
3871         also remove ProcessArrowKey and put the code inside ProcessKeys.
3873 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
3875         * PaddingConverter.cs: Added.
3877 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3878         
3879         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
3880         ShowPanels is false (fixes #80600). Only draw up to 127 characters
3881         of text (fixes #80601). For panels clip the text to draw to the
3882         panel (fixes #80603).
3884 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3886         * ComboBox.cs: Fixed implementation of ResetText.
3888 2007-01-25  Jackson Harper  <jackson@ximian.com>
3890         * TextControl.cs: For the last char of a line we need to use the
3891         line size, not that chars width, since it won't actually be
3892         computed since the right side of a char is based on the start of
3893         the left side of the next char, and the next char does not exist.
3895 2007-01-25  Chris Toshok  <toshok@ximian.com>
3897         * Splitter.cs: fix the new unit tests, and reindent some switch
3898         statements.
3900 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3902         * ComboBox.cs: Implemented 2.0 methods and events.
3903         * TextBoxBase.cs: Added OnTextUpdate, so that
3904         ComboBox.ComboTextBox can inform ComboBox of it.
3906 2007-01-25  Jackson Harper  <jackson@ximian.com>
3908         * TextControl.cs: Respect ShowSelection when deciding whether or
3909         not to display the caret, this allows comboboxes to have carets
3910         when the combotextbox does not have focus.
3912 2007-01-25  Jackson Harper  <jackson@ximian.com>
3914         * TextControl.cs: Add a Suspend/Resume for updating, basically the
3915         same as the Suspend/Resume for recalc, except this will do actual
3916         Invalidates.
3917         - New Undo manager, works much like the MS version.
3918         - Implemented Redo
3919         * TextBoxBase.cs: The Cut operation is undoable.
3921 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3922         
3923         * TextBoxBase.cs: Don't antialias text. Makes it look way better
3924         on Windows (no difference on Linux).    
3926 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3928         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
3929         we don't want to activate any windows. Fixes #79433.
3931 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
3933         - ButtonBase.cs: Fix capitalization of parameter: disposing.
3934         [Fixes bug #80609]
3936 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
3938         * FileDialog.cs:
3939         - Move to using System.ComponentModel.EventHandlerList
3940         - Replace Refresh with Invalidate
3941         - Clear the mime filecache on closing
3942         - Some other memory reducing work. After beeing closed FD now uses
3943           only about 300 KB for the fdo mime stuff plus the memory of the
3944           cached icons.
3945         * Mime.cs: Changed coding style and removed unnecessary commented
3946         code. Some more memory memory reducing work.
3948 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3950         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
3951         a few other missing 2.0 properties.
3952         * Theme.cs: Added DrawFlatStyleComboBox.
3953         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
3955 2007-01-24  Chris Toshok  <toshok@ximian.com>
3957         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
3958         wake_waiting flag, not just when there's data to be read.  if we
3959         don't, then future wakeup's won't reach us and we'll be doomed to
3960         wait for the entire 1 second timeout forever (unless there are X
3961         events to be had).
3963 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
3965         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
3966         until you pass Items.Count, not Items.Count - 1 like 1.1.
3968 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
3970         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
3972 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
3974         * ToolStripContainer.cs: The recent Dock fix exposed that I was
3975         adding the panels in the wrong order.
3977 2007-01-24  Jackson Harper  <jackson@ximian.com>
3979         * TextBoxBase.cs: When we move the caret we also need to move the
3980         selection, this fixes some random crashing after doing select
3981         text, unselect, delete a char, paste.
3983 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3985         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
3987 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
3989         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
3990         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
3991         * ToolBar.cs: Force redraw in BackgroundImageChanged.
3993 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
3995         * ToolBar.cs:
3996         - Implement support for vertical toolbars. Fixes #80539;
3997         - Call LayoutToolBar when resize, it fix some other problems in layout.
3998         - Rename requested_height to requested_size, as we can have width on it
3999         when toolbar is vertical.
4000         - Create a private property "Vertical" that uses Dock to verify when 
4001         toolbar is vertical or not.
4002         - Set ControlStyles when change Dock property.
4003         - Refactory in LayoutToolBar to have better variables names and to support
4004         vertical toolbars.
4005         - Fixes default value for ButtonSize when button count is equal zero, size
4006         must be (39, 36) test case writed.
4008 2007-01-23  Chris Toshok  <toshok@ximian.com>
4010         * Control.cs: fix the checks so that they work correctly for mdi
4011         parents/children.
4013 2007-01-23  Chris Toshok  <toshok@ximian.com>
4015         * Control.cs: ControlCollection seems to have super-secret
4016         abstraction breaking knowledge of Mdi containers.  allow MdiClient
4017         to add toplevel controls.
4019 2007-01-23  Chris Toshok  <toshok@ximian.com>
4021         * Control.cs: throw an ArgumentException if a toplevel control is
4022         added to our control collection from ControlCollection.Add, as
4023         well as from ControlCollection.IList.Add.  This fixes the
4024         ControlSetTopLevelTest.TestTopLevelAdd unit test.
4026         Also, in ControlCollection.IList.Add, don't through an
4027         ArgumentNullException, throw an ArgumentException, when value ==
4028         null.  This matches MS.
4030 2007-01-23  Chris Toshok  <toshok@ximian.com>
4032         * BindingSource.cs: initial, incomplete, implementation of
4033         BindingSource.
4035 2007-01-23  Jackson Harper  <jackson@ximian.com>
4037         * TextControl.cs:
4038         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
4039         that I can fix a broken unit test (TextBoxTest::ClearUndo)
4040         
4041 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
4043         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
4045 2007-01-23  Andreia Gaita  <avidigal@novell.com>
4047         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
4048         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
4049         IndexOfKey() for 2.0
4051 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4053         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
4054         to prevent it from changing z-order.
4055         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
4056         leave UI updates in MdiWindowManager.
4057         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
4058         1 sized (NC handling goes weird on Linux otherwise).
4059         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
4060         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
4061         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
4062         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
4063         and SetWindowState(s) to allow for changing the size of an activated child
4064         before activating it (reduces a lot of flicker).
4066 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
4068         * Form.cs: Changing FormBorderStyle has different semantics based
4069         on whether the Form is visible or not.  If not visible, don't change
4070         the Size.  But InvalidateNC needs to be called to force the window
4071         to pick up the changes and redraw itself.  [Fixes bug #80574]
4073 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
4075         [Moma work]
4076         * ContainerControl.cs: ProcessCmdKey.
4077         * ErrorProvider.cs: new constructor.
4078         * Form.cs: fix AutoValidateEvent compiler warning.
4079         * Label.cs: fix OnAutoSizeChanged compiler warning.
4080         * MenuStrip.cs: fix CanOverflow compiler warning.
4081         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
4082         * TextBox.cs: Dispose.
4083         * ToolStrip.cs: CanOverflow, re-enable double buffering.
4084         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
4085         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
4086         * ToolStripItem.cs: Overflow, RightToLeft properties.
4088 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4090         * Form.cs: Move the layout of the main form to MdiWindowManager.
4091         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
4092         do a layout of the main window to update MdiClient's client area to
4093         the right area. Fixes #80533. Remove the calculation of nc size, 
4094         it was just wrong and the correct one is the same as for 
4095         InternalWindowManager. 
4097 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
4099         * Control.cs: Setting Anchor or Dock needs to reset the other
4100         to its default.  [Fixes bug #80556]
4102 2007-01-20  Chris Toshok  <toshok@ximian.com>
4104         * CheckedListBox.cs: class status changes.
4106         * ScrollableControl.cs: same.
4108         * RichTextBox.cs: same.
4110         * ContainerControl.cs: same.
4112         * ListView.cs: same.
4114         * NotifyIcon.cs: same.
4116         * MenuStrip.cs: same.
4118         * RadioButton.cs: same.
4120         * CheckBox.cs: same.
4122         * PrintPreviewDialog.cs: same.
4124         * Form.cs: same.
4126 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
4128         * TreeNode.cs: Apply Alan's patch for Name property.
4130 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4131         
4132         * Form.cs: Implemented SizeGripStyle.
4133         * SizeGrip.cs: Check for minimum and maximum size for the
4134         control being resized and only resize if size has actually
4135         changed.
4137 2007-01-19  Chris Toshok  <toshok@ximian.com>
4139         * DataGridColumnStyle.cs: stop setting _readonly in the
4140         PropertyDescriptor setter.  fixes a unit test failure.
4142         also, rename ParentReadOnly to TableStyleReadOnly, and have it
4143         just consult our table style (if we have one).  We don't need to
4144         consult the datagrid readonly attribute because that's passed in
4145         as the _ro arg to Edit.  this simplifies things a little.
4146         
4147         * DataGrid.cs: use CurrentColumn instead of
4148         current_cell.ColumnNumber just to simplify some of the code.
4150         switch the order of some things in the CurrentCell setter to keep
4151         the previous cell from getting a textbox again -
4152         EnsureCellVisibility causes scrolling to happen, which calls Edit.
4153         So we need to set the new cell before calling it.
4154         
4155         call Edit in OnEnter, as does Microsoft.
4156         
4157         also, make sure the current table style isn't the one we create
4158         initially when checking to see if it's different than the one
4159         we're setting it to in BindColumns (this fixes #80421).
4161         * GridTableStylesCollection.cs: table styles can have "" for a
4162         mapping name.  part of the fix for #80421.
4164         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
4165         Edit significantly.
4167 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
4169         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
4170         and less GDI object leaky-er.
4172 2007-01-18  Andreia Gaita  <avidigal@novell.com>
4174         * LinkLabel.cs: Add opaque control style
4176 2007-01-18  Jackson Harper  <jackson@ximian.com>
4178         * TextControl.cs: Calculate width properly.
4179         - Don't store the tag's X offset, this can be figured out very
4180         easily.
4181         - When getting the caret tag make sure to get the last empty tag.
4183 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
4185         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
4186         [Fixes bug #79959]
4188         * Control.cs: Color.Empty shouldn't count for previous transparent
4189         redraw changes.
4191 2007-01-18  Jackson Harper  <jackson@ximian.com>
4193         * TextBox.cs:
4194         * RichTextBox.cs:
4195         * TextControl.cs: Starting to merge in some pieces of my older
4196         undo work.  Basically just some slight cleanup of the undo API.
4198 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4200         * TrackBar.cs: Fix signature of RightToLeftLayout.
4201         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
4202         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
4203         * Application.cs: Implemented UseWaitCursor.
4205 2007-01-18  Jackson Harper  <jackson@ximian.com>
4207         * TextControl.cs: We can't skip tags if any part of the tag is
4208         visible.
4210 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
4212         * ContainerControl.cs: Override OnLayout.
4214 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
4216         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
4218         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
4219         everything else.
4221 2007-01-18  Chris Toshok  <toshok@ximian.com>
4223         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
4224         (leftover from the container_selected days, I'd wager).  fixes bug
4225         #80546.
4227 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
4229         * Control.cs: Apply patch from George to fix the new testcase on
4230         bug #80451.  We can't just check for Color.Transparent, we need 
4231         to check if the back color's alpha channel is < 255.
4233 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
4235         * Form.cs: Move setting show_icon = true to before the constructor
4236         so that the base constructor has that information when it calculates
4237         the form's size.  Was causing forms to be (6, 6) bigger than they
4238         were supposed to be.  Thanks for catching this Rolf!
4240 2007-01-18  Jackson Harper  <jackson@ximian.com>
4242         * TextControl.cs: When replacing a selection we need to invalidate
4243         from the initial selection start, because selection start is moved
4244         to the end of the replacement.
4246 2007-01-18  Andreia Gaita  <avidigal@novell.com>
4248         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
4250 2007-01-18  Chris Toshok  <toshok@ximian.com>
4252         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
4253         I just added.
4255 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
4257         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
4258         layout methods and properties from ToolBarButton must be available
4259         into ToolBarButtonInfo.
4261 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
4263         * Control.cs: If the control has a transparent background, we
4264         need to refresh it when it moves and when it's parent's background
4265         image changes.  [Fixes bug #80451]
4267 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
4269         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
4271 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
4273         * XplatUIWin32.cs: Implement proper double buffering for Windows.
4274         [Fixes bug #80447, and probably speeds up things as well]
4276 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4278         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
4279         * XplatUIWin32.cs: We need to recalculate NC size after changing 
4280         window style to toolwindow (otherwise the client rectangle will be
4281         3 pixels to small for some reason).
4282         * MdiWindowManager.cs: Revert NC size calculations to match how
4283         they are calculated only based on window styles (to match
4284         Win32AdjustWindowRectEx, since otherwise when setting size or 
4285         location, Control will call Win32AdjustWindowRectEx to update client 
4286         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
4287         calculate a different value of client size causing another paint 
4288         (and flickering))
4289         * InternalWindowManager.cs: When moving or resizing a window only
4290         update size or location if they actually changed.
4291         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
4292         (seems to match Windows behaviour better). Cleaned up 
4293         ManagedWindowDecorations to draw what's needed and nothing else
4294         (was drawing borders and lines where they shouldn't be)
4295         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
4296         (style = 0xFFFF) and takes into account caption height when 
4297         calculating window rectangle.   
4299 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
4301         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
4302         can be added to toolbar multiple times, we need to maintain a list of 
4303         button information for each positions.
4305 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
4307         * ToolBar.cs: Some small stetic changes.
4309 2007-01-16  Jackson Harper  <jackson@ximian.com>
4311         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
4312         that allow us to have nested recalc = false blocks.
4313         - Add paste support for images in the RichTextBox
4314         * RichTextBox.cs: flush the text after the color is changed, so
4315         the change takes effect.
4316         - Use SuspendRecalc
4317         - Some extra debugging info
4318         * TextControl.cs: Tags no longer track their length, it is just
4319         computed from the next tags length, this makes things a little
4320         simpler and reduces places that we have to track length changes.
4321         - Refactored the linetag class a little so we could make it
4322         a base class for different kinds of tags
4323         - Created a image tag, a tag that can have a single image inserted
4324         into it
4325         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
4326         that we can call suspend multiple times.
4327         - Add some debugging methods
4329 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4331         * MdiClient.cs: Add ActivatePreviousChild for 
4332         mdi child window navigation.
4333         * Form.cs: Use MdiClient.ActivateNextChild/
4334         ActivatePreviousChild instead of Form.SelectNextControl
4335         to select the next/previous child since 
4336         SelectNextControl doesn't do it in the same order
4337         as mdi children should do it.
4339 2007-01-16  Chris Toshok  <toshok@ximian.com>
4341         * Control.cs: remove container_selected field.
4343 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4345         * MdiClient.cs: Update main form's ActiveChild when
4346         updating keyboard focus for the mdi child.
4348 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
4350         * Control.cs: PreferredSize fix.
4352         * Form.cs: Add several 2.0 events, properties, and methods.
4354 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
4356         * Form.cs: Provide meaningful message when MdiParent is assigned a
4357         Form that is not an MdiContainer.
4359 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4361         * MdiClient.cs: Update main form's ActiveChild when
4362         activating a mdi child.
4364 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4366         * MdiWindowManager.cs: Fix NRE when merging menus and main form
4367         doesn't have a menu.
4369         * Form.cs: Request NCRecalc after creating a mdi child window.
4370         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
4371         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
4372         
4373         * MdiClient.cs: Add new method SendFocusToActiveChild that either
4374         sends keyboard focus to the active child, or to the MdiClient
4375         if there are no child forms.
4376         
4377 2007-01-15  Chris Toshok  <toshok@ximian.com>
4379         * ListView.cs: drop the *Internal overrides, just do our work in
4380         ItemControl's WndProc instead.
4382         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
4383         of the various controls, and forward the events properly (in the
4384         same manner as MS) from the textbox to the UpDown.  Also the
4385         ActiveControl of the UpDownBase gets set properly now.  Finally,
4386         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
4388         * NumericUpDown.cs: set Text in the ctor.
4390         * DomainUpDown.cs: call UpdateEditText in the ctor.
4391         
4392         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
4393         so even a Selectable = false textbox can be focused if you click
4394         in it.  Go figure.
4396         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
4397         just add their handling in their respective WndProc's.  Also add
4398         an explicit FocusInternal method that doesn't consult CanFocus
4399         before calling Select(this).
4401         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
4402         do our work in WndProc instead.
4404         * TabControl.cs: same.
4406         * ComboBox.cs: same.
4408 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
4410         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
4411         Fixes #80006.
4413 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
4415         * ListViewItem.cs:
4416         * ThemeWin32Classic.cs: Don't draw the item text outside
4417         item bounds in Details view, as well as use trimming.
4418         Fixes bug #80376.
4420 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
4422         * Form.cs: Implement Form.ShowIcon.
4423         
4424         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
4425         null, which when combined with the DlgModalFrame window style removes
4426         the icon from the title bar.
4428 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
4430         * Control.cs: Call OnMouseClick after OnClick. (2.0)
4432 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
4434         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
4435         menu when mdi child windows theres a menu, uses insert to get icon
4436         at first position. Partially fix #80006.
4438 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
4440         * Clipboard.cs: Implement 2.0 methods.
4442 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
4444         * Menu.cs: Implement Insert method of MenuItemCollection class
4445         to fix MenuMerge.
4447 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4449         * ListView.cs: Implement 2.0 FindItemWithText method.
4451 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
4453         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
4454         to calculate menu bar size. Fixes #80290.
4456 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
4458         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
4460 2007-01-11  Chris Toshok  <toshok@ximian.com>
4462         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
4463         initial form.
4465 2007-01-11  Chris Toshok  <toshok@ximian.com>
4467         * LinkLabel.cs: make sure to call base.Select in our Select method
4468         if it turns out we're going to be selected (i.e. if we have a link
4469         that is going to receive focus).  That way our container's
4470         ActiveControl is updated properly.
4472 2007-01-11  Chris Toshok  <toshok@ximian.com>
4474         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
4475         they have 1 or more links.  this fixes the crash gert reported.
4477 2007-01-11  Andreia Gaita  <avidigal@novell.com>
4479         * ContainerControl.cs: Remove ContainerSelected flag, not needed
4480         anymore.
4482         * Control.cs (Controls.Add): Check if control to be added to the collection
4483         is a top level control, and throw an ArgumentException if it is.
4484         Remove ContainerSelectedFlag, not needed anymore.
4486         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
4487         top most control doesn't activate the form. This fixes a problem in the
4488         MessageBox, where the default button wouldn't get focus because the form
4489         was activated before being Loaded - when the Owner is set, SetTopMost is
4490         called, and it would activate it.
4492 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
4494         * Button.cs: When clicked and setting the parent form's DialogResult,
4495         use FindForm instead of Parent, since parent could be a container
4496         control and not the Form.  Fixes bug #80495.
4498 2007-01-10  Chris Toshok  <toshok@ximian.com>
4500         * Form.cs: move the call to SendControlFocus into the same
4501         is_loaded check.
4503 2007-01-10  Chris Toshok  <toshok@ximian.com>
4505         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
4506         It breaks in the face of the new ActiveControl stuff, and should
4507         be unnecessary.
4509         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
4510         activecontrol's focus if it's not already set, after we set
4511         ActiveControl, but before we call OnActivated.  Re-fixes #79667
4512         after the previous focus/active control fixes regressed it.
4514         * Control.cs: reindent some code.
4515         
4516 2007-01-10  Chris Toshok  <toshok@ximian.com>
4518         * Splitter.cs: clearing some outstanding changes from my tree.
4519         Replace all accesses (not writes) to the internal dock_style field
4520         with the Dock property.
4522 2007-01-10  Chris Toshok  <toshok@ximian.com>
4524         * Control.cs: make FireEnter, FireLeave, FireValidating, and
4525         FireValidated virtual.
4527         * Form.cs: override and don't chain up calls to FireEnter and
4528         FireLeave.
4530 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4532         * ListView.cs: Add more text padding space when using
4533         auto resize for columns (the previous value didn't work fine).
4535         * ThemeWin32Classic.cs: Update text position inside columns,
4536         to match the appeareance of .Net.
4538         * ColumnHeader.cs: When using auto resize, only the Width should
4539         depend on the sub items, not the Height. Also, set width after
4540         auto resizing (the value of Width should never remain as -1 or -2).
4542 2007-01-10  Chris Toshok  <toshok@ximian.com>
4544         * Application.cs: fix compilation errors when debug is enabled.
4546 2007-01-10  Chris Toshok  <toshok@ximian.com>
4548         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
4549         add some nice ascii art pictures and explanation of the process).
4550         (GetMostDeeplyNestedActiveControl): new utility function we need
4551         because our ActiveControl can refer to a child container with its
4552         own ActiveControl.
4554         * Form.cs (OnActivated): remove the call to SelectActiveControl
4555         from here, since you can override this method and not chain up,
4556         and winforms still sets the active control.
4557         (OnCreateControl): also remove the unnecessary SelectActiveControl
4558         call from here.
4559         (WndProc): it's actually called from the WM_ACTIVATE block, just
4560         before calling OnActivated.
4562         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
4563         inside the else.  the ActiveControl setter will end up setting
4564         focus on @control.  This keeps us from setting it again (and
4565         generating an extra LostFocus/GotFocus pair).
4566         (Select (bool, bool)): reindent.
4568 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
4570         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
4571         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
4572         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
4573         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
4574         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
4575         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
4576         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
4577         ToolStripTextBox.cs: Another wave of corcompare work.
4579 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4581         * ColumnHeader.cs: Implement 2.0 AutoResize method using
4582         the Width property.
4584         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
4585         methods by callling Column.AutoResize method on columns.
4587 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
4589         * Control.cs: Provide proper implementations of PreferredSize
4590         and GetPreferredSize (2.0).
4592 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
4594         * Form.cs: Remove one character (!) to make my previous OnClosing
4595         stuff work for modal windows like MessageBox.
4597 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4599         * ListView.cs:
4600         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
4601         ListView.Columns to get the last displayed column. Fixes #80452.
4603 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
4605         * Label.cs, LinkLabel.cs: Source code identation fixes.
4607 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
4609         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
4610         we dont need to invalidate only borders because when we invalidate four
4611         border lines the invalidate's generates a complete redraw of button, 
4612         because it now invalidate a complete rect some other redraws operations
4613         are fixed. Fixes #80196.
4614         
4615         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
4616         Remove ToolBarInvalidateEntireButton as it is not used.
4618 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
4619         
4620         * Form.cs: Make sure that both OnClosing and OnFormClosing are
4621         called for 2.0 profile.
4622         * CloseReason.cs: Make class internal for 1.1.
4624 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
4626         * ToolStripManager.cs: Implement FindToolStrip functionality.
4627         * ToolStrip.cs: Register and unregister with ToolStripManager.
4629 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
4631         * Control.cs: This was messy.  2.0 moves much of ControlCollection
4632         to ArrangedElementCollection.  Implemented this with as few #if's as 
4633         possible (which is still too many).
4635 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
4637         * Control.cs: Implement SizeFromClientSize() [2.0].
4639 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
4641         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
4642         use Theme.BorderSize to calculate area instead of static value 1, 
4643         by the way use new BorderStaticSize instead     Border3DSize when 
4644         border_static is true. Fixes #79537.
4645         
4646         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
4647         
4648         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
4649         it is not needed.
4651 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
4653         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
4655 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
4657         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
4658         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
4659         
4660         * Hwnd.cs: 
4661         - border_static field added, it will used to define when a control 
4662         theres 3D border but it must be static (thin).
4663         - In GetWindowRectangle use Theme.BorderSize to calculate area 
4664         instead of static value 1, by the way use new BorderStaticSize instead
4665         Border3DSize when border_static is true.
4667         * XplatUIX11.cs, XplatUIOSX.cs: 
4668         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
4669         
4670         * Theme.cs: BorderStaticSize field added.
4672 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
4674         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
4676 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
4678         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
4679         mimic same behavior than win32 that set border only in CreateParams,
4680         it fix problems under CreateParams overrides. Fix #79442 and partial
4681         fix #79537.
4682         
4683         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
4684         of thi control you must call recreate handle. 
4685         
4686         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
4687         need to do anything as RecreateHangle will take care about borders.
4689 2007-01-05  Mike Kestner  <mkestner@novell.com>
4691         * ListView.cs: hack to eliminate Lost/Got focus notifications on
4692         cycles between the ItemControl and parent.  Fixes #80388.
4694 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
4696         * Control.cs: Lazy init layout engine. Do not directly use 
4697         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
4699 2007-01-05  Chris Toshok  <toshok@ximian.com>
4701         * DataGrid.cs: don't forceably rebind columns in SetDataSource
4702         unless our list manager has changed (i.e. unless we have reason to
4703         believe our columns have changed).  Fixes #80422.
4704         
4705         also, disable the call do BindColumns in
4706         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
4707         1.1 the event isn't raised in response to a column addition on a
4708         table.)
4710 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
4712         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
4713         that inheritors can not call it if they choose.  Fixes bug #80456.
4715 2007-01-05  Andreia Gaita  <avidigal@novell.com>
4717         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
4718         doesn't blow up with a null exception on marshalling.
4719         
4720 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
4722         * Control.cs: Implement several 2.0 protected properties and methods.
4723         Ensure that all necessary events are being called when properties
4724         are set.
4726 2007-01-05  Mike Kestner  <mkestner@novell.com>
4728         * ListView.cs: implement PgUp/PgDn for Details view.  Also
4729         fixes First/LastVisibleIndex to use the item_control.ClientRect 
4730         instead of the parent control.  Fixes #80378.
4732 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
4734         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
4735           determine whether to use yard-pound or not (bug #78399).
4737 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
4739         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
4740         problems. So it is time to bring back the old popupbutton colors.
4742 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4744         * ColumnHeader.cs:
4745         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
4746         property by using the internal information of the
4747         columns order in ListView.
4749 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
4751         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
4752         Add 2.0 Tag properties.
4754         * LinkArea.cs: Add 2.0 ToString method.
4756 2007-01-03  Chris Toshok  <toshok@ximian.com>
4758         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
4759         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
4760         when we're editing, which fixes #80047.
4762 2007-01-03  Chris Toshok  <toshok@ximian.com>
4764         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
4765         #80404.
4767 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
4769         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
4770         property and implementation.
4772         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
4773         for MdiWindowListItem property.
4775         * ToolStripDropDown.cs: Don't consider hidden menu items while
4776         laying out the menu.
4778 2007-01-03  Andreia Gaita  <avidigal@novell.com>
4780         * SendKeys.cs: window handle is not needed in win32, so just
4781         get the active window for X after parsing keys and don't use
4782         it when building the message; it is passed by parameter to the 
4783         Xplat method and used there to build the message instead. Also,
4784         wait for events to be processed on SendWait, as opposed to Send,
4785         which doesn't wait :) Playing with threads and Send() completely 
4786         hangs on ms.net, only SendWait() works.
4787         
4788         XplatUIX11.cs
4789         X11Display.cs: Check for valid window handle.
4791 2007-01-03  Jackson Harper  <jackson@ximian.com>
4793         * TextControl.cs: Need to prevent wrap calculations when replacing
4794         text (this was there before i removed it accidently).
4795         - Don't update the cursor during the positioning, just set it to
4796         selection_start at the end of the operaion.
4798 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4800         * Control.cs:
4801         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
4802         
4803 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4805         * MonthCalendar.cs: Added Click and DoubleClick events again,
4806         but this time they only hide Control's Click and DoubleClick.
4807         
4808 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
4810         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
4811         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
4813 2007-01-02  Jackson Harper  <jackson@ximian.com>
4815         * TextBoxBase.cs: We move the caret with the split now, so we
4816         don't need to explicitly move the caret after splitting.  This
4817         fixes the caret bumping down an extra line on Enter.
4819 2007-01-02  Miguel de Icaza  <miguel@novell.com>
4821         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
4822         2.72). 
4824         * ScrollableControl.cs: Add Scroll event.
4826 2007-01-02  Mike Kestner  <mkestner@novell.com>
4828         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
4829         to fix all hdr height padding codepaths.  Fixes #80207.
4831 2007-01-02  Chris Toshok  <toshok@ximian.com>
4833         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
4834         setting it to the Control defaults anyway, and it being after the
4835         Dock set was screwing up layout.
4836         (set_Dock): don't short circuit out of setting base.Dock.  Also,
4837         no need to call UpdateStatusBar here, as it'll be re-layed out if
4838         it needs to be.
4840 2007-01-02  Mike Kestner  <mkestner@novell.com>
4842         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
4843         to header height for width == -1. Fixes the rest of #80207.
4845 2007-01-02  Mike Kestner  <mkestner@novell.com>
4847         * ListView.cs: rework the mouse event forwarding everaldo added
4848         to translate the coordinates to the parent control not
4849         raise the parent events until after we've done our work. Hover
4850         needs more work, in the case where HoverSelection is on, because
4851         the item control receives more than one MouseHover per Enter
4852         event, so we need to ensure only the "first" hover gets forwarded.
4853         Opening a minor bug for that.
4855 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
4857         * CheckedListBox.cs: Fixed SelectionMode to match MS.
4858         * ListControl.cs: Implemented AllowSelection property. Removed extra
4859         tabs.
4860         * ListBox.cs: Implemented AllowSelection property.
4862 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
4864         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
4865         SelectedItem, it prevent for errors when you must disable item
4866         before perform click. Fixes #80409.
4868 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
4870         * MenuAPI.cs: Prevent second level and beyond submenus to close
4871         until first level when move out side of popup.
4872         
4873 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
4875         * MenuAPI.cs:
4876         - Down submenu positin in three pixels.
4877         - Closes sub menu when mouse leaves from menu. Fixes #80402.
4879 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
4881         * ThemeWin32Classic.cs:
4882         - Fix popup menu size adding one pixel on the top.
4883         - Down menu item border from two to one to mimic Win32.
4884         - Some source identation fixes. 
4886 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
4888         * ThemeWin32Classic.cs: Use float numbers to calculate size and
4889         position of menu arrows, it fix wrong arrow size.
4891 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
4893         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
4894         instead of line, it simplify draw operation and fix it using 3D
4895         borders to mimic Win32.
4897 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
4899         * StatusStrip.cs: Add implementation of the sizing grip.
4901         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
4902         StatusStrip rendering.
4904 2006-12-31  Chris Toshok  <toshok@ximian.com>
4906         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
4907         override the layout style (anchor/dock) of the control.  assign to
4908         Dock instead.  Fixes bug #80416.
4910         * ToolStrip.cs: same.
4912 2006-12-31  Andreia Gaita  <avidigal@novell.com>
4914         * ContainerControl.cs: Use ContainerSelected flag to check if 
4915         a Container is directly selected, or if Select is called on a 
4916         non-container. If a container is directly selected, focus events 
4917         should not be raised.
4918         Apply #80411 patch to throw exception on set_ActiveControl if 
4919         control is the same as the current one.
4920         
4921         * Control.cs: Use ContainerSelected flag (see above).
4922         Add invalidation check to raise event but not invalidate if 
4923         dimensions are 0.       
4924         Apply #80411 patch.
4925         
4927 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
4929         * MenuAPI.cs: After click, dont close popup menu when menu is
4930         ContextMenu. Fixes #80399.
4932 2006-12-30  Chris Toshok  <toshok@ximian.com>
4934         * ContainerControl.cs: make sure we throw the exception if the
4935         container control doesn't contain the control we're setting
4936         ActiveControl to.
4938 2006-12-30  Chris Toshok  <toshok@ximian.com>
4940         * Control.cs (SetTopLevel): fix the exception raised by
4941         SetTopLevel for child controls.
4942         (set_Anchor): call UpdateDistances when setting the anchor type.
4943         This fixes bug #80336.
4945 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
4947         * Theme.cs: For now, revert back to 8pt font.
4949 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
4951         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
4952         Fixes #80395.
4954 2006-12-29  Chris Toshok  <toshok@ximian.com>
4956         * Control.cs: reorder the code in OnResize to give the same event
4957         ordering as MS.
4959 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4961         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
4962         TileHorizontally and TileVertically.
4963         
4964 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
4966         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
4967         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
4968         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
4969         Corrected copyright and email adress.
4971 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
4973         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
4974         of Exception in FullPath property if no TreeView is associated with
4975         the TreeNode.
4977 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
4979         * Theme.cs: Marked default_font as private, and initialize it in ctor
4980         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
4981         on 2.0 profile.
4982         * ThemeGtk.cs: Removed default_font intialization.
4983         * ThemeWin32Classic.cs: Removed default_font initialization.
4985 2006-12-28  Chris Toshok  <toshok@ximian.com>
4987         * Control.cs: fix a couple of place where we were creating handles
4988         more aggressively than we should be.  Fixes ControlRefresh unit
4989         tests.
4991 2006-12-28  Chris Toshok  <toshok@ximian.com>
4993         * Control.cs: contrary to what the comment said, Control.Dock does
4994         not supercede Control.Anchor - the last one you assign to decides
4995         the layout behavior.  so we need to keep track of which was the
4996         last set.  Also, fix some of the affected property arguments in
4997         PerformLayout calls, and remove an redundant parent.PerformLayout
4998         call in OnResized.
5000         Add a VisibleInternal property, which returns is_visible.  We
5001         can/should get rid of all the usage of this field elsewhere.
5003 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5004         
5005         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
5006         control style, not DoubleBuffer. Added UseDoubleBuffering property
5007         that indicates whether doublebuffering is enabled and supported.
5008         (comment from and code based on Gert Driesen's patch in #80324).
5009         Fixes #80324.
5011 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5012         
5013         * Control.cs: Fixed a NRE.
5015 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5017         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
5018         for 2.0.
5020 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5022         * Control.cs: Rewrote double buffering, now a seperate
5023         class handles all the buffering, no Graphics is disposed of
5024         until the painting is finished (earlier implementation 
5025         would crash if the control was resized in the OnPaint, 
5026         since it would cause the double buffer to be recreated
5027         and the old one disposed), a separate Graphics is 
5028         created for every paint (MS behaviour and anyways the state
5029         of the Graphics would have to be saved and restored otherwise)
5030         
5031         * XplatUIDriver.cs: 
5032         * XplatUIX11.cs:
5033         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
5034         so that we can get the graphics for the back buffer without
5035         having to create a new one and remove the offscreen_dc parameter
5036         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
5037         
5038 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5040         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
5041         Also make virtual all the key-related methods.
5043         * ListViewItem.cs: Make virtual the key related methods for
5044         ListViewSubItemCollection.
5046 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5048         * ListView.cs:
5049         * ListViewItem.cs:
5050         * ThemeWin32Classic.cs:
5051         * Theme.cs: Initial support for Tile view in ListView,
5052         as well as the implementation of the required bits for it (Item
5053         and Subitem).
5055 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
5057         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
5058         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
5059         Provide useful exception messages.
5061 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5063         * TrackBar.cs: Remove a warning.
5064         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
5065         when used by DateTimePicker, fixes #80287. This also requires that 
5066         MonthCalendar implements it's own drawing for the yearly updown control,
5067         otherwise the Capture tracking would be too complicated. Removed the Click 
5068         and DoubleClick events (according to comments they were hiding the base class
5069         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
5070         raise these events, not that they cannot be raised. It is possible to raise 
5071         them by calling OnClick and OnDoubleClick). Added two internal fields in 
5072         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
5073         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
5074         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
5075         event, no longer needed.
5076         
5077 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
5079         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
5080         true if new value differs from current value.
5082 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
5084         * Control.cs: ControlCollection.Count must be public. Fixed build of
5085         unit tests.
5087 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
5089         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
5091 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
5093         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
5095 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
5097         * Control.cs: Invalidates control including when Width and Height is 
5098         equal zero or is not visible, only Paint event must be care about 
5099         this. Fixes #79913.
5101 2006-12-26  Chris Toshok  <toshok@ximian.com>
5103         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
5104         more corcompare work.
5106         * DataGridView.cs: fix compiler warning.
5108         * ColumnHeader.cs: some corcompare work, and also take the
5109         opportunity to make the internal fields private.
5111         * ListView.cs: fix the fallout from the above field change.
5113 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
5115         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
5116         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
5117         ToolStripTextBox.cs: Fixes to events and corcompare.
5119 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
5121         * ListView.cs: Call owner.OnMousexx event to propagate events from
5122         item to ListView. Fixes #80367.
5124 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
5126         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
5127         if value is less than one. ItemHeight should not be set to a value
5128         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
5129         Removed extra tabs.
5131 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
5133         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
5134         * ToolStripStatusLabel.cs: Add Spring for Moma.
5136 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
5138         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
5139         Fixed code formatting. Removed debug code.
5140         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
5142 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
5144         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
5145         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
5146         ArgumentOutOfRangeException if ColumnCount is negative. In 
5147         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
5148         less than 4 or higher than 32768.
5149         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
5150         Fixed FormatProvider to return CurrentCulture unless explicitly set.
5151         Fixed IsFormatProviderDefault to return true if FormatProvider has
5152         not been explicitly set.
5154 2006-12-25  Chris Toshok  <toshok@ximian.com>
5156         * Application.cs: add a couple of 2.0 events.
5158 2006-12-25  Chris Toshok  <toshok@ximian.com>
5160         * Control.cs: fix compiler warning.
5162         * AxHost.cs: corcompare fixes.
5164         * ApplicationContext.cs: corcompare fixes.
5166 2006-12-25  Chris Toshok  <toshok@ximian.com>
5168         * Control.cs: only update dist_right/dist_bottom if the
5169         width/height is > 0.  this fixes anchored controls being resized
5170         smaller until they disappear and then resized larger again.
5172 2006-12-25  Chris Toshok  <toshok@ximian.com>
5174         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
5175         since they're nothing more than X/Left and Y/Top, respectively.
5177         Also, move back to a per-control Bitmap/Graphics for
5178         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
5179         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
5180         Height.
5182 2006-12-25  Miguel de Icaza  <miguel@novell.com>
5184         * MessageBox.cs: Implemented overload that takes a new "bool
5185         displayHelpButton" by adding a new internal field "show_help".
5186         When clicked this will raise the HelpRequested on the owner or the
5187         main form. 
5189         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
5190         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
5192         * ListView.cs: Add support ColumnWidthChanged and
5193         ColumnWidthChanging. 
5195         Add support for ColumnReordered event.
5196         (ReorderColumn): Add NET_2_0 specific support for cancelling the
5197         reorder.
5199         Very nice codebase!
5201         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
5203         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
5205 2006-12-24  Chris Toshok  <toshok@ximian.com>
5207         * GridTablesFactory.cs: 2.0 corcompare work.
5209         * ToolStripContainer.cs: add "override" to
5210         ContextMenuStripChanged, and remove the local event object.
5212         * ToolStripDropDown.cs: same with a couple properties.
5214         * ToolStripPanel.cs: same with AutoSizeChanged event.
5216         * TextBoxBase.cs: add "override" to AutoSizeChanged.
5218         * Form.cs: add the remaining 2.0 events, and do some corcompare
5219         attribute work.
5221         * DateTimePicker.cs: add "new" to padding.
5223         * ButtonBase.cs: use Control's use_compatible_text_rendering.
5225         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
5227         * DataGridView.cs: PaddingChanged is overridden.
5229 2006-12-24  Chris Toshok  <toshok@ximian.com>
5231         * Control.cs: corecompare work here too.
5233         * DataGridViewElement.cs, DataGridView.cs,
5234         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
5235         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
5236         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
5237         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
5238         work.
5240 2006-12-24  Miguel de Icaza  <miguel@novell.com>
5242         * Control.cs: Switched the error message on the console for a
5243         todo.  A review of the code will have to cope with this anyways
5244         (since its a large feature, it is in our radar) and it was
5245         producing too much output when running PDN.
5247         * ToolStripComboBox.cs: Set the text when the SelectedIndex
5248         changes.  Applications depend on this (PDN 2.72)
5250 2006-12-23  Chris Toshok  <toshok@ximian.com>
5252         * TableLayoutSettings.cs: finish up the corcompare work for this
5253         class.
5255 2006-12-23  Chris Toshok  <toshok@ximian.com>
5257         * Control.cs: make SetImplicitBounds internal, do some futzing
5258         with LayoutEngine so that it's available in 1.1, and remove the
5259         entire duplicated code mess from PerformLayout.  Use
5260         System.Windows.Forms.Layout.DefaultLayout instead.
5262         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
5264 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
5266         * Form.cs: Add MainMenuStrip property.
5268 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
5270         * Control.cs: Add ContextMenuStrip property and implementation.
5271         Fix ContextMenu implementation to show menu centered on control when
5272         activated using the keyboard instead of showing at screen (0,0).
5274         * ToolStripDropDown.cs: Fix needed overload of Show ().
5276 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
5278         * Menu.cs: Name property added for 2.0 profile.
5279         
5280 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
5282         * Menu.cs: Update information about FindMenuItem, method to be
5283         implemented soon.
5285 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
5287         * MenuAPI.cs: When deselect items deselect also selected subitems.
5288         
5289 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
5291         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
5292         FindSubItemByCoord to found itens that is not active, also an
5293         cheking added to FindSubItemByCoord to search for items only 
5294         in visible popup windows. Fixes #80274.
5296 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
5298         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
5299         internal property, it be care about change ExStyle. 
5301 2006-12-22  Andreia Gaita  <avidigal@novell.com>
5303         * ContainerControl.cs: set activeControl for parent forms up the 
5304         tree when the new activecontrol is a container.
5305         When validating the active control, if it is a container, also
5306         raise up the validation for it's active control. Fixes #80280
5307         
5308         * Control.cs: Add internal property flag and check to prevent
5309         Focus events from getting raised when Select() is called for
5310         a ContainerControl. There are still too many focus events being
5311         raised at the moment though.
5312         Cleaned up the code a bit.
5314 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5316         * Control.cs: Added all missing 2.0 events.and
5317         fixed a couple of corcompare issues.
5318         * TrackBar.cs: Implemented missing 2.0 bits.
5319         * MonthCalendar.cs, 
5320         * DateTimePicker.cs, 
5321         * MdiClient.cs: Fixed some corcompare issues.
5323 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
5325         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
5326         SplitterPanel.cs: corecompare work.
5328 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
5330         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
5331         Clean up warnings for BackgroundImageChanged and PaddingChanged
5332         events now that they are implemented in Control.cs.
5334 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
5336         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
5337         
5338         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
5339         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
5340         of TableLayoutPanel and supporting cast.
5342 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5344         * XplatUIWin32.cs: 
5345         - GrabWindow now confines the mouse pointer to the confine window.
5346         - Added Win32ClipCursor and Win32GetClipCursor.
5348         * Control.cs: 
5349         - Added CaptureWithConfine to be able to capture and confine 
5350         mouse pointer.
5351         
5352         * InternalWindowManager.cs: 
5353         - Call CaptureWithConfine instead of Capture if we're an
5354         MdiChild (fixes #79982).
5356 2006-12-21  Chris Toshok  <toshok@ximian.com>
5358         * DataGrid.cs: guard against the initial state of selection, where
5359         selection_start == -1.  make sure we only select from index >= 0.
5360         Fixes bug #80291.
5362 2006-12-21  Chris Toshok  <toshok@ximian.com>
5364         * Control.cs: we don't need to be so draconian with
5365         UpdateDistances, and we thusly don't need to call it before
5366         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
5368 2006-12-21  Daniel Nauck  <dna@mono-project.de>
5370         * ComboBox.cs,
5371         TextBox.cs: Implemented AutoComplete properties.
5373 2006-12-20  Chris Toshok  <toshok@ximian.com>
5375         * DataGridView*.cs: some corecompare work.
5377 2006-12-20  Jackson Harper  <jackson@ximian.com>
5379         * XplatUIX11.cs: We need to hide the caret when deleting it,
5380         otherwise you get carets left lying around everywhere.
5381         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
5382         prevents getting some weird half drawn caret tracers when
5383         scrolling.
5384         * TextControl.cs: Attempt to reduce the number of times we need to
5385         recreate the caret.
5387 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
5389         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
5391 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5393         * DateTimePicker.cs:
5394         - Implemented missing 2.0 bits.
5395         - Changed some default values to match MS.
5396         
5397 2006-12-20  Jackson Harper  <jackson@ximian.com>
5399         * TextBoxBase.cs: When changing the font across the document we
5400         can't recalculate after changing each line, since that will cahnge
5401         the line count.
5402         - PreferredHeight is a little different than i thought.
5403         - When backspacing, move the caret before we do the actual char
5404         delete, because when that delete crosses a wrap boundary the
5405         positional information will change.
5407 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5409         * Control.cs: Added some missing 2.0 bits: 
5410         BackgroundImageLayout, BackgroundImageLayoutChanged, 
5411         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
5412         add IBindableComponent and IDropTarget implementation.
5413         
5414         * MonthCalendar.cs: 
5415         - Added all missing 2.0 features:
5416         BackgroundImageLayout, RightToLeftLayout, 
5417         OnHandleDestroyed, RightToLeftLayoutChanged, 
5418         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
5419         PaddingChanged.
5420         - Rewrote all the BoldDate code, it was completely broken.
5421         - Fixed all the tests (the tests can now be re-enabled, the
5422         problems were not with the tests, but with the control, it was
5423         mostly broken).
5424         
5425         * DateTimePicker.cs: Changed the location where the 
5426         MonthCalendar is shown.
5427         
5428 2006-12-19  Chris Toshok  <toshok@ximian.com>
5430         * DataGridView.cs: add IDropTarget implementation.
5432         * ToolStripPanel.cs: add IDropTarget implementation.
5434 2006-12-19  Jackson Harper  <jackson@ximian.com>
5436         * TextControl.cs: soft now means something different than what it
5437         used to mean, we want to move the caret regardless of whether or
5438         not this break was soft (would we really have wanted the caret
5439         to not move with the break in the old context?)
5440         * TreeView.cs: Make sure we factor in the vert scrollbar when
5441         calculating the horizontal scrollbar's maximum.
5443 2006-12-19  Andreia Gaita  <avidigal@novell.org>
5445         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
5446         check for keywords in alternate casing, close bug #80049.
5448 2006-12-19  Chris Toshok  <toshok@ximian.com>
5450         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
5451         methods (which all do nothing).
5453         * IDropTarget.cs: add the 4 missing methods.
5455 2006-12-19  Chris Toshok  <toshok@ximian.com>
5457         * TableLayoutRowStyleCollection.cs: corcompare work.
5458         
5459         * TableLayoutSettings.cs: same.
5461         * TableLayoutStyle.cs: same.
5463         * TableLayoutColumnStyleCollection.cs: same.
5465 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
5467         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
5468         TableLayoutPanel I've had in my local tree for way too long.
5470 2006-12-19  Miguel de Icaza  <miguel@novell.com>
5472         * TableLayoutSettings.cs: Finish the public API (still needs all
5473         the logic to update on changes). 
5475         * TableLayoutPanelCellPosition.cs: new file.
5476         
5477         * TableLayoutRowStyleCollection.cs,
5478         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
5479         TableLayoutSettings.cs: Track the final 2.0 table api.
5481 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5483         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
5484         and Image List 2.0 members for ColummnHeader.
5485         * ListView.cs: Add key-related 2.0 methods for
5486         ColumnHeaderCollection.
5488 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
5490         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
5491         ArgumentNullException if items argument is null. Ignore null item in
5492         arrays. Removed extra tabs.
5494 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
5496         * MonthCalendar.cs: Fixed InvalidCastException.
5498 2006-12-19  Jackson Harper  <jackson@ximian.com>
5500         * TextControl.cs: Don't increment the position here.
5501         - When calculating char positions only add in the line break size
5502         for hard line breaks.
5504 2006-12-19  Andreia Gaita  <avidigal@novell.org>
5506         * SendKeys.cs: Changed some things to match ms.net behaviour
5507         when parsing shifted capital letters.
5508         
5509         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
5510         Add window handle as parameter to SendInput. X11 needs the 
5511         window handle, and the handle being passed      to it in the keys 
5512         queue is the active control handle (which windows needs), not 
5513         the window handle.
5514         
5515         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
5516         to support SendKeys on X.       
5517         
5518         * X11Keyboard: Implement helper method to lookup a linux keycode
5519         given the virtual keycode. Added table of keycode-2-virtualkey
5520         values to support this.
5522 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5524         * ListView.cs: Add support for SelectedIndexCollection
5525         and SelectedItemCollection 2.0 methods. Implement support
5526         for ImageKey too.
5527         * ListViewItem.cs: Add support for ListViewSubItemCollection
5528         2.0 methods. Also, fix an incorrect behavior of AddRange method
5529         (it shouldn't call Clear).
5530         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
5532 2006-12-19  Jackson Harper  <jackson@ximian.com>
5534         * RichTextBox.cs: 
5535         * TextBoxBase.cs: New args for FormatText
5536         * TextControl.cs: Rewrote the main drawing method, this version
5537         feels a little easier to understand and debug to me.  Hopefully it
5538         does to others also
5539         - Fix FormatText to OR in the new formating values.  Added
5540         FormatSpecified param, basically this works in the same way as
5541         BoundsSpecified in Control.
5542         - Set the caret properties when the caret is positioned.
5543         - When wrapping text make sure that we calculate the width of the
5544         last character
5545         - when calculating alignments we might have wrapped down to the
5546         next line, so don't search for an individual tag, search for the
5547         end of the line
5548         - We need to invalidate the selection area when we replace the
5549         selection.
5550         
5551 2006-12-19  Daniel Nauck  <dna@mono-project.de>
5553         * Application.cs: add Restart () 2.0 support
5555 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
5557         * MenuItem.cs: Invalidate menu item rectangle after change Enable
5558         property. Fixes #80268.
5559         
5560 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
5562         * MenuAPI.cs: Dont trigger select event when closes top menu
5563         item. Fixes #80270.
5565 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
5567         * MenuAPI.cs: When you click on menuitem only trigger onselect
5568         event for top menu itens. Fixes #80271.
5569         
5570 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5572         * MdiWindowManager.cs: Make IconicBounds depend on
5573         the bottom of MdiClient, not the top (fixes #80267)
5574         
5575 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5577         * MdiClient.cs: Added missing 2.0 attribute
5579 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5581         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
5582         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
5584 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
5586         * MenuAPI.cs: Fix click when menuitem is not popup,
5587         this regression was caused by last commit (#80272).
5589 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
5591         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
5592         fire click event or close menu. Fixes #80272.
5594 2006-12-17  Daniel Nauck  <dna@mono-project.de>
5596         * ListViewHitTestInfo.cs: add
5598 2006-12-17  Daniel Nauck  <dna@mono-project.de>
5600         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
5601         * FlatButtonAppearance.cs: add
5602         * DockingAttribute.cs: add
5604 2006-12-17  Chris Toshok  <toshok@ximian.com>
5606         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
5607         and rebind our columns when it does - this way, if you make
5608         changes to the DataTable (or set the Table attribute on a DataView
5609         after setting it as the DataGrid's DataSource, the changes are
5610         made visible.)  Fixes bug #80107.
5612 2006-12-17  Daniel Nauck  <dna@mono-project.de>
5614         * ListViewGroup.cs: add internal Location property for layouting.
5615         * Theme.cs: add abstract ListViewGroupHeight function.
5616         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
5618 2006-12-16  Andreia Gaita  <avidigal@novell.com>
5620         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
5621         Added reset of selected index to 0 when adding first tab page.
5622         Fixes #80264
5623         
5624         * NumericUpDown.cs: Fix NET_2_0 check
5626 2006-12-16  Daniel Nauck  <dna@mono-project.de>
5628         * ListViewGroup.cs: fixed DefaultValueAttribute value
5630 2006-12-16  Daniel Nauck  <dna@mono-project.de>
5632         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
5634 2006-12-15  Miguel de Icaza  <miguel@novell.com>
5636         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
5637         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
5638         ScrollableControl.cs: Add a handful of methods that are
5639         overwritten in 2.0 
5641 2006-12-15  Chris Toshok  <toshok@ximian.com>
5643         * XplatUIWin32.cs: initial implementation of the Reversible
5644         drawing functions.  there are some problems.  DrawReversibleFrame
5645         doesn't seem to work at all for Dashed FrameStyle, and in the
5646         Thick case there are drawing errors at the corners (we probably
5647         need to bind Rectangle instead of doing moveto/lineto's.)
5649 2006-12-16  Andreia Gaita  <avidigal@novell.com>
5650         
5651         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
5652         to send blocks of key messages. Send accumulates keys to send with Flush, 
5653         while SendWait sends all keys immediately.
5654                 
5655         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
5656         XplatUIX11.cs,  XplatUIX11-new.cs:
5657         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
5658         to Win32 SendInput.
5659         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
5660         
5661         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
5662         testing for ms.net on this class is very tricky, as the tests run too fast 
5663         to allow the hook to release, essentially freezing the keyboard and the 
5664         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
5665         category :p
5667 2006-12-16  Daniel Nauck  <dna@mono-project.de>
5669         * Padding.cs: fixed serialization compability to MS ("_var" field names),
5670                         added missing attributes.
5672 2006-12-15  Daniel Nauck  <dna@mono-project.de>
5674         * ListViewGroup.cs: Added missing attributes.
5675         * ListViewGroupCollection.cs: Added missing attributes.
5677 2006-12-15  Daniel Nauck  <dna@mono-project.de>
5679         * ListViewItem.cs: fixed ListViewSubItem text property.
5681 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5682         
5683         * Control.cs: Added missing 2.0 attributes
5684         
5685 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5686         
5687         * MdiClient.cs: Added missing 2.0 attribute.
5688         * MonthCalendar.cs: Added some missing 2.0 attributes 
5689         and properties.
5690         
5691 2006-12-15  Daniel Nauck  <dna@mono-project.de>
5693         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
5695 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
5697         * MainMenu.cs: Add the new 2.0 constructor to help out people
5698         using the MainMenu in VS2005.
5700 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5701         
5702         * MdiChildContext.cs: Removed it, no longer used.
5703         * MdiClient.cs: Added missing 2.0 attributes.
5704         
5705 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5706         
5707         * InternalWindowManager.cs: Fix a NullRef with previous 
5708         changes for toolwindows.
5709         
5710 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5712         * Control.cs: 
5713         - Added AfterTopMostControl to allow for certain controls 
5714         to always stay on top when normal controls are brought to 
5715         front.
5716         
5717         * XplatUIWin32.cs: 
5718         - (DrawInversibleRectangle): Get window rectangle from Win32 
5719         in stead of from control, since Win32 doesn't calculate
5720         screen coords correctly from control's Location if it 
5721         have docked siblings.
5722         
5723         * MdiWindowManager.cs:
5724         - Correct the control menu popup location when clicked on
5725         the maximized form icon. (fixes #80223.1)
5726         - Don't show moving rectangle if mouse hasn't moved from
5727         the original clicked point.
5728         - Removed FormGotFocus handler (not used).
5729         - Calculate the control buttons location from the main
5730         window's size and not client size (fixes #79770).
5731         - Form is now closed when the form icon is double-clicked
5732         (fixes #79775). 
5733         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
5734         
5735         * InternalWindowManager.cs:
5736         - Moved some MDI-only methods to MdiWindowManager.
5737         - Removed unused properties and methods.
5738         - Unified method naming for methods handling wm messages.
5739         - Moved all message handling to seperate methods for
5740         each message.
5741         
5742         * ThemeWin32Classic.cs:
5743         - DrawManagedWindowDecorations now draws the title bar 
5744         with a gradient brush.
5745         - Add a CPDrawButtonInternal that allows us to specify
5746         light, normal and dark colors for the buttons (control 
5747         buttons for MDI children were drawn with the same light
5748         color as the background, therefore loosing the 3D effect).
5749         
5750         * SizeGrip.cs:
5751         - Add a CapturedControl property that is used to 
5752         determine the control to resize (defaults to parent). 
5753         Needed for MdiClient, since its SizeGrip's parent is
5754         MdiClient, but the control to resize is the main form.
5755         
5756         * MdiClient.cs:
5757         - Set SizeGrip's CapturedControl to the main form in order
5758         to resize the main form and not the MdiClient.
5759         - Override AfterTopMostControl to leave the scrollbars 
5760         always on top.
5762 2006-12-15  Daniel Nauck  <dna@mono-project.de>
5764         * ListView.cs: fixed ListViewItemCollection AddRange and
5765                         implemented ListViewItemCollection AddRange 2.0 support.
5767 2006-12-15  Daniel Nauck  <dna@mono-project.de>
5769         * ListViewGroup.cs: Add.
5770         * ListViewGroupCollection.cs: Add
5771         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
5772         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
5773                                 stub for ImageKey 2.0 support.
5775 2006-12-14  Mike Kestner  <mkestner@novell.com>
5777         * ListView.cs: add text padding to the autocalculation for columns
5778         of width -2.  Fixes #80207.
5780 2006-12-14  Mike Kestner  <mkestner@novell.com>
5782         * ListView.cs: add some index guarding for partial row navigation 
5783         logic.  Fixes #80250.
5785 2006-12-14  Mike Kestner  <mkestner@novell.com>
5787         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
5788         are added or inserted to the collection.  Fixes #81099.
5790 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
5792         * MenuAPI.cs: Closes menu when right click out side of popup
5793         it fix problem in ContextMenu and MainMenu. Fixes #80252.
5795 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5797         * ListViewItem.cs: Fix dumb error.
5799         * ListView.cs: Add Find and ContainsKey methods in 
5800         ListViewItemCollection, and also return true for IsReadOnly
5801         and IsFixedSize (changes for 2.0). 
5803 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
5805         * Control.cs: Allow Region to be set to null.
5807 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5809         * MdiWindowManager.cs: Remove unused (commented out) code.
5810         * Form.cs: When the MdiChild is maximized, the form needs 
5811         WM_NCMOUSELEAVE, so request it.
5812         * InternalWindowManager.cs: 
5813         - Added tooltips to control buttons.
5814         - Removed duplicated control button handling code.
5815         - Removed unused (commented out) code.
5816         
5817 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
5819         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
5820         was used because we must set cursor without trigger ChangeCursor event
5821         and without change Cursor control property. Fixes #79963.
5823 2006-12-12  Andreia Gaita  <avidigal@novell.com>
5824         
5825         * Control.cs: Check if Region setter value is null, and ignore
5827 2006-12-12  Jackson Harper  <jackson@ximian.com>
5829         * TextControl.cs: We were almost always drawing one more line then
5830         needed, since the GetLineByPixel will return the last line found
5831         at that pixel. In most cases though, we were invalidating up to
5832         the junction between two lines.
5833         - Improve debug code.
5835 2006-12-12  Chris Toshok  <toshok@ximian.com>
5837         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
5838         and FillReversibleRectangle.
5840         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
5841         and FillReversibleRectangle.
5843         * XplatUIWin32.cs: add stubs which do nothing for
5844         DrawReversibleFrame, DrawReversibleLine, and
5845         FillReversibleRectangle.
5847         * XplatUIOSX.cs: add stubs which raise NIE for
5848         DrawReversibleFrame, DrawReversibleLine, and
5849         FillReversibleRectangle.
5851         * XplatUIX11.cs: add working implementation for
5852         DrawReversibleFrame, DrawReversibleLine, and
5853         FillReversibleRectangle.
5854         
5855         * ControlPaint.cs: implement DrawReversibleFrame,
5856         DrawReversibleLine, and FillReversibleRectangle, by calling into
5857         the appropriate XplatUI method.
5859 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5861         * Form.cs: Make MdiClient have the focus even if it's
5862         not selectable, since it should receive WM_KEY* and WM_MOUSE 
5863         messages. Fixes #79907.
5864         
5865 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5867         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
5868         queried after the window is created.
5869         
5870         * XplatUIX11.cs: Added SendParentNotify to implement 
5871         WM_PARENTNOTIFY logic. Fixes #79965.
5872         
5873         * Control.cs: Added MakeParam.
5874         
5875 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5877         * MdiClient.cs: Resume Layout before setting window
5878         states (fixes #80201).
5880 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5882         * MenuAPI.cs: Deselect a menu item after performing
5883         the click (fixes #80197).
5885 2006-12-11  Jackson Harper  <jackson@ximian.com>
5887         * TextBoxBase.cs: We need to cap this value, since Maximum -
5888         ViewPortHeight can be less than zero.
5889         - Only do selection with the left mouse button.
5890         * TextBox.cs: Don't tell the world that we have a context menu.
5891         * Control.cs: New method so that we can control whether or not the
5892         context menu is visible outside MWF.
5894 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
5896         * ToolBarButton.cs: Fix text positon. 
5898 2006-12-11  Miguel de Icaza  <miguel@novell.com>
5900         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
5902         * Control.cs (DoubleBuffered): Add implementation.
5904         * Application.cs (OpenForms): Add.
5906 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
5908         * Form.cs: Use opacity instead of Opactiy to determine if we need
5909         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
5911 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
5913         * Control.cs: Fix NRE if Control.Site was set to null.
5915 2006-12-11  Chris Toshok  <toshok@ximian.com>
5917         * Control.cs: ControlCollection.Remove should return if the arg is
5918         null, and ControlCollection.SetChildIndex should raise a ANE.
5920 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
5922         * Control.cs: Verify value set for Dock property. Code formatting
5923         updates.
5925 2006-12-11  Jackson Harper  <jackson@ximian.com>
5927         * TextControl.cs: Draw the caret and the selection when a flag is
5928         set on the owner.
5929         * TextBoxBase.cs: We want to draw the caret and the selection for
5930         TextBox but not for TextBoxBase.
5931         - If the window is resized and scrolling is no longer needed (the
5932         whole doc is visible) set the scroll position to zero.
5933         - The default SelectWord (the one TextBox uses) should move the
5934         caret to the end of the word.
5935         - SelectAll moves the caret to the end of the selection.
5936         * TextBox.cs: We don't selectall on focus, we just do it when the
5937         control is created.
5938         
5939 2006-12-11  Mike Kestner  <mkestner@novell.com>
5941         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
5943 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5945         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
5946         2.0 support.
5947         * ListViewItem.cs: Add Name 2.0 property.
5949 2006-12-11  Andreia Gaita  <avidigal@novell.com>
5951         * TabControl.cs: Set visibility on selected or default tab 
5952         when tabcontrol handle is created, so that it's contents
5953         actually show up (duh). Fixes #80193
5954         Don't redraw the control if there is no handle created, as
5955         the selected index might be completely invalid. Added some tests
5956         to check for this.
5958 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
5960         * ToolBar.cs: Uses maximun width and height of all buttons as 
5961         button rectangle when ButtonSize specified, it looks strange but
5962         is what happens in Win32. Fixes #80189.
5964 2006-12-11  Jackson Harper  <jackson@ximian.com>
5966         * TextControl.cs: Need to track undo levels ourself, since
5967         compound actions will mess them up.
5969 2006-12-10  Andreia Gaita  <avidigal@novell.com>
5971         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
5972         SelectedIndex value is changed (even if it's not valid).
5973         Reset SelectedIndex to 0 when the handle is created and if
5974         the current index is invalid.
5975         Fixes SelectdeIndex unit tests and #80128
5977 2006-12-08  Chris Toshok  <toshok@ximian.com>
5979         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
5980         calls EndEdit, it needs to be called before we set current_cell to
5981         its new value.  Otherwise, we end up committing the value in the
5982         textbox to the new cell as well.  Fixes bug #80160.
5984 2006-12-08  Chris Toshok  <toshok@ximian.com>
5986         * Form.cs (set_CancelButton): if the button's DialogResult is
5987         None, set it to Cancel.  Fixes bug 80180.
5989 2006-12-08  Jackson Harper  <jackson@ximian.com>
5991         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
5992         to watch ourselves when setting the canvas size and setting the
5993         scrollbar values.
5995 2006-12-08  Chris Toshok  <toshok@ximian.com>
5997         * DataGrid.cs: comment out the two MakeTransparent calls for the
5998         time being so people using trunk (and not 1.2.2) on windows can
5999         actually use the datagrid.  This deals with bug #80151.
6001 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
6003         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
6004         Graphics.DrawImage (image, int, int, int, int) overload instead
6005         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
6006         the dpi difference and was blurring images it drew.
6007         [Fixes bug #79960]
6009 2006-12-08  Chris Toshok  <toshok@ximian.com>
6011         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
6012         rowcnt is 0 (such as with an empty datasource), and make sure we
6013         initialize not_usedarea.Y to cells.Y, so we don't draw over the
6014         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
6016 2006-12-08  Chris Toshok  <toshok@ximian.com>
6018         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
6019         grid.
6021 2006-12-08  Chris Toshok  <toshok@ximian.com>
6023         [ Fixes bug #80167 ]
6024         
6025         * ThemeWin32Classic.cs: don't draw the image if the button's flat
6026         style is FlatStyle.System.
6028         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
6029         ButtonBase.flat_style private, and switch uses of it to the public
6030         property.
6031         
6032 2006-12-08  Chris Toshok  <toshok@ximian.com>
6034         [ Fixes bug #80121 ]
6035         
6036         * ThemeWin32Classic.cs: center the caption text in the datagrid
6037         when we draw it.
6039         * DataGrid.cs: lessen the amount we add to the caption height from
6040         6 to 2.  6 was making it huge.
6042 2006-12-08  Andreia Gaita  <avidigal@novell.com>
6044         * UpDownBase: Handle MouseWheel call directly instead of capturing
6045         the inner textbox's OnMouseWheel. Fixes #80166
6047 2006-12-08  Jackson Harper  <jackson@ximian.com>
6049         * TextControl.cs: We need to invalidate the textbox when we empty
6050         it (how had this not been discovered before?)
6052 2006-12-08  Jackson Harper  <jackson@ximian.com>
6054         * TextBoxBase.cs: Reworked the mouse down code so I could get it
6055         to behave like MS, we now ignore the eventargs.Click and just
6056         track state ourself, which we were already doing anyways.
6057         - Constrain the double click handler to the double click size.
6058         
6059 2006-12-08  Chris Toshok  <toshok@ximian.com>
6061         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
6062         direction if that scrollbar isn't shown.  fixes bug #80158.
6064 2006-12-08  Andreia Gaita  <avidigal@novell.com>
6066         * NumericUpDown.cs: Update value on getter. Fixes #79950
6068 2006-12-08  Chris Toshok  <toshok@ximian.com>
6070         * MenuItem.cs: add back in the event cloning code.  I didn't know
6071         how to do it in the face of the EventHandlerList work i'd done
6072         last week.  Fixes bug #80183.
6074 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
6076         * Control.cs: Add an invalidate to the BackgroundImage setter.
6077         [Fixes 80184]
6079 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
6081         * ToolStrip*: Add some small properties reported by MoMA, fix event
6082         firing and default properties based off of unit tests, and add some
6083         attributes based off of the class status page.
6085 2006-12-07  Jackson Harper  <jackson@ximian.com>
6087         * TextBoxBase.cs: Take HideSelection into account when determining
6088         whether or not to show the selection.
6089         * RichTextBox.cs: After inserting the RTF into the document move
6090         the cursor to the beginning of the document.
6092 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
6094         * Control.cs: Remove static ArrayList "controls" which maintained
6095         a reference to every control created.
6096         * Application.cs: Create a static FormCollection to maintain a reference
6097         to every form created.  Use it in places that formerly enumerated through
6098         the controls one looking for forms.
6099         * Form.cs: Add and remove self from above FormCollection.
6101 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
6103         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
6104           not libgdk (though it makes me wonder why I didn't have any
6105           problems)
6107 2006-12-07  Chris Toshok  <toshok@ximian.com>
6109         [ you had to know this was coming after that last commit...]
6110         
6111         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
6112         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
6113         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
6114         XCopyArea).
6116 2006-12-07  Chris Toshok  <toshok@ximian.com>
6118         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
6119         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
6120         all the behavior we need for double buffering.
6122         * XplatUIDriver.cs: implement the 3 double buffer methods using a
6123         client side Bitmap, just like the old Control-based double buffer
6124         code did.  The methods are virtual, so each XplatUI driver
6125         subclass can replace the implementation to use a faster, platform
6126         specific approach.
6128         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
6129         double buffer code, and clean things up a bit in the process.
6131 2006-12-06  Chris Toshok  <toshok@ximian.com>
6133         * Control.cs: reindent WndProc.
6135 2006-12-06  Chris Toshok  <toshok@ximian.com>
6137         [ I wanna be like BenM when I grow up ]
6138         
6139         * Hwnd.cs: create a single static Graphics object on the static
6140         Bitmap we create.  use this for our text measurements.
6142         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
6143         This was causing us to allocate a backbuffer for every control,
6144         even when it wasn't flagged as double buffered.  Instead use the
6145         single graphics instance.  This might have implications for
6146         multithreaded applications.  If we run into problems we can switch
6147         to creating 1 Graphics per control, on the static Hwnd bitmap.
6149         this change nets us a 7M savings in private dirty mappings when
6150         running FormsTest.exe.
6152 2006-12-06  Chris Toshok  <toshok@ximian.com>
6154         * ListView.cs: the BackgroundImage override is just to set
6155         attributes.  chain up to base.BackgroundImage.
6157         * RichTextBox.cs: same.
6159         * ToolBar.cs: same, but we need to also redraw the toolbar when it
6160         changes, so instead a handler for BackgroundImageChanged.
6161         
6162         * Control.cs: make background_image private.
6164 2006-12-06  Chris Toshok  <toshok@ximian.com>
6166         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
6167         sure we even need this assignment, but roll with it for now.
6169         * Control.cs: make the cursor field private.
6171 2006-12-06  Chris Toshok  <toshok@ximian.com>
6173         * Form.cs: we don't need to explicitly set ImeMode to
6174         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
6175         behavior in the face of ImeMode.Inherit.
6177         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
6178         change the ctor's assignment to use ImeMode instead of ime_mode.
6180         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
6181         ImeModeInherit.  Only check for the parent's imemode (and return
6182         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
6183         This fixes the button unit test, which sets both ImeMode and
6184         DefaultImeMode to ImeMode.Disable.
6186         also make the ime_mode field private.
6188 2006-12-06  Chris Toshok  <toshok@ximian.com>
6190         * Control.cs: make control_style private.
6192         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
6193         setting the styles to true, then setting them to false instead of
6194         reverting to their previous values.
6196         also, call SetStyle on the scrollbars instead of using
6197         control_style directly.
6199 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
6201         * FormCollection.cs: Implement. [2.0]
6203 2006-12-06  Chris Toshok  <toshok@ximian.com>
6205         * Control.cs: make tab_stop private.
6207         * Label.cs: set TabStop, not tab_stop.  reformat some event
6208         add/remove methods to make them more compact.
6210 2006-12-06  Chris Toshok  <toshok@ximian.com>
6212         * RadioButton.cs: fix TabStop handling.
6214 2006-12-06  Chris Toshok  <toshok@ximian.com>
6216         * TextBox.cs: remove the explicit assignments to has_focus.
6217         Control does that.
6219         * ButtonBase.cs: remove the assignment to has_focus.  Control will
6220         manage that.
6221         
6222 2006-12-06  Chris Toshok  <toshok@ximian.com>
6224         * ButtonBase.cs: remove all uses of is_enabled from this code.
6225         it's always true when any of the code containing the checks is
6226         executed.
6228 2006-12-06  Chris Toshok  <toshok@ximian.com>
6230         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
6231         with different semantics (some are present in both 1.1 and 2.0
6232         profiles) so that we match MS's behavior in our unit tests.
6234 2006-12-06  Jackson Harper  <jackson@ximian.com>
6236         * TextControl.cs: Make this operation undoable.
6237         * TextBoxBase.cs: Factor the border width into the preferred
6238         height.
6239         - implement Modified as per the spec.
6241 2006-12-06  Chris Toshok  <toshok@ximian.com>
6243         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
6245 2006-12-06  Chris Toshok  <toshok@ximian.com>
6247         * Control.cs: make right_to_left and context_menu fields private.
6249 2006-12-06  Chris Toshok  <toshok@ximian.com>
6251         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
6252         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
6253         Control.child_controls private.  switch all uses over to
6254         Control.Controls.
6256 2006-12-06  Chris Toshok  <toshok@ximian.com>
6258         * System.Windows.Forms/GroupBox.cs,
6259         System.Windows.Forms/AccessibleObject.cs,
6260         System.Windows.Forms/ErrorProvider.cs,
6261         System.Windows.Forms/Control.cs,
6262         System.Windows.Forms/UpDownBase.cs,
6263         System.Windows.Forms/ScrollBar.cs,
6264         System.Windows.Forms/DateTimePicker.cs,
6265         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
6266         System.Windows.Forms/ToolTip.cs,
6267         System.Windows.Forms/RadioButton.cs,
6268         System.Windows.Forms/LinkLabel.cs,
6269         System.Windows.Forms/Splitter.cs,
6270         System.Windows.Forms/TextBoxBase.cs,
6271         System.Windows.Forms/ToolStripTextBox.cs,
6272         System.Windows.Forms/ContainerControl.cs,
6273         System.Windows.Forms/ThemeWin32Classic.cs,
6274         System.Windows.Forms/SizeGrip.cs,
6275         System.Windows.Forms/ToolStripDropDown.cs,
6276         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
6277         private.  switch all uses over to Control.Parent.
6279 2006-12-06  Chris Toshok  <toshok@ximian.com>
6281         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
6282         Control does this before calling emitting these events.
6284         * TabControl.cs: same.
6286         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
6287         Control.client_rect.
6289         * ButtonBase.cs: use the ClientSize property instead of the
6290         client_size field.
6292         * ScrollableControl.cs: same.
6294         * Control.cs: another pass at making properties private.  also,
6295         move the initialization of tab_stop to the ctor.
6297 2006-12-05  Andreia Gaita <avidigal@novell.com>
6299         * TabControl.cs: Let the selected index be set freely if the 
6300         control handle is not yet created.
6302 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
6304         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
6305         internal until I can rewrite DefaultLayout.
6306         * ToolStrip.cs: Fix build error and some general cleaning.
6307         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
6308         Fix build errors caused by making some of Control's fields private.
6310 2006-12-05  Jackson Harper  <jackson@ximian.com>
6312         * TextControl.cs: Redo Insert a little so that it use IndexOf
6313         instead of Split, this prevents it from messing up on things like
6314         \n\n\n. Also more effecient since the split array doesn't need to
6315         be created.
6316         * TextBoxBase.cs: AppendText doesnt handle multiline and non
6317         multiline text differently, this is the first of many fixes that
6318         will make multiline/non-multiline the same thing as far as the
6319         TextBoxBase is concerned.
6320         - Don't split the text and insert lines, this can lose some line
6321         endings (like is the last line a soft or hard break). Instead use
6322         the new Insert.
6323         - Fix an off by one when combining all the lines in the Text
6324         getter.
6325         - Remove separate multiline handling from the Text getter/setter.
6327 2006-12-05  Chris Toshok  <toshok@ximian.com>
6329         * ButtonBase.cs: a few changes:
6331         - don't reinitialize internal Control fields in the ctor when they
6332         have the same values as Control sets them.
6334         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
6335         this before calling those methods.
6337         - we don't need to call Refresh for anything.  use Invalidate
6338         instead.
6340         - OnEnabledChanged doesn't need to redraw at all - Control.cs
6341         calls Refresh in its OnEnabledChanged.
6342         
6343         - several of the events we were registered for in the ctor to
6344         redraw ourselves already include calls to Invalidate in the
6345         property setters that raise the events.  remove the extra
6346         invalidation.
6348         - reformat a switch statement that was 83274658 columns wide.
6349         
6350 2006-12-05  Mike Kestner  <mkestner@novell.com>
6352         * ComboBox.cs: fix a unit test regression from a TextBox
6353         SelectionLength return of -1 when there's no selection.  
6355 2006-12-05  Chris Toshok  <toshok@ximian.com>
6357         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
6358         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
6359         cleaning up some of the internal Control fields being used by
6360         subclasses.
6362 2006-12-05  Mike Kestner  <mkestner@novell.com>
6364         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
6365         listbox after AddImplicit calls since it defaults to hidden. Add a 
6366         hack to preserve requested heights across DropDownStyle changes.
6368 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
6370         * PropertyGrid.cs: Hide FindFirstItem method from public API.
6372 2006-12-05  Chris Toshok  <toshok@ximian.com>
6374         * DataGridView.cs: fix compiler warnings.
6376         * PrintControllerWithStatusDialog.cs: same.
6378         * ToolBar.cs: same.
6380         * FolderBrowserDialog.cs: same.
6382         * Splitter.cs: same.
6384         * DataGridViewComboBoxCell.cs: same.
6386         * XplatUIWin32.cs: same.
6388         * PictureBox.cs: same.
6390         * Win32DnD.cs: same.
6392         * PageSetupDialog.cs: same.
6394         * FileDialog.cs: same.
6396         * PrintDialog.cs: same.
6398         * DataGridTextBoxColumn.cs: same.
6400         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
6402 2006-12-05  Chris Toshok  <toshok@ximian.com>
6404         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
6405         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
6406         System.ComponentModel.EventHandlerList work.
6408 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
6410         * DrawTreeNodeEventArgs.cs: Added.
6412 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6413         
6414         * InternalWindowManager.cs: Remove an unused field.
6415         
6416 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6418         * InternalWindowManager.cs:
6419         - Save the point where the title bar is clicked.
6420         
6421         * MdiWindowManager.cs:
6422         - Only allow moving of the window as long as the 
6423         clicked point on the title bar does not get out of
6424         MdiClient's rectangle. Fixes #79982.
6425         
6426         * MdiClient.cs:
6427         - Added Horizontal/VerticalScrollbarVisible.
6428         - Simplified the scrollbar sizing algorithm.
6429         - Cache the difference in scrolled value in
6430         H/VBarValueChanged and move the calculation out
6431         of the for loop.
6433 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6435         * Control.cs: Make the Console.WriteLine in WndProc 
6436         write more info.
6438 2006-12-05  Chris Toshok  <toshok@ximian.com>
6440         * ToolStripManager.cs, ToolStripButton.cs,
6441         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
6442         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
6443         ToolStripSplitButton.cs, ToolStripSeparator.cs,
6444         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
6445         ToolStripProgressBar.cs, ToolStripContainer.cs,
6446         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
6447         to using System.ComponentModel.EventHandlerList.
6449 2006-12-04  Chris Toshok  <toshok@ximian.com>
6451         * LinkLabel.cs: fix up compiler warnings.
6453         * TableLayoutSettings.cs: same.
6455         * TreeView.cs: same.
6457         * ToolBar.cs: same.
6459         * TabControl.cs: same.
6461         * RichTextBox.cs: same.
6463         * ListViewItem.cs: same.
6465         * PropertyGrid.cs: same.
6467         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
6469         * ToolTip.cs same.
6471         * TextRenderer.cs: fix up compiler warnings.
6473         * Label.cs: same.
6475         * Form.cs: corcompare fixes.
6477         * PictureBox.cs: fix up compiler warnings.
6479         * ImageListStreamer.cs: same.
6481         * TrackBar.cs: corcompare fix.
6483         * Control.cs: fix up compiler warnings.
6485         * SplitterPanel.cs: same.
6487         * NumericTextBox.cs: same.
6489         * ImageList.cs: same.
6491         * StatusStrip.cs: same.
6493         * ProgressBar.cs: corcompare fix.
6495         * ToolStripButton.cs: fix up compiler warnings.
6497         * ToolStripStatusLabel.cs: same.
6499         * ToolStripSplitButton.cs: same.
6501         * ToolStripSeparator.cs: same.
6503         * ToolStripProgressBar.cs: same.
6505         * ToolStripDropDownMenu.cs: same
6507         * ToolStripDropDown.cs: same.
6509         * ToolStripDropDownButton.cs: same.
6511         * ToolStrip.cs: same.
6513         * ToolStripControlHost.cs: same.
6515         * ToolStripContentPanel.cs: same.
6517         * ToolStripDropDown.cs: same.
6519         * ToolStripContainer.cs: same.
6521         * ToolStripPanel.cs: same, and add "new" where we need it to work
6522         with the new ArrangedElementCollection.
6524         * ToolStripItemCollection.cs: add "new" where we need it to work
6525         with the new ArrangedElementCollection.
6527 2006-12-04  Andreia Gaita <avidigal@novell.com>
6529         * TabControl.cs: Fix default tab selection to after TabControl
6530         gets focus and not before. Fixes #80128
6532 2006-12-04  Chris Toshok  <toshok@ximian.com>
6534         * DataGridTableStyle.cs: remove the gross calling of
6535         datagrid.Refresh from here.  It's a broken idea and it doesn't
6536         work anyway.
6538         * DataGrid.cs: instead, just register/unregister from the
6539         DataGridTableStyle events in CurrentTableStyle.  we play it
6540         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
6541         even though some would most likely not require it.  Fixes bug
6542         #80115 (and one portion of #80117 as a side effect).
6544 2006-12-04  Chris Toshok  <toshok@ximian.com>
6546         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
6547         so the textbox (if any) goes away.  Fixes bug #80117.
6549 2006-12-04  Chris Toshok  <toshok@ximian.com>
6551         * DataGridColumnStyle.cs: set the column's readonly property
6552         initially based on the property descriptor's IsReadOnly.  Fixes
6553         bug #80044.
6555 2006-12-04  Chris Toshok  <toshok@ximian.com>
6557         * ComboBox.cs: wrap the dropdown style changing work in
6558         SuspendLayout/ResumeLayout.  Fixes bug #79968.
6560 2006-12-04  Jackson Harper  <jackson@ximian.com>
6562         * TextBoxBase.cs: Fix off by one, since these are one-based.
6563         * TextBox.cs: Select all the text when we get focus.  The TextBox
6564         does this but the RTB does not.
6566 2006-12-04  Chris Toshok  <toshok@ximian.com>
6568         * DataGridTextBoxColumn.cs: remove some spew.
6570         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
6571         but some part of me is saying "it shouldn't be here.."  At any
6572         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
6573         setting the value.
6575 2006-12-04  Chris Toshok  <toshok@ximian.com>
6577         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
6578         to reassign the propertydescriptor.
6580 2006-12-04  Jackson Harper  <jackson@ximian.com>
6582         * TextBoxBase.cs:
6583         * TextControl.cs: Remove some unused variables.  Maybe this will
6584         patch things up between mike and I.
6585         - don't split lines less then one char wide, if the viewport is
6586         that small text won't be visible anyways.
6587         
6588 2006-12-04  Jackson Harper  <jackson@ximian.com>
6590         * TextBoxBase.cs: Default selection length is -1, need to do some
6591         more testing on windows to see when this is used for the property.
6592         - Redid the Lines [] property to that we properly remove soft line
6593         breaks
6594         - added support for preserving carriage returns
6595         -  CanUndo is not a variable like 'is undo enabled' it just returns
6596         true if there is undo operations available.
6597         - AppendText doesn't need to grab the last tag itself anymore,
6598         this happens automatically when we move the cursor.
6599         * TextControl.cs: Add CompoundActions to the undo class. This
6600         allows combining the other operations into one big option.  ie a
6601         paste will combine { delete old, insert new, move cursor }
6602         - Add InsertString undo operation
6603         - New method for deleting multiline text
6604         - Add carriage returns to lines. So we can preserve carriage
6605         returns when text is 'roundtripped'
6607 2006-12-04  Chris Toshok  <toshok@ximian.com>
6609         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
6610         minimum 0.  Fixes the scrollbar exception in bug #80136.
6612 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6614         * MdiClient.cs: 
6615         * MdiWindowManager: Removed unused fields and methods.
6616         
6617 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6618         
6619         * StatusBar.cs: Update all panels when a AutoSize=Contents
6620         panel needs updating.
6621         
6622         * StatusBarPanel.cs: Remove twidth and only use initialize.
6623         Fixes #80031.
6624                 
6625 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6627         * Form.cs: When a form's MdiParent is set add it directly
6628         on top of the z-order in stead of relying on MdiClient's
6629         ActivateChild to do it. Fixes #80135.
6630         
6631         * MdiClient.cs: 
6632         - Remove original_order, mdi_child_list is already doing
6633         the same thing.
6634         - Create mdi_child_list on construction in
6635         stead of first use (avoids a few null checks).
6637         * MenuItem.cs: Use an already existing list of mdi children
6638         to get the correct order of children and remove the other
6639         redundant list.
6641 2006-12-04  Chris Toshok  <toshok@ximian.com>
6643         * PropertyGridView.cs: cached_splitter_location is only used in
6644         !DOUBLEBUFFER code.
6646         * PropertyGrid.cs: implement the ComComponentNameChanged event
6647         using Events, hoping that would fix the warning.  Looks like a
6648         compiler bug instead (#80144).
6650         * PropertyManager.cs: remove unused method.
6652 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
6654         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
6655         include parentesis to fix expression evaluation. Fixes #79634.
6657 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
6658         
6659         * MenuAPI.cs:
6660         - Changes to fix behavior in Menu control, some reported in #80097
6661         and other detected during behavior refactory like a select event
6662         problems.
6663         - Remove unneded "if's" conditions.
6664         - Created an internal to flag when popup is active in control, we need 
6665         it because in .NET you can have menu active but without popup active
6666         when you active menu using popup without visible items.
6667         - Mimic win32 behavior for Select and Popup events.  
6668         - Dont open popup menu when you dont have visible subitems.
6669         - Do nothing when click on disabled menu item.
6670         - Some small changes to follow the coding style guidelines.
6671         - Unselect menu only when another control gives focus. Fixes #80097.
6672         - Remove unused code.
6673         
6674         * MenuItem.cs: internal VisibleItems method to check if menu
6675         theres visible subitems, it will be usefull to fix some 
6676         behavior in Menu control.
6677         
6678 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
6679         
6680         * Timer.cs: Tag property for 2.0 profile.
6681         
6682 2006-12-01  Chris Toshok  <toshok@ximian.com>
6684         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
6685         
6686         * Win32DnD.cs: comment out some unused fields.
6688         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
6689         some unused properties/methods.
6691         * XplatUIX11.cs: fix MousePosition so we override the base class's
6692         property instead of conflicting with it.
6694         * PictureBox.cs: comment out some unused fields
6696         * OSXStructs.cs: make some struct fields public.
6698         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
6699         MousePosition so we override the base class's property instead of
6700         conflicting with it.
6702         * X11Dnd.cs: comment out some unused fields
6704         * X11DesktopColors.cs: fix some struct field visibility to quiet
6705         the compiler.
6707         * X11Dnd.cs: remove some debug code.
6709         * ThemeClearlooks.cs: comment out unused field.
6711         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
6713         * ThemeGtk.cs: comment out some unused pinvokes.
6715         * Timer.cs: remove some unused fields.
6717         * ThemeClearlooks.cs: comment out unused field.
6719         * UpDownBase.cs: comment out unused field.
6721         * DataObject.cs: comment out unused field.
6723         * DataGridBoolColumn.cs: reomve unused field.
6725         * DataGrid.cs: remove unused field.
6727         * Cursor.cs: remove old ToBitmap code.
6729         * ControlPaint.cs: remove unused method.
6731         * ScrollBar.cs: remove unused fields.
6733         * ComboBox.cs: remove unused field, and chain up to
6734         AccessibleObject ctor.
6736         * ListBox.cs: remove unused field.
6738         * ButtonBase.cs: wrap a couple fields in NET_2_0.
6740         * GridEntry.cs: remove unused fields.
6742         * Binding.cs: remove unused fields.
6744         * AxHost.cs: remove unused method.
6746         * ContainerControl.cs: remove unused field.
6748         * ScrollableControl.cs: remove unused fields.
6750 2006-12-01  Chris Toshok  <toshok@ximian.com>
6752         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
6753         the Where/WhereString stuff.  it's easy enough to CWL
6754         Environment.StackTrace.
6756         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
6757         unused private fields.
6759 2006-12-01  Jackson Harper  <jackson@ximian.com>
6761         * TextControl.cs: Do not update the view while inserting multiline
6762         text. If we update the view we might wrap lines, before entering
6763         the new lines, which causes the new line insertion calculations to
6764         be totally fubared.
6765         - Remove an old TODO
6766         - Make debug output a little nicer
6767         
6768 2006-12-01  Chris Toshok  <toshok@ximian.com>
6770         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
6772 2006-12-01  Chris Toshok  <toshok@ximian.com>
6774         [ fix the majority of the CS0108 warnings we've been suppressing ]
6775         
6776         * TreeView.cs: mark BackgroundImageChanged as 'new'.
6778         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
6779         to "LayoutToolBar" to quiet mcs.
6780         
6781         * TabControl.cs: mark our ControlCollection class as 'new'.
6783         * TextBoxBase.cs: mark some events as 'new'.
6785         * Splitter.cs: TabStop is 'new'.
6787         * ControlBindingsCollection.cs: mark a few methods as new since
6788         they change the visibility from protected to public.
6790         * RadioButton.cs: DoubleClick -> base class, and remove unused
6791         HaveDoubleClick.
6793         * MonthCalendar.cs: ImeMode property -> base class, and mark many
6794         events as new.
6796         * NumericUpDown.cs: TextChanged -> base class.
6798         * CheckedListBox.cs: mark our ObjectCollection class as new to
6799         quiet mcs.
6801         * FolderBrowserDialog.cs: make HelpRequest event new and have it
6802         muck with the base class.
6804         * StatusBar.cs: fix some mcs warnings about Update being the same
6805         name as a base class method.
6807         * RichTextBox.cs: mark some events as new, and make them do things
6808         to the base class impl.
6810         * UserControl.cs: mark TextChanged as new, and have it manipulate
6811         base.TextChanged.
6813         * UpDownBase.cs: mark some things new.
6815         * CheckBox.cs: mark DoubleClick "new", and add some text about
6816         what we need to look at.
6818         * Panel.cs: make the events "new", and manipulate the base
6819         version.  these are just here for attributes.
6821         * AccessibleObject.cs: make owner private.
6823         * Control.cs: deal with AccessibleObject.owner being private.
6824         cache our own copy if we need it.
6826         * Button.cs: add "new" to the DoubleClickEvent.
6828         * ListBox.cs: no need to track our own has_focus here.  let
6829         Control.has_focus do it for us.  Also some other work to clear up
6830         warnings about not overriding base class methods of the same name.
6831         
6832         * ComboBox.cs: clear up some warnings about not override base
6833         class methods of the same name.
6835 2006-12-01  Chris Toshok  <toshok@ximian.com>
6837         * Form.cs: flag a few things as "new" to quiet some of the mcs
6838         warnings.
6840         * AxHost.cs: same.
6842         * PrintPreviewDialog.cs: same.
6844         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
6845         now DGV isn't so horrible on the class status page.  also, move
6846         all events to using System.ComponentModel.EventHandlerList.  my
6847         wrists hurt.
6849 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6851         * MdiWindowManager.cs:
6852         - Set form to active mdi child if shown,
6853         and update the active mdi child to the next 
6854         remaining child in the z-order if the form is hidden.
6856         * Form.cs: 
6857         - Track if the form has been visible and if its 
6858         visibility is beeing changed, so that the MdiClient
6859         can properly decide the ActiveMdiChild. The MdiClient 
6860         cannot track this since the form can change visibility 
6861         before MdiClient is created.
6863         * MdiClient.cs:
6864         - Don't activate anything of the parent form is changing
6865         its visibility.
6866         - Rework ActiveMdiChild to only return visible mdi 
6867         children and take into account several other corner 
6868         cases.
6870 2006-12-01  Chris Toshok  <toshok@ximian.com>
6872         * IBindableComponent.cs: new 2.0 interface.
6874 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
6876         * DataGrid.cs: Font for caption area is bold by default.
6878 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
6880         * Menu.cs: Tag property for 2.0.
6881         
6882 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
6884         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
6885         
6886 2006-12-01  Chris Toshok  <toshok@ximian.com>
6888         * TreeView.cs: doh, the Begin* events should be
6889         TreeViewCancelEventHandler.
6891 2006-12-01  Chris Toshok  <toshok@ximian.com>
6893         * Form.cs: Form.ControlCollection already stores off the
6894         form_owner field.  don't access the base class's internal "owner"
6895         field.
6897         * Control.cs: make all the fields in Control.ControlCollection
6898         private.  there's no need for any internal fields here.
6900 2006-12-01  Chris Toshok  <toshok@ximian.com>
6902         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
6903         OnHandleCreated.  Fixes bug #80109.
6905 2006-12-01  Chris Toshok  <toshok@ximian.com>
6907         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
6908         SplitContainer.cs, Control.cs, StatusStrip.cs,
6909         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
6910         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
6911         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
6912         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
6913         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
6914         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
6915         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
6916         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
6917         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
6918         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
6920         do most of the work to convert our code over to use
6921         System.ComponentModel.Component.Events for
6922         adding/removing/dispatching events.
6925 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
6927         * DataGridView.cs: Fix an ArgumentNullException reported 
6928         twice today in IRC.
6930 2006-11-30  Mike Kestner  <mkestner@novell.com>
6932         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
6933         grabbed listbox.  Fixes #80036 and #80101.
6935 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
6937         * Message.cs: Changed ToString() to match MS.
6938         
6939 2006-11-30  Jackson Harper  <jackson@ximian.com>
6941         * TextBoxBase.cs: You can still change the selected text on a read
6942         only textbox.
6943         * TextControl.cs: Lower magic number for wrap calculations. This
6944         lets text get closer to the right (far) edge.
6946 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
6948         * Control.cs: Tweak 2.0 layout properties.
6949         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
6950         * TextRenderer.cs: Add a new overload.
6951         * ToolStrip*: Huge amount of changes and new features.
6953 2006-11-30  Mike Kestner  <mkestner@novell.com>
6955         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
6956         scroll range correct.  Fixes #79994.
6958 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
6960         * MdiWindowManager.cs: Update main form's text when
6961         a form is closed. (fixes #80038)
6962         
6963 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
6965         * ToolBar.cs:
6966         - Fix an regression in ButtonSize.
6967         - Get ImeMode default value change to "Disable".
6968         - Get ShowTooltips default value change to true, default value is 
6969         "false" but after make a test in .NET we get "true" result as default.
6970         
6971 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
6973         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
6975 2006-11-29  Chris Toshok  <toshok@ximian.com>
6977         * XplatUIWin32.cs (GetWindowTransparency): check return value of
6978         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
6979         SetWindowTransparency hasn't been called.
6981 2006-11-29  Chris Toshok  <toshok@ximian.com>
6983         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
6984         if it's supported.
6985         (set_AllowTransparency): reorder things a little so that the
6986         WS_EX_LAYERED style is removed properly.
6988 2006-11-29  Chris Toshok  <toshok@ximian.com>
6990         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
6991         
6992         * Form.cs: only call the XplatUI transparency method (get/set) if
6993         SupportsTransparency says it's supported. Otherwise fallback to
6994         doing nothing (in the set case) or returning the instance field we
6995         cache (in the get case).
6997         * XplatUIStructs.cs: add TransparencySupport flag enum.
6998         
6999         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
7000         change to SupportsTransparency.
7002         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
7003         TransparencySupport.None from SupportsTransparency.
7005         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
7006         TransparencySupport.Set from SupportsTransparency.
7008         * XplatUIWin32.cs: implement GetWindowTransparency calling
7009         GetLayeredWindowAttributes, and implement SupportsTransparency by
7010         checking whether or not both
7011         GetWindowTransparency/SetWindowTransparency are available
7012         entrypoints.  We need to do this since SetWindowTransparency is
7013         available as of win2k, but GetWindowTransparency requires winxp.
7014         yay win32 api.
7016         * XplatUI.cs: Add GetWindowTransparency, and change
7017         SupportsTransparency to allow for either/both Get/Set.
7019 2006-11-29  Chris Toshok  <toshok@ximian.com>
7021         * DataGrid.cs: keep from going into an infinite loop redrawing a
7022         datagrid that has no datasource.  Fixes bug #80033.
7024 2006-11-29  Chris Toshok  <toshok@ximian.com>
7026         * MenuItem.cs: fix the NRE when we assign text (and therefore call
7027         Invalidate) before the mainmenu has been assigned to a control.
7029 2006-11-29  Chris Toshok  <toshok@ximian.com>
7031         * DataGrid.cs: detect when we should be double the double click
7032         row/column autosize stuff, although that codepath has yet to be
7033         written.  part of the work for bug #79891.
7035 2006-11-29  Chris Toshok  <toshok@ximian.com>
7037         * Binding.cs (SetControl): fix unit test.
7039 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7041         * PageSetupDialog.cs: Validate the margins and set them in
7042         PageSettings. 
7043         * NumericTextBox.cs: New class to mimic the behavior of the
7044         textboxes used in the printing dialogs.
7046 2006-11-29  Andreia Gaita  <avidigal@novell.com>
7047         
7048         * Form.cs: Revert previous change (remove call UpdateBounds
7049         from form constructor), because it messes with the handle creation
7050         order, and that one needs lots and lots of love.
7051         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
7052         for valid printer and throw InvalidPrinterException if document
7053         is set but printer not valid), adding a MonoTODO. Once 
7054         handle creation is done properly, we can put this back in.
7056 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
7058         * MenuItem.cs: Create a invalidate method for menu item, to be
7059         calling from set text, it make text changes to imadiate update
7060         on screen. Fixes #80013. 
7061         
7062 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
7064         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
7065         fixes bug #80070 and some other problem on toolbar buttons
7066         layout.
7068 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
7070         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
7071         with dotted brush.      Fixes #79564
7072         
7073 2006-11-28  Andreia Gaita  <avidigal@novell.com>
7075         * Form.cs: Removed call to UpdateBounds on Form
7076         constructor, it was causing a call to CreateHandle
7077         before it was supposed to.
7078         * PrintControllerWithStatusDialog: Applied patch
7079         by Chris Toshok to hide controller when there are
7080         no printers available.
7081         PrintDialog.cs: initialize printer settings to 
7082         null - correct DefaultValues test #5
7083         * PrintPreviewControl.cs: Move PrintController
7084         initialization to GeneratePreview
7085         * PrintPreviewDialog.cs: 
7086         - Remove Preview generation     from Document_set(). It is 
7087         called on OnPaint
7088         - Throw InvalidPrinterException on CreateHandle if
7089         a Document is set but there are no printers or 
7090         printer is not valid.
7091         * ThemeWin32Classic: don't paint PrintPreviewControl
7092         if there is nothing to paint    
7094 2006-11-28  Miguel de Icaza  <miguel@novell.com>
7096         * Form.cs: Add another popular method.
7098         * TabPage.cs: ditto.
7100 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7102         * MenuItem.cs: Fixed a warning.
7103         * InternalWindowManager: Fixed a warning.
7105 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7107         * MenuItem.cs:
7108         - When cloning a menu also clone MdiList and clone the 
7109           window menu items properly (as the forms and menuitems
7110           are kept in an internal hashtable, these need updating 
7111           as well)
7112         - Rewrote the window menu code, menu items are added in the
7113           order the forms were added to their parent, and they are
7114           updated every time the window menu is shown (before the
7115           list was only generated once, in the current order of the
7116           forms, and would never be updated). A checkmark is shown
7117           next to the item corresponding to the active mdi child.
7119 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7121         * XplatUIStructs.cs: 
7122         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
7123         
7124         * XplatUIWin32.cs: 
7125         - Added TME_NONCLIENT to TMEFlags.
7126         - Handles WM_NCMOUSEMOVE in GetMessage to 
7127           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
7129         * MdiWindowManager:
7130         - Now merges mdi child menu to parent menu when maximized.
7131         - Recalculate NC areas of both mdi child and mdi parent. 
7132           Fixes #79757 (4).
7133           on window state and size changes.Fixes #79844 (3).
7134         - Handle WM_NCCALCSIZE to properly calculate borders.
7136         * Form.cs:
7137         - Add/remove to the mdi containers list of mdi children 
7138           in the order they are added.
7139         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
7140           to the maximized mdi child.
7141         
7142         * InternalWindowManager.cs:
7143         - Only execute a click on the control buttons on the mouse up,
7144           not on the mouse down. Show the state of the button 
7145           (was only showing Normal state, never Pressed state). The
7146           pressed button now follows the mouse (if you click the Close 
7147           button and move the mouse over the Maximize button, the 
7148           Maximize button will be shown as pressed). Since Win32 does
7149           not generate WM_NCLBUTTONUP if you release the button outside
7150           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
7151           it as a mouse up.
7152         
7153         * ThemeWin32Classic.cs:
7154         - Draw a missing border around mdi child forms. Fixes #79844 (2).
7156         * MdiClient.cs:
7157         - Added a list of forms which contains the order the forms are
7158           added to the mdi parent.
7159         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
7160         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
7161         - If the active form changes set the scrollbars to the top
7162           of the Z order, otherwise the form could hide them.
7163         - Scrollbars are now sized according to ClientSize, not 
7164           to Size, and they take into account the other scrollbar
7165           to determine maximum.
7166         
7167 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
7168         
7169         * XplatUI.cs:
7170         * XplatUIDriver.cs:
7171         * XplatUIX11.cs:
7172         * XplatUIWin32.cs:
7173         * XplatUIOSX.cs:
7174         - Added RequestAdditionalWM_NCMessages for windows to 
7175           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
7176           Currently only implemented in XplatUIWin32.
7178 2006-11-27  Chris Toshok  <toshok@ximian.com>
7180         * Hwnd.cs: only add the hwnd to the windows hash in
7181         set_WholeWindow and set_ClientWindow if whole_window/client_window
7182         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
7184 2006-11-27  Mike Kestner  <mkestner@novell.com>
7186         * ComboBox.cs: remove redundant OnDropDown call.  It is called
7187         from the ComboListBox.ShowWindow code. Fixes #79969.
7189 2006-11-27  Chris Toshok  <toshok@ximian.com>
7191         * Hwnd.cs: remove the setters for ExposePending and
7192         NCExposePending - noone uses them.
7194 2006-11-27  Jackson Harper  <jackson@ximian.com>
7196         * TextControl.cs: new param for ReplaceSelection which determines
7197         whether we select the new selection, or set the cursor to the end
7198         of the new selection.
7199         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
7200         pasting, select the new text.
7201         * RichTextBox.cs: Use new param for ReplaceSelection.
7203 2006-11-27  Jackson Harper  <jackson@ximian.com>
7205         * TextBoxBase.cs: Set the selection to the caret after the caret
7206         is moved, otherwise they get out of sync.
7208 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
7210         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
7211         it fixes #80015
7213 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
7215         * ThemeWin32Classic.cs: 
7216         - Fix toolbar drop down arrow position.
7217         - Fix drop down appearance when ToolBar.Appearance is normal,
7218         it fixes #80018.
7219         
7220 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
7222         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
7223         * Control.cs: Same.
7224         * UpDownBase.cs: Same.
7225         * ButtonBase.cs: Same.
7226         * ScrollBar.cs: Same.
7227         * TrackBar.cs: Same.
7228         * PictureBox.cs: Same.
7229         * UserControl.cs: Same.
7230         * Label.cs: Same.
7231         * ListControl.cs: Same.
7232         * TextBoxBase.cs: Same.
7233         * ListView.cs: Same.
7234         * RichTextBox.cs: Same.
7235         * TreeView.cs: Same.
7237 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
7239         * PrintDialog.cs:
7240         - Text label for where 
7241         - Text label comment was not shown
7243 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
7245         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
7247 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
7249         * InternalWindowManager.cs: 
7250         - Handle WM_PARENTNOTIFY to activate the form
7251         if any child control is clicked.
7252         - The form is only sizable if not minimized.
7254         * MdiWindowManager.cs:
7255         - Save the IconicBounds if the form is moved.
7256         - Rework SetWindowState, now the window bounds 
7257         are stored only if the old window state is Normal.
7258         
7259         * MdiClient.cs:
7260         - In SetWindowStates store the old window state if 
7261         the window is maximized and restore window state if
7262         the window looses focus.
7263         - Don't handle any scrollbar value changes if 
7264         initializing the scroll bars. Fixes #79771.
7265         - Reworked ArrangeIconicWindows. Current algorithm
7266         tests bounds agains all other minimized windows, if
7267         any intersections create new bounds (going left to 
7268         right, bottom to top) and then test again. When 
7269         successful the bounds are saved and never computed
7270         again. Fixes #79774.
7272 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
7274         * InternalWindowManager.cs: Added HandleTitleBarUp.
7276 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
7278         * NumericUpDown.cs: In .NET 1.1, user entered text is still
7279         hexadecimal in ParseUserEdit.
7281         
7282 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
7284         * MdiWindowManager.cs: 
7285         - Handle a click on the form's icon to show the 
7286         system menu (when maximized). Fixes #79775.
7287         - Change the existing click handler for the form's
7288         icon when not maximized to show on MouseUp.
7289         Fixes #79776.
7291         * Form.cs: In OnResize only layout the mdi child's
7292         parent if it actually has a parent. Might not if
7293         the window is closing.
7296 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
7298         * MdiClient.cs: Ignore active MDI client for text of parent, if
7299         child has no text set.
7301 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
7303         * ToolBar.cs: Fixed ToString to match MS.
7305 2006-11-22  Andreia Gaita  <avidigal@novell.com>
7307         * NumericUpDown: 
7308         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
7309         update inner values on set. Fixes #79966.
7310         - Override OnLostFocus to update value on NET 2. Fixes #79950.
7311         - Fix hexadecimal parsing.
7312         
7313         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
7314         parent. Fixes #79957
7316 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7318         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
7319         the actual size has to be queried, since if height /
7320         width is negative Win32 changes it to 0. 
7321         Fixes #79999 on Windows.
7322         
7323         * XplatUIX11.cs: Set height / width to 0 if negative
7324         in SetWindowPos. Fixes #79999 on Linux.
7325         
7326 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
7328         * ThemeWin32Classic.cs: Fix text redenring when button is
7329         pressed.
7331 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
7333         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
7334         and later navigate by mouse. Fixes #79528.
7336 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
7338         * ToolBar.cs: Set default value for TabStop to false in
7339         constructor, it fixes remaining behavior of bug #79863.
7341 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7343         * MdiWindowManager.cs:
7344         * InternalWindowManager.cs:
7345         - Moved a few methods specific to Mdi from 
7346         InternalWindowManager to MdiWindowManager.
7347         Fixes #79996.
7348         
7349 2006-11-21  Chris Toshok  <toshok@ximian.com>
7351         * XplatUIOSX.cs: stub out InvalidateNC.
7353         * XplatUIWin32.cs: implement InvalidateNC using the call I found
7354         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
7356         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
7358         * XplatUIDriver.cs: add InvalidateNC abstract method.
7360         * XplatUI.cs: add InvalidateNC.
7362 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
7364         * ToolBar.cs: Invalidate complete button area when pressed status 
7365         was changed.
7366         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
7367         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
7368         by 1 when button is pressed.
7370 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
7372         * ToolButton.cs: Invalidate middle of DropDown button when
7373         ToolBar theres DropDownArrows.
7374         * ThemeWin32Classic.cs: Change position of DropDown arrow and
7375         fix DropDown drawing operations.
7377 2006-11-20  Chris Toshok  <toshok@ximian.com>
7379         * NativeWindow.cs: fix the formatting of functions ('{' on the
7380         following line), and enable the thread exception dialog.
7382         * Application.cs: remove the duplicate exception catching from
7383         here.
7385 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
7387         * Toolbar.cs: Triggers button click event when click on icon
7388         of dropdown ToolBarButton. Fixes #79912.
7389         
7390 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7392         * Theme.cs:
7393         * ThemeWin32Classic.cs:
7394         - Added a property WindowBorderFont to enable themeing
7395           of mdi child windows' Text.
7396           
7397 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7399         * InternalWindowManager.cs:
7400         * Form.cs:
7401         * MdiClient.cs:
7402         * MdiWindowManager.cs: 
7403         - If mdi child is maximized, set mdi parent's
7404           text to "Parent - [Child]". Fixes #79770.
7405         - If there is any maximized mdi child windows, only the active 
7406           window (and any new windows) is maximized, the rest are normal.
7407         - On a WindowState change only save mdi child's window bounds 
7408           if the old window state was normal. Fixes #79774.
7409         - The scroll bars are now calculated on hopefully all
7410           necessary events. Fixed #79771 / #79844->6 / #79906.
7411         - MdiClient.SizeScrollBars() now takes into account docked 
7412           controls in the parent when calculating available space.
7413         - InternalWindowManager now always repaints the entire title
7414           area. Fixes #79844->1/4/5.
7415         - Added RequestNCRecalc on mdi child windowstate changes.
7416           Fixes #79772.
7418 2006-11-20  Mike Kestner  <mkestner@novell.com>
7420         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
7421         in the MouseUp handler of the listbox and move the return handling
7422         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
7424 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
7426         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
7428 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
7430         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
7431           working in 1.2.x anymore. So, updated.
7433 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
7435         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
7436         NumberGroupSeparator of current culture instead of assuming en-US.
7437         Fixed bug #79967.
7439 2006-11-17  Mike Kestner  <mkestner@novell.com>
7441         * Control.cs: Add the concept of implicit bounds setting so that
7442         dock/undock round trips preserve explicitly set size/locations.
7443         Fixes #79313.
7445 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
7447         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
7448           can't handle those filters. (Fixes bug #79961)
7450 2006-11-17  Chris Toshok  <toshok@ximian.com>
7452         [ fixes the exit/crashes associated with #79835.  it's clearly
7453         suboptimal though, we need to figure out a better way to solve
7454         this. ]
7455         
7456         * PrintPreviewControl.cs: deal with the new invalid printer
7457         exceptions.
7459         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
7460         and return false (so CommonDialog.ShowDialog doesn't actually show
7461         the form.)
7463         * PrintDialog.cs: enable/disable the Ok button depending on
7464         whether or not the printer is valid.
7466         * CommonDialog.cs (ShowDialog): only actually show the form if
7467         RunDialog returns true.
7469 2006-11-17  Jackson Harper  <jackson@ximian.com>
7471         * TextControl.cs: When soft splitting a line, mark it as a soft
7472         split line. Also carry over the current line break to the next
7473         line.
7475 2006-11-17  Chris Toshok  <toshok@ximian.com>
7477         * XplatUIX11.cs: when scrolling a window with an invalid area, we
7478         only want to shift the part of the invalid area that overlaps the
7479         area we're scrolling.  we also don't want to clear the invalid
7480         area unless the invalid area was entirely contained within the
7481         scrolling area.
7483 2006-11-16  Chris Toshok  <toshok@ximian.com>
7485         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
7486         also make sure to free the memory returned by XGetWindowProperty
7487         in GetText().
7489         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
7491 2006-11-16  Chris Toshok  <toshok@ximian.com>
7493         * XplatUI.cs: add a new super secret way to get at the totally
7494         unsupported X11 backend.
7496 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
7498         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
7500 2006-11-16  Jackson Harper  <jackson@ximian.com>
7502         * TreeView.cs: Allow more explicit setting of top node position
7503         for scrollbars. Slower algo, but more accurate.
7504         - CollapseAll should maintain the current top node.
7505         * TextBoxBase.cs: When positioning the caret, use the line, pos
7506         method, since the x, y method does not grab the correct tag, and
7507         the caret height never gets set correctly. (Maybe I should just do
7508         away with the caret having its own height, and always use the
7509         carets current tag for height).
7511 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
7513         [Fixes 79778, 79923]
7515         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
7516         Parent to the FosterParent instead.
7518 2006-11-16  Jackson Harper  <jackson@ximian.com>
7520         * TreeView.cs: Need to recalc the topnode when we expand or
7521         collapse. The scrolling methods can't handle this on their own,
7522         since they use differences between the last scroll position, and
7523         those difference get completely messed up since we are expanding
7524         nodes.  This problem should probably be fixed in the scrolling
7525         methods, so they can figure out exactly where they are, but this
7526         will slow things down a little.
7527         * ThemeWin32Classic.cs: Special case for groupboxes with empty
7528         strings, makes nunit-gui look a lot nicer.
7530 2006-11-16  Chris Toshok  <toshok@ximian.com>
7532         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
7533         the broken multithreaded event handling we have in here.  File
7534         this entry under "Why we should move to the new X11 backend".
7536         Any thread can make it into UpdateMessageQueue, which gets events
7537         from the X socket - some of which could belong to hwnds being
7538         managed by a different thread.  We can also have multiple threads
7539         in UpdateMessageQueue at the same time, with each one reading from
7540         the X socket.  This leads to many problems, with the following
7541         solutions:
7543         We can't use hwnd.Queue.Enqueue anywhere in here and must use
7544         EnqueueLocked.
7546         The MotionNotify compression we do can't work across threads
7547         (without locking the entire queue, perhaps) since we call
7548         hwnd.Queue.Peek, so we just punt and don't compress motion events
7549         unless the owning thread is the one which got the X event.
7551         ConfigureNotify is another fun one, since it modifies the hwnd's
7552         bounds and then enqueues the event.  We add a lock to Hwnd which
7553         is held when setting configure_pending to true (and enqueuing the
7554         event).
7556         There is a race wrt the wake socket.  we need to make sure that
7557         only 1 thread is waiting on that socket, or else a thread could
7558         sleep waiting for data that never comes.  It's difficult (but not
7559         impossible) to make happen, because it seems to require something
7560         like the following:
7562             1. Thread 1 polls on wake_receive
7563         
7564             2. poll returns saying there's data to be read on
7565                wake_receive.
7566         
7567             3. Thread 2 polls on wake_receive and immediately returns
7568                saying there's data to be read.
7570             4. Thread 2 reads the wakeup byte from wake_receive
7572             5. Thread 1 attempts to read the wakeup byte from
7573                wake_receive.
7575             6. Thread 2 exits (due to a form closing, perhaps).
7577             7. Thread 1 blocks forever.
7578         
7579         Fun, eh?
7581         Fixing the Expose handling isn't done yet, and the races inherent
7582         in that piece of code are responsible for the drawing mistakes you
7583         see when generating expose events in a MT app (like NPlot).  This
7584         one is the likely to be the hardest to bandaid, and it doesn't
7585         appear to cause anything but drawing problems.  The other issues
7586         caused apps to exit or hang.
7588         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
7589         called from a different thread than the one that should be calling
7590         these functions.
7592         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
7594 2006-11-15  Chris Toshok  <toshok@ximian.com>
7596         * Application.cs: null out the context's MainForm when we exit
7597         RunLoop.  Fixes a newly checked in unit test as well as the last
7598         ODE from bug #79933.
7600 2006-11-15  Chris Toshok  <toshok@ximian.com>
7602         * Form.cs (set_Owner): allow a null value so we can clear the
7603         form's owner.
7604         (Dispose): set all our owned_form's Owner properties to null, and
7605         clear the owned_forms collection.
7606         (WM_CLOSE): clean up this a little bit.. still not right though.
7608         * ApplicationContext.cs: OnMainFormClosed should only call
7609         ExitThreadCore if the main form isn't recreating.  Fixes unit
7610         test.
7612 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
7614         [Fixes 78346]
7616         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
7618 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
7620         [Fixes 79433]
7622         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
7623         keep popup window types from stealing focus from the main form
7624         on Windows.
7626         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
7628         * MenuAPI.cs: Set above flag to true.
7630 2006-11-15  Chris Toshok  <toshok@ximian.com>
7632         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
7633         the button being released is not in wParam.
7635 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
7637         * Form.cs: Add the released button to MouseEventArgs.Button
7638         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
7639         on Win32.
7641 2006-11-15  Chris Toshok  <toshok@ximian.com>
7643         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
7644         GetText().  untested because it's unused in our implementation.
7645         Control.Text always caches the text, even if
7646         ControlStyles.CacheText is not set.
7648         fixes bug #79939.
7650 2006-11-15  Chris Toshok  <toshok@ximian.com>
7652         [ fixes #79933 ]
7653         
7654         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
7655         message.  no hiding, no disposing.
7657         in the WM_CLOSE handler, hide the form if it's modal.
7659 2006-11-15  Chris Toshok  <toshok@ximian.com>
7661         * XplatUIX11.cs: use AddExpose instead of sending a message.
7662         fixes textbox border drawing.
7664 2006-11-15  Chris Toshok  <toshok@ximian.com>
7666         * PropertyGridView.cs: keep from crashing on mouse move/down when
7667         the property grid is empty.
7669 2006-11-14  Jackson Harper  <jackson@ximian.com>
7671         * TextControl.cs: Make PageUp and PageDown more like the MS
7672         versions.
7673         * TextBoxBase.cs: When we set the text property position the
7674         cursor at the beginning of the document.
7676 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7678         * Form.cs: if a mdi child's WindowState has changed
7679         before it's creation, it would display wrong control
7680         buttons.
7681         
7682 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
7684         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
7685           (Fixes bug #79927)
7687 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7689         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
7690         the window gets to paint its borders even if the window is
7691         getting smaller.
7692         
7693         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
7694         otherwise the old control buttons would still be painted 
7695         if the window gets bigger.
7696         
7697         * PaintEventArgs.cs: add an internal method so that the clip 
7698         rectangle can be changed.
7699         
7700 2006-11-13  Chris Toshok  <toshok@ximian.com>
7702         [ fixes bug #79745 ]
7703         
7704         * NotifyIcon.cs: lots of cleanup.
7706         * X11Structs.cs: add an enum for XEMBED messages.
7708         * XplatUIX11.cs: reindent one of the giant switch statements, it
7709         was taking up an additional tab stop, and this file is already way
7710         too wide for my laptop's screen.
7712         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
7713         we get it, resize the hwnd to the WMNormalHints max_width/height.
7715 2006-11-13  Jackson Harper  <jackson@ximian.com>
7717         * TextBoxBase.cs: Compute the value changes for the mouse wheel
7718         teh simple way.
7720 2006-11-13  Chris Toshok  <toshok@ximian.com>
7722         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
7723         #79898.  force a reference to the Region to stick around so the
7724         unmanaged object isn't collected (rendering our handle in the MSG
7725         stale).
7727 2006-11-13  Chris Toshok  <toshok@ximian.com>
7729         * XplatUIX11.cs: fix #79917 for window managers which support
7731         using XStoreName on the raw utf8, and we need to convert to
7732         COMPOUND_TEXT if it's non-latin1.
7734 2006-11-13  Chris Toshok  <toshok@ximian.com>
7736         * Form.cs (set_DialogResult): we need to set closing to false if
7737         we're setting our result to None.  fixes bug #79908.
7739 2006-11-13  Jackson Harper  <jackson@ximian.com>
7741         * TextControl.cs: When formatting text, compute the adjusted tag
7742         lengths correctly, using FindTag for the end tag instead of trying
7743         to figure it out outselves.
7744         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
7745         the item, ItemHeight doesn't work, because trees with large
7746         imagelists use those for their height
7747         * TreeView.cs: ActualItemHeight factors in the image height
7748         - compute left edge of checkboxes correctly
7749         - when expanding/collapsing move the bottom down one pixel, so we
7750         aren't moving part of the node
7752 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7754         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
7755         stack in PaintEventStart so that it won't get disposed by the gc
7756         before reaching PaintEventEnd.
7758 2006-11-13  Jackson Harper  <jackson@ximian.com>
7760         * TextBoxBase.cs: Don't select the word if we are on a line with
7761         no text.
7762         - We don't need to position the caret on mouse up, since the mouse
7763         move handler should be doing this
7764         - When double clicking a blank line, the caret is advanced to the
7765         next line.
7767 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
7769         * TreeNodeCollection.cs: Avoid duplicating indexer code.
7771 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
7773         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
7774         Fixes part of bug #79910.
7776 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
7778         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
7779           (bug #79903). Some minor string updates to match ms.
7781 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
7783         * FileDialog.cs: Don't add an extension if the filename
7784           already ends with that extension.
7786 2006-11-10  Jackson Harper  <jackson@ximian.com>
7788         * TreeView.cs: Use the currently highlighted node for the
7789         BeforeSelect event.
7790         * TextBoxBase.cs: There is no need to expand selection on
7791         MouseMove.
7792         - CanUndo means 'is there any undo operations', not 'is undo
7793         allowed on this textcontrol. Fixed ClearUndo unit test.
7795 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
7797         * Button.cs: only perform click when button is Selectable (so as 
7798         not to activate default buttons when they're disabled)
7799         
7800         * Control.cs: Rewrite of the SelectNextControl and related 
7801         methods. HandleClick now selects next control if the current one
7802         is being disabled.
7803         
7804         * Form.cs: OnActivated selects next active control only if Load 
7805         has already occurred. If Load hasn't run, there's no point in 
7806         selecting here, Load might change the state of controls.
7807         
7808         * FocusTest.cs: Tests marked as working again for these fixes
7810 2006-11-10  Chris Toshok  <toshok@ximian.com>
7812         * XplatUIX11.cs: a couple of fixes.
7814         - use XInternAtoms with almost all the atoms we need to register,
7815         instead of many, many calls to XInternAtom.  should help a bit on
7816         startup time, at the expense of making the code look a little
7817         worse.
7819         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
7820         isn't reparented (which seems to be a clue that we're running fon
7821         compiz) and they have an Owner form.  This fixes the tool windows
7822         in paint.net when running under compiz.
7824         - when setting the opacity of a window, support both the case
7825         where the window has been reparented and also when it hasn't been.
7826         Since compiz/beryl doesn't seem to reparent windows, and these are
7827         the only window managers which support translucency, I'm not sure
7828         why we need the hwnd.reparented case at all.. but leave it in.
7829         now we get translucent windows in paint.net under compiz/beryl.
7831 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
7833         * FileDialog.cs: Always return the value for FilterIndex that
7834           was set. Internally convert it to values that make sense.
7836 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
7837         
7838         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
7840 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
7842         * Toolbar.cs: Change default value of DropDownArrows to true, the 
7843         signature still using false to make it compatible with MS but the 
7844         initial value is true. Fixes #79855.
7846 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
7848         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
7849           only available on Linux.
7851 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
7853         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
7854         reduce number of calls to redraw method during toolbar creation.
7856 2006-11-09  Mike Kestner  <mkestner@novell.com>
7858         * ListView.cs : raise SelectedIndexChanged when an item is selected
7859         programmatically via the Item.Selected property.  Gert's nice 
7860         ListViewSelectedIndexChanged test fixture now runs clean.
7862 2006-11-09  Mike Kestner  <mkestner@novell.com>
7864         * ListView.cs : raise SelectedIndexChanged when a selected item is
7865         removed from the item collection using Remove or RemoveAt.
7867 2006-11-09  Mike Kestner  <mkestner@novell.com>
7869         * ListView.cs : raise SelectedIndexChanged once per selected item
7870         for compat with MS.  Fixes #79849+.
7872 2006-11-09  Chris Toshok  <toshok@ximian.com>
7874         * TabControl.cs: initialize row_count to 0, and set it to 1 when
7875         we need to (if we have any tab pages).  Fixes unit test.
7877 2006-11-09  Chris Toshok  <toshok@ximian.com>
7879         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
7880         width is 0, not 3.  Fixes a unit test.
7882 2006-11-09  Mike Kestner  <mkestner@novell.com>
7884         * ListView.cs : use Implicit scrollbars so that focus isn't 
7885         stolen from the listview when they are clicked. Fixes #79850.
7887 2006-11-09  Chris Toshok  <toshok@ximian.com>
7889         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
7890         have a root item.  Fixes #79879.
7892 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
7894         * FileDialog.cs:
7895           - Fix ToString ()
7896           - An ArgumentException is now thrown if a wrong filter
7897             is applied (matches ms). The previous filter doesn't change
7898             anymore if an exception is thrown.
7899           - Changing the FileName property also affects FileNames
7900         * ColorDialog.cs: The length of the CustomColors array is always
7901           16. It doesn't matter if we use a smaller array or null to update
7902           or change the custom colors property.
7903         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
7904           for RootFolder if we get a undefined value.
7906 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7908         * StatusBarPanel.cs: 
7909         - Width is set to MinWidth if Width is smaller than
7910         MinWidth. Fixes #79842.
7911         - MinWidth now always overrides Width (MSDN says MinWidth
7912         is set to Width when AutoSize = None, but they do not 
7913         behave like that).
7914         - Style has now the the correct default value.
7915         
7916 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7918         * TrackBar.cs: 
7919         - The control is completely invalidated on 
7920         Got/LostFocus to draw the focus rectangle correctly.
7921         - When AutoSize then height is always 45 (width for 
7922         vertical controls).
7923         
7924         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
7925         on the mouse when moved and it doesn't move when grabbed
7926         until the mouse moves as well. Also fixed some wrong 
7927         calculations when clicking on the thumb (control thought
7928         click was outside of thumb and didn't grab it).
7929         Fixes some of the issues in #79718.
7931 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
7933         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
7935 2006-11-08  Chris Toshok  <toshok@ximian.com>
7937         * PropertyGridView.cs: only call ToggleValue if the item is not
7938         readonly.
7940 2006-11-08  Jackson Harper  <jackson@ximian.com>
7942         * TextBoxBase.cs: The RichTextBox and textbox have very different
7943         word selection methods.  Implement the textbox's simple word
7944         selection here, and let the RichTextBox override and provide it's
7945         own.
7946         - Don't do extra selection on mouseup
7947         * RichTextBox.cs: Use the documents word selection algorithm, I
7948         think ideally, this function will be pulled into the
7949         RichTextBox.cs code someday.
7951 2006-11-08  Chris Toshok  <toshok@ximian.com>
7953         * RootGridEntry.cs: new class to represent GridItemType.Root.
7955         * CategoryGridEntry.cs: reformat, and add boilerplate.
7956         
7957         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
7958         returns the UI parent anyway, and we need special handling to
7959         implement the GetTarget method in the face of it.  Also, implement
7960         Select().
7962         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
7963         a root grid item, and use that instead of PropertyGrid.grid_items.
7964         Also, make use of TypeConverters (and add limitted support for
7965         ICustomTypeDescriptors) when initially populating the grid.
7966         Arrays now show up more or less properly.
7968 2006-11-08  Chris Toshok  <toshok@ximian.com>
7970         * Application.cs: set the modal dialog to non modal after we close
7971         it.  Fixes bug #79866.
7973 2006-11-08  Jackson Harper  <jackson@ximian.com>
7975         * TextControl.cs: When combining lines carry over the line end
7976         style from the end line.
7977         - Invalidate the selected area when setting it, if it is visible.
7978         * TextBoxBase.cs: Only rich text box can do full line selects.
7979         - Make sure to set the cursor position when there is a click,
7980         otherwise two clicks in separate areas could cause a large chunk
7981         to be selected.
7983 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
7985         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
7986         Fixes #79863.
7988 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
7990         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
7991         time. Remove tooltips when ToolButton click events.  Fixes #79856.
7993 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
7995         * MenuAPI.cs: Ignore right click for menu actions and fixes
7996         menu border when clicked.  Fixes #79846.
7998 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
8000         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
8001         MouseState after create wParam for message, this fixes mouse button 
8002         equal none in mouse up events.
8003         
8004 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
8006         * Control.cs : Focus() now calls Select to set the Container's
8007         Active Control and to give it focus. To avoid infinite recursion
8008         (because ActiveControl also calls Focus at one point), a check 
8009         is made in Focus with the help of a new internal variable
8010         is_focusing.
8012 2006-11-07  Mike Kestner  <mkestner@novell.com>
8014         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
8015         if there's a selection.  Fixes #79849.
8017 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
8019         * PropertyGrid.cs: Avoid fixed height of help description label.
8020         Fixes part of bug #79829.
8022 2006-11-07  Chris Toshok  <toshok@ximian.com>
8024         * XplatUIX11.cs: fix #79790 again, by using the
8025         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
8027 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
8029         * ToolBar.cs: Fix left click checking.
8031 2006-11-07  Chris Toshok  <toshok@ximian.com>
8033         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
8035 2006-11-07  Chris Toshok  <toshok@ximian.com>
8037         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
8038         PropertyManager unit tests.
8040         * PropertyManager.cs: make property_name internal.
8042 2006-11-07  Chris Toshok  <toshok@ximian.com>
8044         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
8045         pass a unit test.  Also, don't set image_index to anything in
8046         response to setting the ImageList property.
8048 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
8050         * ToolBar.cs: Ignore click events when mouse button is not a
8051         left button, only accepts other button for dropdown menus.  
8052         Fixes #79854.
8054 2006-11-07  Chris Toshok  <toshok@ximian.com>
8056         * DataGrid.cs: make the back and parent row buttons a little less
8057         ugly.
8059 2006-11-07  Jackson Harper  <jackson@ximian.com>
8061         * TextBoxBase.cs: When converting to Text don't put line breaks in
8062         for soft line breaks.
8063         * TextControl.cs: There is an initial "fake" line in the document,
8064         this is now a soft break line, so that an extra line feed doesn't
8065         get added to the end of documents.
8067 2006-11-07  Chris Toshok  <toshok@ximian.com>
8069         [ fix bug #79778 ]
8070         
8071         * CurrencyManager.cs: if the list is readonly, don't bother
8072         checking if IBindingList.AllowNew is true.
8074         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
8075         for non-DataRowView datasources..  or rather, make it not crash.
8076         (DataGridPaintRelationRow): make sure we limit the row painting to
8077         the area not covered by the row header, and make our cell width at
8078         least large enough to cover the relation area.  This allows grids
8079         that have relations but no rows to render correctly.
8080         (DataGridPaintRowContents): same type of changes here.
8081         (SetDataSource): move back to always calling
8082         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
8083         navigating back through relations.
8084         (HitTest): handle the case where we have no cells but have
8085         relations.  Right now we generate a hit in cell 0 of whatever the
8086         row is, not sure if this is strictly correct, but it works for our
8087         purposes.
8088         
8089         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
8090         bother doing anything.
8092 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
8094         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
8095         early version of StatusStrip.  Not responsible for eaten
8096         application or firstborn children.
8098 2006-11-06  Chris Toshok  <toshok@ximian.com>
8100         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
8101         call GetTabRect with a -1 index.  Fixes #79847.
8103 2006-11-06  Jackson Harper  <jackson@ximian.com>
8105         * TreeNodeCollection.cs: Update scrollbars after clearing.
8107 2006-11-06  Chris Toshok  <toshok@ximian.com>
8109         * NumericUpDown.cs: fix the ToString method for some unit test
8110         love.
8112 2006-11-06  Chris Toshok  <toshok@ximian.com>
8114         * PropertyGrid.cs:
8115         - set the initial SelectedGridItem if we can.
8117         - Exclude non-mergable properties only if we're merging > 1
8118         object.  Merging 1 object isn't really merging, obviously.
8120         - Handle PropertySort.NoSort just like Alphabetical, which is
8121         wrong of course, but at least gets things on the screen.
8122         
8123         * PropertyGridView.cs:
8124         - Add method "FindFirstItem" which finds the first property grid
8125         item, so we can select it by default.
8127         - make use of GridEntry.CanResetValue.
8129         - Don't call RedrawBelowItemOnExpansion here anymore, the
8130         individual GridEntry's will do that.
8132         - Remove the ITypeDescriptorContextImpl internal class.
8133         
8134         * GridEntry.cs:
8135         - this class needs to implement ITypeDescriptorContext, as it's
8136         what MS's PropertyDescriptorGridEntry does, which means we can
8137         remove the ITypeDescriptorContextImpl internal class from
8138         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
8140         - keep a reference to our PropertyGridView, and move the call to
8141         RedrawBelowItemOnExpansion here from PGV.  This means
8142         programmaticly setting Expanded actually does something visible.
8144         - add a CanResetValue() function which takes into account our
8145         possibly multiple "selected_objects" in the merged case.  Shifting
8146         PropertyGridView to use this method fixes another unreported
8147         crasher found running the test for #79829.
8149         - when Top or Bounds is updated, make sure the PropertyGridTextBox
8150         is updated to reflect this.
8152         * CategoryGridEntry.cs: the ctor takes the PGV now.
8153         
8154 2006-11-06  Jackson Harper  <jackson@ximian.com>
8156         * TextControl.cs: These are 1 based.
8157         * TextBoxBase.cs: When setting the selected text, don't change the
8158         selected text tags, this is done by ReplaceText, just position the
8159         cursor at the end of the new text.
8161 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
8163         * ListView.cs: Allow label edit only when, when LabelEdit is
8164           set to true.
8166 2006-11-06  Jackson Harper  <jackson@ximian.com>
8168         * TextControl.cs: If a suitable wrapping position isn't found,
8169         just wrap right in the middle of a word.
8171 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
8173         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
8174           bug #79820.
8176 2006-11-06  Jackson Harper  <jackson@ximian.com>
8178         * TreeView.cs: Can't use the VisibleCount property when setting
8179         scrollbar heights, because this doesn't take into account whether
8180         or not the horz scrollbar just came visible.
8182 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
8184         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
8185         activated.  Fixes #79369, #79832.
8187 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
8189         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
8190           had to remove support for links that point to a directory. FileInfo
8191           returns no usefull information (means, the directory they point to)
8192           for such links. Replaced some empty string ("") with String.Empty.
8194 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
8196         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
8197         NullReferenceException when attempting to remove node that is not in
8198         collection. Throw NullReferenceException when null is passed to 
8199         Remove. Allow first element of the collection to be removed. Fixes
8200         bug #79831.  In GetEnumerator ().Current return null if positioned 
8201         before the first element of the collection. In GetEnumerator ().Reset,
8202         position before first element of the collection.
8204 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
8206         * PropertyGrid.cs: To match MS, remove default title and description
8207         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
8208         buttons.
8210 2006-11-04  Chris Toshok  <toshok@ximian.com>
8212         * Theme.cs: add a Clamp method, just for kicks.
8214         * ThemeWin32Classic.cs: clamp all color components to [0..255].
8216 2006-11-04  Chris Toshok  <toshok@ximian.com>
8218         * Form.cs: if the form isn't visible, Close() does nothing.
8220 2006-11-03  Chris Toshok  <toshok@ximian.com>
8222         * Form.cs (Close): if the form is modal, don't Dispose of it, only
8223         Hide it.
8224         (WndProc): don't Dispose after handling the WM_CLOSE message.
8226         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
8227         them as such, instead of using casts from Control to Form.  Also,
8228         don't Dispose of the modal dialog when we fall out of the loop -
8229         Close() it instead.
8231         fixes bug #79813.
8233 2006-11-03  Chris Toshok  <toshok@ximian.com>
8235         * Control.cs (Dispose): only go through the dispose thing if we're
8236         @disposing, and we haven't already been disposed.  Fixes bug
8237         #79814.
8239         * Form.cs: no reason to call "base.Dispose()" here instead of
8240         "Dispose()".
8242 2006-11-03  Mike Kestner  <mkestner@novell.com>
8244         * ComboBox.cs : use ToString instead of casts in AddItem for
8245         sorting functionality.  Fixes #79812.
8247 2006-11-03  Chris Toshok  <toshok@ximian.com>
8249         * Application.cs: pave the way for actually using the thread
8250         exception dialog.  it's ifdefed out at the moment.
8252 2006-11-03  Chris Toshok  <toshok@ximian.com>
8254         * ThreadExceptionDialog.cs: until we get a better layout, actually
8255         hide the details textbox and label when we shouldn't see them.
8257 2006-11-03  Jackson Harper  <jackson@ximian.com>
8259         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
8260         multiline textboxes anymore.  This method also determines the
8261         width/height of a textboxes canvas area.
8262         - Sorta a revert of the last patch.  For multiline just position
8263         the controls, then bail.  This way the scrollbar width won't be
8264         altered.
8266 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
8268         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
8269         it dont need.  Fixes #79537.
8271 2006-11-02  Jackson Harper  <jackson@ximian.com>
8273         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
8274         send the status after firing the DndOver event.
8276 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8278         * TrackBar.cs: Now orientation only switches height / width if
8279         the control's handle is created (Win32 does it like this). Also 
8280         fixed a typo in ToString() for a test to pass, changed the 
8281         exception thrown in set_LargeChange and set_SmallChange to 
8282         match Win32 behaviour, and added TrackBar tests to the unit 
8283         tests.
8285 2006-11-02  Chris Toshok  <toshok@ximian.com>
8287         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
8288         not _NET_WM_STATE_NO_TASKBAR.
8290 2006-11-02  Jackson Harper  <jackson@ximian.com>
8292         * TextControl.cs: Increment count by one, since in the update view
8293         count - 1 is used.
8295 2006-11-02  Jackson Harper  <jackson@ximian.com>
8297         * TextBoxBase.cs: Use client rectangle not bounds for checking if
8298         the mouse is in the client rectangle (duh).
8300 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8301         
8302         * TrackBar.cs: Fixed trackbar jumping around when clicking
8303         on it - the trackbar was not detecting correctly at which
8304         side of the thumb the click was done. (fixes #79718)
8306 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
8308         * ListBox.cs: scroll visible area when change SelectedIndex to
8309         a non visible area.  Fixes #79481.
8311 2006-11-01  Jackson Harper  <jackson@ximian.com>
8313         * TextControl.cs: When replacing the selection move the selection
8314         start/end/anchor to the end of the new text.
8316 2006-11-01  Jackson Harper  <jackson@ximian.com>
8318         * XplatUIWin32.cs: When setting the parent change the controls
8319         visibility to it's visibility flag, not to it's old parents
8320         visibility (.Visible walks the parent chain).
8322 2006-11-01  Chris Toshok  <toshok@ximian.com>
8324         * XplatUIX11.cs: revert the #79790 fix, as the simple.
8325         XSetTransientForHint fix breaks paint .net's tool windows.  more
8326         work needed for that one.
8328 2006-11-01  Chris Toshok  <toshok@ximian.com>
8330         * ScrollBar.cs: throw ArgumentException instead of Exception in
8331         LargeChange/SmallChange setters.  fixes unit tests.
8333 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
8335         * ContainerControl.cs: reverted rev.67183 (which was itself
8336         a reversion of rev.66853... eh).
8337         
8338         * Control.cs: Fixes Reflector hang by changing Focus() call
8339         to what it was before rev.66643 (calling Select() here sets 
8340         ActiveControl, which in some situations calls back Focus and 
8341         eventually does a stack overflow). Temp fix.    
8342         Changes to GetNextControl() to not look for children to select when
8343         parent cannot be selectable (so it looks for siblings instead)  
8344         
8345 2006-10-31  Mike Kestner  <mkestner@novell.com>
8347         * CheckedListBox.cs : off by one error in returned index from
8348         ObjectCollection.Add.  Fixes #79758.
8350 2006-10-31  Chris Toshok  <toshok@ximian.com>
8352         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
8353         calls for the textbox/spinner, to keep from recursing to the point
8354         where we crash.  Fixes #79760.
8356 2006-10-31  Chris Toshok  <toshok@ximian.com>
8358         * ListControl.cs (set_SelectedValue): don't throw exceptions on
8359         null/"" value, just return.  matches ms's behavior and fixes some
8360         failing tests.
8362 2006-10-31  Chris Toshok  <toshok@ximian.com>
8364         * Control.cs (set_Capture): make a logic a little easier to
8365         follow.
8367         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
8368         if it's being destroyed.  A necessary fix surely, but a bandaid
8369         also, to fix the stuck capture problem in bug #78413.
8371 2006-10-31  Chris Toshok  <toshok@ximian.com>
8373         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
8374         convention of clearing hwnd.ClientRect when we set the
8375         width/height (so it'll be recalculated by Hwnd).
8377 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
8379         * ContainerControl.cs: reversed Contains check from
8380         ActiveControl due to hanging problems. This fix
8381         partly regresses #79667 (button does not have
8382         initial focus), so this might be a symptom for 
8383         a larger parenting problem (set_ActiveControl
8384         is being called but the child control does
8385         not have the parent set yet?)   
8386         
8387 2006-10-31  Mike Kestner  <mkestner@novell.com>
8389         * MenuAPI.cs : fix keynav when menu is click activated.
8391 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
8393         * ToolStrip*: Version 0.2.
8395         * MenuStrip.cs: Version 0.1.
8397         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
8399 2006-10-30  Chris Toshok  <toshok@ximian.com>
8401         [ fixes the oversized notify icon issue in bug #79745 ]
8402         
8403         * NotifyIcon.cs: scale the icon down to the size we're given by
8404         the XplatUI layer (this would be faster if we did it once instead
8405         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
8406         since it's never invoked.
8408         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
8409         pixels high by default, so let's hardcode our systray icon to that
8410         size.  The SYSTEM_TRAY protocol should really have a way for
8411         client apps to query for the correct icon size.. but oh well.  A
8412         couple of patches to deal with the screwy client_window ==
8413         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
8414         instance, and also make sure we don't XSelectInput twice).
8416 2006-10-30  Chris Toshok  <toshok@ximian.com>
8418         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
8419         recreating forms.  Control recreation is the bane of my existence.
8420         Fix it in a way that keeps everyone happy.
8422 2006-10-30  Chris Toshok  <toshok@ximian.com>
8424         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
8425         just non-CHILD ones.  otherwise sometimes scrollbars end up with
8426         client_windows not being resized to the proper size (ReportBuilder
8427         shows this extremely well).
8429 2006-10-30  Chris Toshok  <toshok@ximian.com>
8431         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
8432         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
8433         showing up in the gnome taskbar.  Fixes bug #79790.
8435 2006-10-30  Chris Toshok  <toshok@ximian.com>
8437         * ApplicationContext.cs: guard against a NRE.
8439         * Application.cs: null out the old MainForm for the context, so we
8440         don't try to use it again once it's disposed.  Fixes bug #79783.
8442 2006-10-30  Chris Toshok  <toshok@ximian.com>
8444         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
8445         BindingContext, set the data source directly, otherwise do the
8446         lazy approach - the actual ListManager will be created when we get
8447         a BindingContext. Fixes bug #79700.
8449 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
8451         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
8452           XplatUIX11.cs: Remove old 2 parameter SetVisible.
8454         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
8456 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
8458         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
8459         of SetVisible that allows a window to be shown, but not activated.
8460         This is needed on Windows for MenuStrip, and can probably be used
8461         with MainMenu and ComboBox to fix the focus stealing issues on
8462         Windows.
8464         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
8466 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
8468         * PictureBox.cs: Fix the output of the ToString method.
8470 2006-10-29  Chris Toshok  <toshok@ximian.com>
8472         * Control.cs (get_TopLevelControl): fix bug #79781.
8474 2006-10-29  Chris Toshok  <toshok@ximian.com>
8476         * ListControl.cs (set_DataSource): throw Exception here, not
8477         ArgumentException, to match MS behavior.
8479 2006-10-29  Chris Toshok  <toshok@ximian.com>
8481         * Form.cs: remove the try-catch's around calls to GetWindowState.
8482         We can just check the return value.
8484         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
8485         Instead return -1.
8487         * XplatUI.cs: Add note about additional return value for
8488         GetWindowState.
8490 2006-10-29  Chris Toshok  <toshok@ximian.com>
8492         * Control.cs (CreateHandle): when we create our handle, we also
8493         create the handles of our child controls.  Fixes one of the
8494         Control unit tests (CH11).
8496 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
8498         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
8500 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
8502         * ThemeClearlooks.cs: A little speedup.
8504 2006-10-27  Chris Toshok  <toshok@ximian.com>
8506         * Control.cs: implement Control.FromChildHandle in a way that
8507         matches the docs (and fixes the failed test.)
8509 2006-10-27  Chris Toshok  <toshok@ximian.com>
8511         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
8512         comments).
8514         * DataGrid.cs: implement ResetForeColor such that the tests
8515         succeed.
8516         
8517 2006-10-27  Chris Toshok  <toshok@ximian.com>
8519         * ToolBarButton.cs: setting text/tooltiptext to null results in it
8520         being set to "".  Fixes bug #79759.
8522 2006-10-27  Jackson Harper  <jackson@ximian.com>
8524         * TextControl.cs: We need to clear the entire selection area when
8525         setting the start, otherwise multiline selections are still
8526         visible.
8528 2006-10-26  Chris Toshok  <toshok@ximian.com>
8530         * PropertyGridView.cs: 
8532         - ifdef all the code specific to the double
8533         buffer case, and provide some alternatives in the non-doublebuffer
8534         code, which makes heavy use of XplatUI.ScrollWindow to move things
8535         around without having to invalidate (and cause flicker).  There
8536         are still some drawing problems in the non-doublebuffered case, so
8537         DOUBLEBUFFER is defined by default.
8539         - Fix the way dropdowns are handled.  now we explicitly watch for
8540         the events which might cause the dropdown to close, and break out
8541         of the nested event loop there.  This gets rid of all Capture
8542         code, at the expense of the Msg special casing.  Seems to work,
8543         though, and fixes bug #79743.
8545 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
8546         * Control.cs: SetIsRecreating now recreates implicitly added
8547         child controls as well. Finally fixes #79629. The flag passed to 
8548         SetIsRecreating has also been removed since it wasn't used.
8549         
8550 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8552         * PageSetupDialog.cs: Clean some code, fix some bits, 
8553         add some checks, and add a printer sub-dialog.
8555 2006-10-26  Chris Toshok  <toshok@ximian.com>
8557         * PropertyGrid.cs: make set_SelectedObject call
8558         set_SelectedObjects, and move the duplicate logic to the
8559         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
8561         * PropertyGridView.cs: hide the textbox when we get a
8562         SelectedObjectsChanged event.
8564         Fixes bug #79748.
8566 2006-10-26  Chris Toshok  <toshok@ximian.com>
8568         * PropertyGridView.cs: deal with the type converter not supporting
8569         GetStandardValues() or GetStandardValues() returning null, which
8570         is does in the default case.  Fixes #79742.
8572 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
8574         * CheckedListBox.cs: nunit no longer crashes when selecting 
8575         Project/Edit menu option
8576         
8577 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
8579         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
8580         is no menu selected. fixes #79739
8582 2006-10-25  Chris Toshok  <toshok@ximian.com>
8584         * PropertyGridView.cs: factor out the splitter invalidation code
8585         into the SplitterPercent setter, and for kicks implement the
8586         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
8587         amount in either direction.
8589 2006-10-25  Chris Toshok  <toshok@ximian.com>
8591         * PropertyGridView.cs: do some cleanup of the brush used to draw
8592         text - read only fields should be grayed out.  not sure how to do
8593         this with the textbox, though.  but the textbox's should also be
8594         readonly now at least.  Also, hide/show the textbox when resizing
8595         the control.
8596         
8597         * CursorConverter.cs: use System.Reflection when getting the
8598         properties of Cursors, as TypeDescriptor.GetProperties isn't
8599         returning static properties.
8601 2006-10-25  Chris Toshok  <toshok@ximian.com>
8603         * PropertyGridView.cs: factor out the up/down handling, and reuse
8604         it for page up/down.  also add End/Home support.
8606 2006-10-25  Chris Toshok  <toshok@ximian.com>
8608         * PropertyGridView.cs:
8610         - ensure the selected grid item is visible in the scrolled area,
8611         fixes bug #79572.
8613         - fix Keys.Down handling when you're on the last item in the
8614         propertygrid.
8616 2006-10-25  Mike Kestner  <mkestner@novell.com>
8618         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
8619         clicks too.  Fixes #79725.
8621 2006-10-24  Chris Toshok  <toshok@ximian.com>
8623         * PropertyGrid.cs: use property.Converter instead of
8624         TypeDescriptor.GetConverter(property.PropertyType), so we catch
8625         TypeConverters declared on the property as well as on the
8626         PropertyType.  Fixes bug #79678.
8628 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
8630         * MimeIcon.cs, Mime.cs:
8631           Fallback to the default platform handler if no shared mime info
8632           stuff exists (fixes #79693).
8634 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
8635         * ContainerControl.cs: Incorrect contains check in ActiveControl 
8636         from previous fix (duh).
8638 2006-10-20  Chris Toshok  <toshok@ximian.com>
8640         * PropertyGridView.cs: the dropdown should be MIN(number of items
8641         in list, 15).  Fixes #79551.
8643 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
8644         Fixes #79384, #79394, #79652, #79667
8645         * Application.cs: 
8646         
8647         - Modal windows are now destroyed in the proper order for windows
8648         
8649         * ContainerControl.cs:
8650         
8651         - ActiveControl setter has more conditions on when to return:
8652                 - if we're reselecting the active control, but it actually
8653                 didn't have focus (window hidden or some such), it runs
8654                 - if the active control being selected doesn't actually 
8655                 exist in the container, it returns
8656         
8657         * Form.cs
8658         
8659         - The ShowDialog now gets the current form as the owner when
8660         invoking without parameters, and correctly activates the owner 
8661         when returning
8662         
8663         * MessageBox.cs
8664         
8665         - MessageBox now catches the Escape key to exit
8667 2006-10-20  Chris Toshok  <toshok@ximian.com>
8669         * PropertyGridView.cs: fix a number of issues (bug #78565, and
8670         most of bug #79676):
8672         - you can navigate around the property grid with the arrow keys.
8674         - the dropdown is sized properly when the pg has a vertical
8675         scrollbar.
8677         - fix the indentation for subentries, and properly select the
8678         entire label rect.
8680         - fix the gray bar's drawing (only draw it to the last element,
8681         not for the height of the control.  Also make sure we draw that
8682         last horizontal grid line.
8684         - use the same mechanism the datagrid uses wrt the editing textbox
8685         when scrolling/resizing/etc.  Namely, we hide it first, do the
8686         operation, then show it again (if it's still visible).
8687         
8688         - aggressively remove a lot of unnecessary refreshes (and also
8689         calls to Invalidate(). call more limited variants, and only redraw
8690         what we need.)
8691         
8692         * PropertyGrid.cs:
8694         - when we're populating the merged collection, fill in the UI
8695         parent with either the passed in item, or the category item we
8696         create.
8698         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
8700         * GridItem.cs: drop some fully qualified names.
8701         
8702         * GridEntry.cs: add a "UIParent", which is basically the parent
8703         treenode.
8705         * GridItemCollection.cs: add an IndexOf method.
8707 2006-10-20  Mike Kestner  <mkestner@novell.com>
8709         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
8710         a working win32 NC invalidation mechanism, we can't invalidate
8711         menus.  [Fixes #79705]
8713 2006-10-20  Mike Kestner  <mkestner@novell.com>
8715         * ListBox.cs : don't update the VScrollbar if the list is empty,
8716         just hide it.  [Fixes #79692]
8718 2006-10-20  Jackson Harper  <jackson@ximian.com>
8720         * RichTextBox.cs: Handle some special chars better, and don't skip
8721         the entire group when we encounter a special char that we don't
8722         handle correctly.
8724 2006-10-18  Chris Toshok  <toshok@ximian.com>
8726         * PropertyGridView.cs: address a number of issues from bug #79676,
8727         mostly of the cosmetic variety.
8729         - The highlight rectangle for indented items not extends all the
8730         way to the left.
8732         - Indented items aren't indented so much.
8734         - the dropdown is properly sized width-wise if the pg has a
8735         vertical scrollbar.
8737 2006-10-18  Chris Toshok  <toshok@ximian.com>
8739         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
8740         systray stuff is rather convoluted to begin with.
8742         systray icons are a single window for some reason (that I haven't
8743         figured out yet), and for them, client_window == whole_window.
8744         Given the way the tests are structured elsewhere to determine
8745         which paints are pending (client vs. nc), that situation will
8746         always yield PAINT, not NCPAINT.  So, if we have a pending
8747         nc_expose and no pending expose, remove the hwnd from the paint
8748         queue, and also set nc_expose_pending to false, to keep us from
8749         blocking further expose's adding the hwnd to the paint queue.
8751         phew.  like i said, a rather convoluted change.  Fixes the
8752         notifyicon repaint issues in bug #79645.
8754 2006-10-18  Chris Toshok  <toshok@ximian.com>
8756         * Form.cs: when getting the backcolor of the form, don't get
8757         base.BackColor, as this allows parents to influence the background
8758         color.  This breaks mdi forms.  Instead, if the background_color
8759         is empty, return the default.
8761 2006-10-18  Chris Toshok  <toshok@ximian.com>
8763         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
8764         to being private instead of internal static.
8766         * Control.cs: remove all the stupid ParentWaitingOnRecreation
8767         crap, it wasn't working for more deeply nested controls anyway,
8768         and we already have the is_recreating flag - use that instead.
8769         Before calling DestroyHandle in RecreateHandle, recurse through
8770         the control tree setting it to true.  this returns the recreate
8771         code to much of its original simplicity, while now guaranteeing we
8772         actually recreate everything we're supposed to.  This change gets
8773         fyireporting actually showing mdi children.
8775 2006-10-17  Chris Toshok  <toshok@ximian.com>
8777         * Form.cs: remove some debug spew, and collapse some duplicate
8778         code at the end of SetClientSizeCore.
8780         * XplatUIX11.cs: 
8781         - add some more debug spew here too wrt Destroy handling.
8782         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
8783         in Control's handling of WM_DESTROY.
8784         - Remove the handling of zombie window DestroyNotifies from the
8785         event loop - we don't need it.  Now the only DestroyNotifies we
8786         actually handle are ones generated by X.
8787         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
8788         match gtk's (functioning) handling of this. This keep metacity
8789         from leaving droppings in the form of wm borders with no window
8790         contents all over the place.
8792         * Control.cs:
8793         - add a bunch of debug spew wrt control recreation.
8794         - fix a bug where we weren't tracking Visible properly on
8795         recreated hwnds.
8796         - fixed the WM_PAINT double buffer handling to support re-entrant
8797         calls (yes, i know it's gross, but it's happening to us).
8799 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
8800         * ThemeWin32Classic.cs: changed drawing of selected days
8801         to make them look better.
8803 2006-10-16  Chris Toshok  <toshok@ximian.com>
8805         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
8806         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
8808         * XplatUIX11.cs: move away from using hwnd.client_dc and
8809         hwnd.non_client_dc and on to a stack of dc's (and in window's
8810         case, PAINTSTRUCT's), so we can deal with nested Paint calls
8811         without puking or not disposing of Graphics objects.
8813         * XplatUIOSX.cs: same.
8815         * XplatUIWin32.cs: same.
8817 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
8819         * FileDialog.cs: Don't call on_directory_changed inside
8820           OnSelectedIndexChanged (it changes the SelectedIndex too).
8821           Instead move it to OnSelectionChangeCommitted.
8823 2006-10-13  Chris Toshok  <toshok@ximian.com>
8825         * XplatUIX11.cs: more Destroy work.  the current code does the
8826         following things, in order:
8828         1. Enumerates all handles of all controls at or below the one
8829         being destroyed, in pre-order.  As it is doing this, it marks the
8830         handles as zombie and clears all references to them.
8831         
8832         2. calls XDestroyWindow on the window passed in.
8834         3. SendMessage's WM_DESTROY to all he handles in the accumulated
8835         list.
8837 2006-10-13  Chris Toshok  <toshok@ximian.com>
8839         * XplatUIX11.cs: set hwnd.zombie to true before calling
8840         SendMessage (WM_DESTROY).  this keeps us from marking the new
8841         window a zombie, and also keeps us from calling sendmessage at
8842         all.
8844 2006-10-13  Jackson Harper  <jackson@ximian.com>
8846         * TextControl.cs: Do not show the caret and selection at the same
8847         time.  Reduces ugliness by 35%.
8849 2006-10-13  Chris Toshok  <toshok@ximian.com>
8851         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
8852         zombie after we do the recursive call, so we actually do call
8853         SendMessage on the children controls.
8854         (GetMessage): if we find a pending paint event for a zombie hwnd,
8855         remove the hwnd from the paint queue, or else it will always be
8856         there (and we'll effectively loop infinitely)
8858 2006-10-13  Mike Kestner  <mkestner@novell.com>
8860         * MenuItem.cs : add Selected format under keynav too.
8861         Fixes #79528.
8863 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
8865         * PropertyGrid.cs: Fixed some NRE's and small difference between our
8866         implementation and that of MS.
8868 2006-10-13  Chris Toshok  <toshok@ximian.com>
8870         * Control.cs (OnInvalidated) only futz with the invalid_region if
8871         the control is double buffered.  this fixes the apparent hang in
8872         the ListView unit tests.  Someone needs to make the
8873         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
8875 2006-10-13  Chris Toshok  <toshok@ximian.com>
8877         * PropertyGridView.cs:
8879         - do a little refactoring so that only one place calls
8880         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
8881         else call that.  Also make it Refresh, since there are redraw bugs
8882         otherwise (we should take a look at that...)
8884         - do a little more refactoring work to share the body of code
8885         involved with the drop down.  it was duplicated in the code
8886         dealing with the listbox handling and in the code dealing with the
8887         UITypeEditors.
8889         - add a Capture to the dropdown form's control once it's
8890         displayed, and add a MouseDown handler that checks to make sure
8891         the position is inside the control.  If it's not, close the
8892         dropdown.  This fixes #78190.
8894         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
8895         if the value is different than the initial value.
8896         
8897 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
8899         * Control.cs: see #78650
8900         - Fixed GetNextControl for several cases:
8901                 - Changed FindFlatForward to return 
8902                 correct sibling control when more than one
8903                 control has same TabIndex as the currently 
8904                 focused one.
8905                 - Changed FindFlatBackward to loop children
8906                 from last to first and apply same logic as in
8907                 FindFlatForward
8908                 - Changed FindControlForward to search for
8909                 children when control is not a container
8910                 but has children, or search for siblings if
8911                 control is a container...
8912                 - Changed FindControlBackward   to continue
8913                 searching for child controls when hitting 
8914                 Panel-like parents
8915                 
8916         - Fixed Focus method to update ActiveControl
8917         (FocusTest.FocusSetsActive failure)
8918         
8919         * TabControl.cs:
8920         - Focus rectangle now refreshes when gaining
8921         or losing focus
8922         - Removed grab for Tab key on IsInputKey that 
8923         was keeping tab navigation from working (#78650)
8925 2006-10-13  Chris Toshok  <toshok@ximian.com>
8927         * PropertyGridView.cs:
8928         - Rewrite SetPropertyValue to loop over SelectedGridItem's
8929         SelectedObjects.
8931         - Deal with GridItem.Value == null a few places.
8933         * PropertyGrid.cs: 
8934         - replace the PopulateGridItemCollection with a pair of methods
8935         which compute the intersection of all the properties in the
8936         SelectedObjects array.  Fixes #79615.
8938         - Throw ArgumentException from set_SelectedObjects if there's a
8939         null in the array.
8941         - Add GetTarget method which can be used to traverse up the
8942         GridItem.Parent chain.  It depends on the assumption that
8943         selected_objects for different GridEntries are always in the same
8944         order (a safe assumption).  Use this method and loop over all the
8945         selected objects in the entry when calling RemoveValueChanged and
8946         AddValueChanged.
8947         
8948         * GridEntry.cs: Make this handle multiple selected objects.
8949         .Value returns null if not all the selected objects share the same
8950         value.
8952 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
8953         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
8954           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
8955           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
8956           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
8957           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
8958         add additional functionality.
8960 2006-10-12  Mike Kestner  <mkestner@novell.com>
8962         * ErrorProvider.cs : new ToolTipWindow ctor sig.
8963         * HelpProvider.cs : new ToolTipWindow ctor sig.
8964         * ToolTip.cs : remove ToolTip param from Window sig since it is
8965         not used.
8966         * ToolBar.cs : add tooltip support.  Fixes #79565.
8968 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
8970         * ComboBox.cs: move the events in set_SelectedIndex to 
8971         after the call to HighlightIndex in order to avoid 
8972         possible recursion and subsequent problems with the call
8973         to HighlightIndex and include a range check in 
8974         set_HighlightIndex. Fixes #79588
8975         
8976 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
8978         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
8979         to ui thread's settings instead of sunday. 
8980         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
8982 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
8984         * DateTimePicker.cs
8985         * MonthCalendar.cs
8986         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
8987         and implement missing functionality (selecting different parts 
8988         of the date and edit them individually with the keyboard).
8989         
8990 2006-10-11  Chris Toshok  <toshok@ximian.com>
8992         * Control.cs (OnInvalidated): fix NRE relating to last change.
8994 2006-10-11  Chris Toshok  <toshok@ximian.com>
8996         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
8997         atoms in _NET_WM_STATE here if the window is maximized.  We need
8998         to do this because we're *replacing* the existing _NET_WM_STATE
8999         property, so those atoms will be lost otherwise, and any further
9000         call to GetWindowState will return Normal for a window which is
9001         actually maximized.  Fixes #79338.
9003 2006-10-11  Jackson Harper  <jackson@ximian.com>
9005         * TextControl.cs: Special case for setting selection end to
9006         selection start, we basically kill the anchor.
9007         - some todo comments.
9009 2006-10-11  Chris Toshok  <toshok@ximian.com>
9011         * Control.cs: switch to using an "invalid_region" to track which
9012         parts of the image buffer need updating.  This is more code than
9013         the simple fix from r66532.  That version just attempted to always
9014         fill the entire buffer on redraw, which turns out to be
9015         inefficient when invalidating small rectangles.  This version
9016         simply adds the invalid rectangle to the invalid region.  When we
9017         get any WM_PAINT message we see if it can be filled using the
9018         image buffer, and if it can't (if the paint event's clip rectangle
9019         is visible in the invalid region) we first fill the image buffer.
9020         So, the image buffer is still a cache, we just fill it lazily.
9022         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
9023         need it any longer.
9025 2006-10-11  Chris Toshok  <toshok@ximian.com>
9027         * XplatUIX11.cs (SetWindowPos): we need to update both position as
9028         well as size after calling XMoveResizeWindow.  This keeps us from
9029         ignoring future SetWindowPos calls.  Fixes the disappearing
9030         DateTimePicker in the ToolBarDockExample from bug #72499.
9032 2006-10-11  Chris Toshok  <toshok@ximian.com>
9034         * TextBoxBase.cs: reorder things a bit when it comes to
9035         resizing-causing-recalculation.  we were recalculating the
9036         document when our position was changed, which shouldn't happen.
9037         We only care about size changes.  Clear up some more redundant
9038         recalculation calls while I'm at it.  This makes the toolbar dock
9039         example snappy when you're just dragging toolbars around (since it
9040         causes a relayout whenever you move one.)
9042 2006-10-11  Chris Toshok  <toshok@ximian.com>
9044         * ToolBarButton.cs (get_Rectangle): this only returns
9045         Rectangle.Empty if Visible == false, or Parent == null.
9046         Parent.Visible doesn't matter.
9048 2006-10-10  Chris Toshok  <toshok@ximian.com>
9050         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
9051         by .net 1.1, so switch to an internal method instead.
9053 2006-10-10  Chris Toshok  <toshok@ximian.com>
9055         * Control.cs (WM_PAINT): when a control is double buffered we draw
9056         initially to the ImageBuffer and then copy from there.  But when a
9057         parent control which has child controls is double buffered, the
9058         initial drawing doesn't encompass the entire ClientRectangle of
9059         the parent control, so we end up with uninitialized bits (this is
9060         easily seen by dragging the top toolbar in
9061         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
9062         manually set the ClipRectangle of the paint_event (only the one we
9063         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
9064         of the nastiness in bug #72499.
9066         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
9067         which we use in Control.cs's WM_PAINT handling.
9069 2006-10-10  Jackson Harper  <jackson@ximian.com>
9071         * TextBoxBase.cs: Finish off the autoscrolling stuff.
9073 2006-10-10  Chris Toshok  <toshok@ximian.com>
9075         * Cursor.cs: Apply a slightly different patch to the one suggested
9076         in #79609.
9078 2006-10-10  Jackson Harper  <jackson@ximian.com>
9080         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
9081         not the parent form.
9082         * TextControl.cs: use difference in old line count vs new count to
9083         calculate how many lines were added, this takes into account soft
9084         line breaks properly.
9086 2006-10-10  Chris Toshok  <toshok@ximian.com>
9088         * LinkLabel.cs: don't call MeasureCharacterRanges against a
9089         rectangle located at 0,0 and the size of the text.  Use
9090         ClientRectangle instead.  This fixes rendering of non-left aligned
9091         link labels.
9093 2006-10-10  Jackson Harper  <jackson@ximian.com>
9095         * TextBoxBase.cs: When we set the selection start position the
9096         caret.
9097         * TextControl.cs: Need to update the caret when we decrement it to
9098         zero.
9099         - Make sure that the selection_visible flag gets reset to false if
9100         the selection isn't visible.  Before this you could get it set to
9101         visible by changing the selection start, then changing the end to
9102         equal the start.
9104 2006-10-09  Jackson Harper  <jackson@ximian.com>
9106         * TreeView.cs: Don't update scrollbars when we aren't visible.
9107         * TreeNodeCollection.cs: Only need to update scrollbars if being
9108         added to an expanded visible node or the root node.
9110 2006-10-09  Chris Toshok  <toshok@ximian.com>
9112         * XplatUIX11.cs (SendMessage): fix NRE.
9114 2006-10-09  Jackson Harper  <jackson@ximian.com>
9116         * TextBoxBase.cs: Implement horizontal autoscrolling.
9117         * TextControl.cs: Add a movement types that allows moving forward
9118         and backwards without wrapping.
9120 2006-10-09  Mike Kestner  <mkestner@novell.com>
9122         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
9123         with focus "expansion" of labels.  Fixes #79532 and then some.
9124         * ThemeWin32Classic.cs : add LineLimit to ListView label format
9125         when wrapping.
9127 2006-10-09  Jackson Harper  <jackson@ximian.com>
9129         * TextBoxBase.cs: Set the default max values to MaxValue since
9130         we use the scrollbar for autoscrolling and the default value is
9131         100.  If we don't do this the caret won't keep up with typing
9132         after about 18 characters.
9133         * TextControl.cs: Make sure the selection is offset by the
9134         viewport x.  This fixes selection when using auto scrolling.
9136 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
9137         
9138         * Form.cs: The active control should be selected after the 
9139         OnLoad so that any child control initialization that affects
9140         the selection is done. Fixes #79406
9142 2006-10-06  Chris Toshok  <toshok@ximian.com>
9144         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
9145         to have no evil effects.
9147         - Stop selecting StructureNotifyMask on non-toplevel windows.
9149           The only way children should be resized is by using the SWF api,
9150           and we already send WM_WINDOWPOSCHANGED messages in those cases.
9151           Toplevel windows can be interacted with via the window manager,
9152           and so we keep the input mask there.
9154           The other event StructureNotifyMask gives us (that we care
9155           about) is DestroyNotify.  The code is already structured such
9156           that it assumes we won't be getting a DestroyNotify event for
9157           the window we pass to XDestroyWindow (which is what
9158           StructureNotifyMask is supposed to guarantee.)  So, that code
9159           shouldn't be affected by this either.
9161         - Stop selecting VisibilityChangeMask altogether.
9163           We weren't doing anything with the resulting events anyway.
9164         
9165         This vastly reduces the number of X requests and events we see
9166         when resizing/laying out a large ui.
9168 2006-10-06  Chris Toshok  <toshok@ximian.com>
9170         * ScrollableControl.cs (DisplayRectangle): we need to take into
9171         account the DockPadding regardless of whether or not auto_scroll
9172         == true.  rework this slightly to this effect, and fix bug #79606,
9173         and part of #72499 (you can now see the drag handles and drag
9174         toolbars around).
9176 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
9178         * ListViewItem.cs: Collections of selected and checked items are now
9179         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
9180         we mark the collection "dirty".
9181         * ListView.cs: Marked collections readonly. Modified UpdateSelection
9182         to only clear SelectedItems when a new item is selected and MultiSelect
9183         is enabled. CheckedItems and SelectedItems now subscribe to Changed
9184         event of ListViewItemCollection, and mark its list dirty whenever
9185         that event is fire. This allows us to return selected/checked items 
9186         in the same order as they are in the Items collection. This matches
9187         the MS behavior.
9189 2006-10-06  Chris Toshok  <toshok@ximian.com>
9191         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
9192         right mouse clicks.  Fixes bug #79593.
9194 2006-10-06  Chris Toshok  <toshok@ximian.com>
9196         * Splitter.cs: doh, fix splitters that don't want to cancel the
9197         movement when you drag them.  Also, impose the limits on the
9198         values we send to the SplitterMovingEvent.  Fixes #79598.
9200 2006-10-06  Jackson Harper  <jackson@ximian.com>
9202         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
9203         since we use this for auto scrolling also.
9205 2006-10-05  Chris Toshok  <toshok@ximian.com>
9207         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
9208         beginning to think that most datagrid column types don't need this
9209         method.  Fixes bug #79392.
9211 2006-10-05  Chris Toshok  <toshok@ximian.com>
9213         * DataGrid.cs: move back to a more lazy scheme for creating the
9214         CurrencyManager, so we aren't updating it every time you set
9215         either DataSource or DataMember.  Also, don't call
9216         RecreateDataGridRows if the currency manager hasn't changed.
9218 2006-10-05  Chris Toshok  <toshok@ximian.com>
9220         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
9221         emitted, SelectedIndex should already be updated.  Fixes bug
9222         #78929.
9224 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
9226         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
9227           ToolStripTextBox.cs: Initial commit.
9228         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
9230 2006-10-05  Jackson Harper  <jackson@ximian.com>
9232         * TabControl.cs: We need to invalidate the tab control area when
9233         new ones are added (duh).
9235 2006-10-03  Chris Toshok  <toshok@ximian.com>
9237         * Form.cs (ProcessDialogKey): if the focused control is in this
9238         form and is a button, call its PerformClick method here.  Fixes
9239         #79534.
9241 2006-10-04  Jackson Harper  <jackson@ximian.com>
9243         * TabPage.cs: Ignore setting of Visible, and add an internal
9244         method for setting the controls visibility.  TabPage's Visible
9245         property is a little strange on MS, this seems to make us
9246         compatible, and fixes cases where people set all the tab pages to
9247         visible.
9248         * TabControl.cs: Use the new internal setting on tab pages
9249         visibility.
9251 2006-10-03  Mike Kestner  <mkestner@novell.com>
9253         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
9255 2006-10-03  Mike Kestner  <mkestner@novell.com>
9257         * ListView.cs : use is_visible instead of Visible to check if 
9258         scrollbars should be placed/sized.  Also some max_wrap_width
9259         love for LargeIcon view.  [Fixes #79533]
9261 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
9263         * TextControl.cs :
9264           Make set_TextAlign() do actually update the align. Fixed #78403.
9266 2006-10-03  Chris Toshok  <toshok@ximian.com>
9268         * DataGrid.cs: fix a crash when switching datasources if the
9269         vertical scrollbar is at someplace other than Value = 0.  Also,
9270         reduce the number of recalculation passes we do in SetDataSource
9271         from 2 to 1.
9273 2006-10-03  Jackson Harper  <jackson@ximian.com>
9275         * TextBoxBase.cs: Move the if value the same bail check up, we
9276         don't want to empty the document if it is already empty, this
9277         seems to severly mess up the caret.  TODO: I should probably fix
9278         the empty statement to update teh caret somehow.
9280 2006-10-03  Chris Toshok  <toshok@ximian.com>
9282         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
9283         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
9284         reflection, an internal row type, properties on said type, etc.)
9285         will work with our datagrid.  Fixes #79531.
9287 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
9289         * FileDialog.cs: Don't crash if a path is not accessible
9290           (System.UnauthorizedAccessException). Fixes #79569.
9291         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
9292           a ':' too. Return unknown icon for those paths/files.
9294 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
9296         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
9297         GetContainerControl returns null.
9299 2006-10-02  Chris Toshok  <toshok@ximian.com>
9301         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
9302         call to XGetWindowAttributes instead of "handle".  fixes an X
9303         error using notifyicon after the NotifyIconWindow to Form base
9304         class switch.
9306 2006-10-02  Chris Toshok  <toshok@ximian.com>
9308         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
9309         server grab and looping we need to do to get down to the most
9310         deeply nested child window.
9311         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
9312         QueryPointer again after the WarpPointer so we can generate a
9313         proper (fake) MotionNotify event to be enqueued in the destination
9314         window's queue.
9315         (GetCursorPos): call QueryPointer.
9317         Fixes #79556.
9319 2006-10-02  Jackson Harper  <jackson@ximian.com>
9321         * NotifyIcon.cs: Derive the notify icon from a form, so things
9322         like FindForm work on it.
9323         - Swallow the WM_CONTEXTMENU message, since that is generated on
9324         mouse down, and context menu is a mouse up kinda guy.  I believe
9325         the correct fix here is probably to make the notify icon entirely
9326         NC area, but this seems to work fine for anyone not manipulating
9327         WndProc.
9329 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
9331         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
9332           ToolStripItemCollection.cs, ToolStripLabel.cs,
9333           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
9334           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
9335           Initial implementation.
9336         * TextRenderer.cs: Provide padding to MeasureText.
9338 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
9340         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
9341         of ButtonBaseAccessibleObject. Fix bug #79552.
9343 2006-10-02  Jackson Harper  <jackson@ximian.com>
9345         * MdiWindowManager.cs: When maximizing use the containers client
9346         rect, not it's bounds, so nc area is accounted correctly.
9347         - Use the parent form's size for the menu position, since the
9348         client isn't always the full form size.
9350 2006-10-01  Chris Toshok  <toshok@ximian.com>
9352         * ScrollableControl.cs: make sure neither right_edge or
9353         bottom_edge are < 0, since they're used as LargeChange for the
9354         horiz/vert scrollbars respectively.  Fixes #79539.
9356 2006-10-01  Chris Toshok  <toshok@ximian.com>
9358         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
9359         the xplatuix11 code can cause us to destroy/recreate our handle.
9361         * XplatUIX11.cs
9362         (SystrayAdd):
9363         - this code can be invoked many times for the same Hwnd.  Make
9364           sure we only destroy the client window once (the first time this
9365           method is called).  This fixes bug #79544.
9366         - Remove the call to the improperly bound XSync.  why we had two
9367           bindings to this, I will never know, but this call resulted in
9368           events being discarded from the queue(!).
9369         - correct a misunderstanding of _XEMBED_INFO - the second atom is
9370           not our current state but the state we wish to be in.  So, 0 if
9371           we don't want to be mapped.  Change it to 1.
9372         (SystrayRemove): The XEMBED spec makes mention of the fact that
9373         gtk doesn't support the reparent of client windows away from the
9374         embedder.  Looking at gtksocket-x11.c seems to agree with this.
9375         The only avenue we have for removing systray icons is to destroy
9376         them.  We don't want the handle to go away for good, though, so
9377         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
9378         #79545.
9379         
9380 2006-10-01  Chris Toshok  <toshok@ximian.com>
9382         * Form.cs (WndProc): inline the native_enabled variable usage into
9383         the cases in which it's used.  Fixes #79536.
9385 2006-09-29  Mike Kestner  <mkestner@novell.com>
9387         * ListView.cs : toggle the selection state for ctrl clicks in 
9388         multiselect mode. [Fixes #79417]
9390 2006-09-29  Mike Kestner  <mkestner@novell.com>
9392         * ListView.cs : kill CanMultiSelect and refactor the selection
9393         code to support multiselection in the absence of mod keys. Steal
9394         arrow/home/end keys by overriding InternalPreProcessMessage to
9395         restore regressed keynav behavior.
9396         [Fixes #79416]
9398 2006-09-29  Jackson Harper  <jackson@ximian.com>
9400         * MdiClient.cs: Repaint the titlebars when the active window is
9401         changed.
9403 2006-09-29  Chris Toshok  <toshok@ximian.com>
9405         * Application.cs: when entering a runloop with a modal, make sure
9406         the hwnd is enabled.  Fixes #79480.
9408 2006-09-29  Chris Toshok  <toshok@ximian.com>
9410         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
9411         when ListManager.CanAddRows == false, bump us back one.
9413         * DataGridColumnStyle.cs (ParentReadOnly): remove the
9414         listmanager.CanAddRows check.  This makes ArrayLists uneditable
9415         using a datagrid, which is not right.
9416         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
9417         is an IEditable, but call property_descriptor.SetValue regardless.
9418         fixes #79435.
9420 2006-09-29  Chris Toshok  <toshok@ximian.com>
9422         * DataGridBoolColumn.cs: we need to test equality in the face of
9423         possible null values (as is the case with the default NullValue).
9424         This patch keeps us from crashing in that case.
9426 2006-09-29  Jackson Harper  <jackson@ximian.com>
9428         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
9429         here, since it will get called for every node collection in the
9430         tree. This is now done in the treeview once the sorting is
9431         finished.
9432         * TreeView.cs: Recalculate the visible order, and update the
9433         scrollbars after sorting, set the top nope to the root so that the
9434         recalc actually works.
9436 2006-09-29  Chris Toshok  <toshok@ximian.com>
9438         * LinkLabel.cs: more handling of the default link collection in
9439         the face of LinkArea manipulation.  The default link collection
9440         contains 1 element (start=0,length=-1).  If the user sets LinkArea
9441         to anything and the links collection is the default, clear it.
9442         Then only add the link if its nonempty.  Fixes #79518.
9444 2006-09-29  Chris Toshok  <toshok@ximian.com>
9446         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
9447         piece correctly when we hit a '\n'.  Fixes #79517.
9449 2006-09-29  Chris Toshok  <toshok@ximian.com>
9451         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
9452         change the binding of gdk_init_check to take two IntPtr's, and
9453         pass IntPtr.Zero for both of them.  Fixes #79520.
9455 2006-09-29  Mike Kestner  <mkestner@novell.com>
9457         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
9458         [Fixes #78779]
9460 2006-09-28  Jackson Harper  <jackson@ximian.com>
9462         * XplatUIX11.cs: When translating NC messages make sure we go from
9463         whole window to screen, not client window to screen.
9464         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
9465         method doesn't exist
9466         - Skip over controls that aren't forms when arranging.
9468 2006-09-28  Jackson Harper  <jackson@ximian.com>
9470         * XplatUIWin32.cs: Clip the rect to the parent window.
9471         * XplatUIStructs.cs: Add clipping modes struct.
9472         * InternalWindowManager.cs: New private method that factors title
9473         bar heights in when calculating the pos of an NC mouse message.
9474         - Use SendMessage to force a paint when the form's size is changed
9475         instead of painting the decorations immediately.
9476         - Don't let the NC button click messages get to DefWndProc,
9477         because they will attempt to handle windowing themself, and this
9478         messes up z-order (it will put them in front of the scrollbars).
9479         * XplatUIX11.cs: Make sure that we don't reset window managers if
9480         we already have one (ie the window is an MDI window).
9482 2006-09-28  Chris Toshok  <toshok@ximian.com>
9484         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
9485         menu code really needs going over.
9487 2006-09-27  Chris Toshok  <toshok@ximian.com>
9489         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
9490         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
9491         window is maximizable.  So, we need to make sure that even if we
9492         clear the border/wm frame of those functions, they're still
9493         available (basically, we remove the decoration without removing
9494         the function).  Half the fix for #79338.
9496 2006-09-27  Chris Toshok  <toshok@ximian.com>
9498         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
9499         Fixes bug #79515.
9501 2006-09-27  Chris Toshok  <toshok@ximian.com>
9503         * Splitter.cs: reorder things a bit so that we don't actually
9504         draw/move the splitter until after calling OnSplitterMoving.  This
9505         lets users cancel/disallow the movement by explicitly setting
9506         event.SplitX/SplitY.  Fixes #79372.
9508 2006-09-27  Jackson Harper  <jackson@ximian.com>
9510         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
9511         because it is most likely on a window being destroyed, and that
9512         will give us an X11 error.
9514 2006-09-27  Chris Toshok  <toshok@ximian.com>
9516         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
9517         the dropdown button now toggles between showing and hiding the
9518         dropdown.  Also, get rid of dropdown_form_showing and just use
9519         dropdown_form.Visible.  We still don't do a grab, but I'll leave
9520         that part to someone who has handled Capture-fu before.
9522 2006-09-27  Chris Toshok  <toshok@ximian.com>
9524         * DataGrid.cs: return false if alt isn't pressed when '0' is
9525         pressed.  this keeps the '0' key from being swallowed, and fixes
9526         bug #79350.
9528 2006-09-27  Chris Toshok  <toshok@ximian.com>
9530         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
9531         Calling Refresh (in response to a scrollbar event) screws up the
9532         scrollbar painting.  Fixes bug #78923.
9534 2006-09-27  Chris Toshok  <toshok@ximian.com>
9536         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
9537         then insert into hashtable" blocks threadsafe.
9539 2006-09-27  Chris Toshok  <toshok@ximian.com>
9541         * MessageBox.cs (CreateParams): the styles should be |'ed with our
9542         baseclass's, since otherwise the
9543         ControlBox/MinimizeBox/MaximizeBox assignments above have no
9544         effect.  This gets the close button back in messageboxes.
9546 2006-09-27  Chris Toshok  <toshok@ximian.com>
9548         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
9549         flag, not just != 0.  this makes flags that are actually multiple
9550         bits (like WS_CAPTION) work.  fixes bug #79508.
9552 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
9554         * PageSetupDialog.cs: add support for getting and settings the 
9555         paper size, source and orientation.
9557 2006-09-26  Chris Toshok  <toshok@ximian.com>
9559         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
9560         and caption == "", we need to remove the resize handles as well as
9561         the title bar.
9563         * Control.cs (set_Text): turns out that setting Text on a form
9564         should change the WM styles on the window, since if ControlBox ==
9565         false, the only way to get a window border is to have a non-""
9566         Text property.  check winforms/forms/text.cs for an example.  so,
9567         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
9568         update both window styles and title.  This fixes a lot of dialogs
9569         (including the preferences dialog in MonoCalendar.)
9571 2006-09-26  Chris Toshok  <toshok@ximian.com>
9573         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
9574         control isn't a Form), call Win32ShowWindow to hide the window,
9575         but don't update the control Visible property.  When we reparent
9576         back to a parent control, call SetVisible in order for the
9577         window's visibility to be reinstated.
9579         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
9580         the FosterParent.
9582         * Control.cs (ControlCollection.Remove): remove that value.Hide()
9583         call for good, since it breaks MonoCalendar (and other things I'm
9584         sure.) Also, set all_controls to null *after* the owner calls,
9585         which end up regenerating it.
9586         (ChangeParent): allow new_parent to be == null, passing
9587         IntPtr.Zero down to XplatUI.
9589         this fixes #79294 the right way.
9591 2006-09-26  Mike Kestner  <mkestner@novell.com>
9593         * GridEntry.cs : internal SetParent method.
9594         * PropertyGrid.cs : attach to property changed on the proper
9595         target if we have a hierarchical grid with subobjects. Setup
9596         GridItem.Parent for hierarchical items.
9597         * PropertyGridView.cs : Set value on the correct target for
9598         hierarchical grids. [Fixes #78903]
9600 2006-09-26  Chris Toshok  <toshok@ximian.com>
9602         * Control.cs (ChildNeedsRecreating): this should return true if
9603         either we're being recreated and the child is in our list, or our
9604         parent is waiting for our recreation.
9606 2006-09-26  Chris Toshok  <toshok@ximian.com>
9608         * Control.cs (ControlCollection.Remove): reinstate the
9609         value.Hide() call as suggested in bug #79294.
9611 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
9613         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
9614         coordinates (versus a relative move).
9616 2006-09-26  Chris Toshok  <toshok@ximian.com>
9618         * Control.cs: rework child recreation a little bit.  It turns out
9619         that we race between the DestroyNotify the WM_DESTROY message.  If
9620         the parent gets its DestroyNotify before the child gets the
9621         WM_DESTROY message, the child ends up not recreating (since the
9622         parent finishes its recreation on DestroyNotify, and the child
9623         checks ParentIsRecreating.)
9625         So, instead we store off a list of all the child controls which
9626         need to be recreated when the parent control starts to recreate
9627         itself.  Then, when child controls get their WM_DESTROY message we
9628         check to see if they're in the parent's pending recreation list,
9629         and if so, we recreate.  This removes all dependency on ordering
9630         from the code and fixes the initial MonoCalendar upgrade dialog.
9631         
9632 2006-09-26  Jackson Harper  <jackson@ximian.com>
9634         * TextControl.cs: Use the Line to get the length of the line,
9635         since soft line breaks can change the end line.
9637 2006-09-26  Chris Toshok  <toshok@ximian.com>
9639         * Control.cs (ControlCollection.AddImplicit): don't add the
9640         control again if it's already in one of our lists.  This keeps us
9641         from adding controls over and over again for comboboxes when their
9642         handle gets recreated (as the combobox adds implicit controls in
9643         OnHandleCreated).  Fixes the X11 errors in bug #79480.
9645 2006-09-26  Jackson Harper  <jackson@ximian.com>
9647         * TextControl.cs: When deleting characters make sure that any
9648         orphaned zero lengthed tags get deleted.
9649         - Fix ToString for zero lengthed tags.
9651 2006-09-25  Jackson Harper  <jackson@ximian.com>
9653         * TextControl.cs: When getting a tag at the location there can be
9654         multiple tags at the same spot, these are 0-lengthed tags that
9655         appear when extra formatting has been stuck in a location.  We
9656         need to pull out the last of these 0 lengthed tags.
9658 2006-09-25  Jackson Harper  <jackson@ximian.com>
9660         * TextControl.cs: Fix print out in debug method.
9661         * TextBoxBase.cs: When text is set bail if we are setting to the
9662         previous value.
9663         
9664 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
9666         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
9667           It is now possible to change the selected index in a FontXXXListBox
9668           with the up and down arrow keys from the FontXXXTextBoxes.
9669           Also, send the FontXXXTextBox mouse wheel event to the corresponding
9670           FontXXXListBoxes to match ms.
9672 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
9674         * SystemInformation.cs: Return a clone of the theme's MenuFont because
9675         anyone can dispose it, anytime. All other properties returns enums, 
9676         structs or basic types so they don't need such tricks.
9678 2006-09-22  Jackson Harper  <jackson@ximian.com>
9680         * XplatUI.cs:
9681         * XplatUIWin32.cs:
9682         * Clipboard.cs:
9683         * DataFormats.cs:
9684         * XplatUIOSX.cs:
9685         * XplatUIDriver.cs: Update interface to add a primary selection
9686         flag, so the driver can use the primary selection buffer if
9687         needed.
9688         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
9690         * RichTextBox.cs: We need to supply the data object to paste now
9691         (so we can choose to supply CLIPBOARD or PRIMARY).
9692         * TextBoxBase.cs: Supply data object to paste (see above).
9693         - Middle click uses the primary selection data object.
9694         
9695 2006-09-21  Chris Toshok  <toshok@ximian.com>
9697         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
9698         of SetWMStyles.  It's still a rat's nest and is largely
9699         order-dependent which I dislike immensely.  This also fixes the X
9700         button disappearing from toplevel forms.
9702 2006-09-21  Mike Kestner <mkestner@novell.com>
9704         * ListBox.cs: move Jordi's click/dblclick raising code to the
9705         mouse up handler.
9707 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
9709         * ListBox.cs: Fixes 79450
9711 2006-09-21  Mike Kestner <mkestner@novell.com>
9713         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
9714         to deal with people updating the TreeNodeCollection after the tree
9715         is disposed.  "Fixes" 79330.
9717 2006-09-20  Jackson Harper <jackson@ximian.com>
9719         * TextControl.cs: Push the cursor record onto the undo stack
9720         before the delete action. This fixes 78651.
9722 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
9724         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
9725         CreateParams. Fixes 79329.
9727 2006-09-19  Chris Toshok  <toshok@ximian.com>
9729         * XplatUIX11.cs: a couple of blanket code massage passes to clean
9730         things up a bit.  First, get rid of the NetAtoms array (and the NA
9731         enum), and just embed the atoms as static fields.  Also, add a
9732         couple of functions (StyleSet and ExStyleSet) to clean up all the
9733         bitmask testing of styles.
9735         * X11Structs.cs: remove the NA enum, not needed anymore.
9736         
9737 2006-09-19  Chris Toshok  <toshok@ximian.com>
9739         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
9740         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
9741         added cleanup to get MessageBox titles appearing again, which were
9742         broken by my earlier fix for caption-less/ControlBox-less windows.
9744 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
9746         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
9747           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
9748           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
9749           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
9750           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
9751           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
9752           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
9753           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
9754           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
9755           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
9756           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
9757             Inital import.
9758         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
9759           ToolStripButton.cs: Stubs needed for above.
9760         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
9762 2006-09-15  Chris Toshok  <toshok@ximian.com>
9764         * XplatUIX11.cs:
9765         - make the MessageQueues hashtable Synchronized.
9766         
9767         - SendMessage: if the Hwnd is owned by a different thread, use the
9768         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
9769         thread.  Fixes bug #79201.
9771 2006-09-15  Chris Toshok  <toshok@ximian.com>
9773         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
9774         ControlBox == false, we disallow maximize/minimize/close.  If the
9775         form Caption is "" we also disallow move (and get rid of the Title
9776         decoration).  Unfortunately, regardless of how things are set,
9777         we're stuck with the Title and WM menu.
9779 2006-09-15  Chris Toshok  <toshok@ximian.com>
9781         * Application.cs: add locking around the static message_filters
9782         ArrayList, part of #79196.
9784 2006-09-15  Chris Toshok  <toshok@ximian.com>
9786         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
9787         Form.ControlBox == false, the window has no titlebar nor resize
9788         handles.  fixes bug #79368.
9790 2006-09-15  Chris Toshok  <toshok@ximian.com>
9792         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
9793         >= 0.  Fixes bug #79370.
9795 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
9796         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
9797         * Control.cs:
9798             Add properties: LayoutEngine, Margin, DefaultMargin.
9799             Add method: GetPreferredSize.
9800             Move layout logic from PerformLayout to layout engines. 
9802 2006-09-13  Chris Toshok  <toshok@ximian.com>
9804         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
9805         fix for #79326 broke #78718, so this change addresses that.
9807         - in SendWMDestroyMessages remove the call to
9808         CleanupCachedWindows, since we might be recreating the control and
9809         need to maintain the references to right Hwnd handles.  Also, set
9810         the zombie flag to true for each of the children in the hierarchy
9811         instead of calling hwnd.Dispose.  This will cause GetMessage to
9812         ignore all events for the window except for DestroyNotify.
9814         - In GetMessage, ignore messages except for DestroyNotify for
9815         zombie hwnds.
9816         
9817         * Control.cs: revert the is_recreating fix from the last
9818         ChangeLog.  It's definitely "right", but it breaks switching from
9819         an MDI form to a non-MDI form.  Will need to revisit that.
9821         * Hwnd.cs: add a zombie flag, which means "the
9822         client_window/whole_window handles are invalid, but we're waiting
9823         for the DestroyNotify event to come in for them".  Set the flag to
9824         false explicitly if setting WholeWindow/ClientWindow, and also
9825         when Disposing.
9826         
9827 2006-09-13  Chris Toshok  <toshok@ximian.com>
9829         * XplatUIX11.cs: rework window destruction slightly.
9831         - when destroying the windows associated with a control, we don't
9832         need 2 separate XDestroyWindow calls.  Just the one for the
9833         whole_window (or for client_window if whole_window is somehow
9834         IntPtr.Zero -- can this happen?) is enough.
9836         - reworked SendWMDestroyMessages slightly, so we always dispose
9837         the child control hwnd's after sending the messages.
9838         
9839         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
9840         the two places it was used (one was even using hwnd.Handle and the
9841         other hwnd.client_window.  ugh), adding another call in
9842         SendWMDestroyMessages.  We need this new call because now the
9843         DestroyNotify events in the queue will be ignored for the child
9844         controls (as their hwnd's were disposed, and the window id's
9845         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
9847         - this fixes bug #79326.
9849 2006-09-13  Chris Toshok  <toshok@ximian.com>
9851         * Control.cs: don't always set is_recreating to false at the end
9852         of RecreateHandle, since sometimes we're not done (and won't be
9853         until WndProc handles the WM_DESTROY message).  Also, set
9854         is_recreating to false in the WM_DESTROY handling code.  Part of
9855         the fix for bug #79326.
9857 2006-09-13  Miguel de Icaza  <miguel@novell.com>
9859         * X11DesktopColors.cs: Start the droppage of debugging messages.
9861         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
9863 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
9865         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
9867 2006-09-12  Chris Toshok  <toshok@ximian.com>
9869         * DataGrid.cs (get_ListManager): if the list_manager is null, try
9870         to create it using SetDataSource.  Fixes bug #79151.
9872 2006-09-11  Chris Toshok  <toshok@ximian.com>
9874         * XEventQueue.cs: add a DispatchIdle property.
9876         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
9877         either the queue is null, or the queue has DispatchIdle set to
9878         true.
9879         (DoEvents): set queue.DispatchIdle to false around the
9880         peek/translate/dispatch message loop in this method.  This keeps
9881         Application.Doevents from emitting idle events.  Part of the fix
9882         for #78823.
9884 2006-09-11  Chris Toshok  <toshok@ximian.com>
9886         * DataGrid.cs (set_DataSource): make this work for both the
9887         winforms/datagrid test and ReportBuilder.  It seems as though when
9888         we've created a ListManager (or maybe it's if we have a
9889         BindingContext?), when we set the DataSource it clears the
9890         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
9891         #79333.
9893 2006-09-11  Chris Toshok  <toshok@ximian.com>
9895         * XplatUIX11.cs: deal with queue being null, which happens in all
9896         the Clipboard functions.  Fixes one of the two problems mentioned
9897         in #78612.
9899 2006-09-11  Chris Toshok  <toshok@ximian.com>
9901         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
9902         button on various spots (including outside the menu) works closer
9903         to MS, and doesn't crash.  Fixes #79343.
9905 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
9907         * ListView.cs: Do not initialize item_sorter in init. To match MS,
9908         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
9909         and the internal comparer is set. When a new ListViewItemSorter is set,
9910         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
9911         was specified. No further processing is necessary if SortOrder is set
9912         to it's current value. If Sorting is modified to None, and View is
9913         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
9914         (either custom or our internal ItemComparer) to null, on 1.0 profile
9915         only set item_sorter to null if its our internal IComparer. If Sorting
9916         is modified to Ascending or Descending, then use our internal IComparer
9917         if none is set, and if the current IComparer is our internal one then:
9918         on 2.0 profile always replace it with one for new Sorting, and on 1.0
9919         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
9920         Enum.IsDefined to verify whether a valid View value is specified in
9921         its setter. Automatically sort listview items when listview is
9922         created. In Sort, do nothing if ListView is not yet created, or if
9923         no item_sorter is set (no Sorting was set, Sorting was explicitly set
9924         to None or ListViewItemSorter was set to null). Added Sort overload
9925         taking a bool to indicate whether the ListView should be redrawn when
9926         items are sorted (we use this in ListViewItemCollection to avoid double
9927         redraws). Modified our internal IComparer to take the sort order into
9928         account. In Add and AddRange methods of ListViewItemCollection, also
9929         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
9930         view), but use overload with noredraw option to avoid double redraw.
9931         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
9932         true when View is Tile, and do the same when attempting to set View to
9933         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
9934         for selected/checked indices, as it involves overhead when sorting is
9935         done while these collections are not used all that often. Instead
9936         we'll build the indices on demand. Modified IList implementation of
9937         CheckedIndexCollection to use public methods if object is int.
9938         Modified CheckedListViewItemCollection to hide checked items if
9939         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
9940         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
9941         IList implementation in SelectedIndexCollection to use public methods
9942         if object is int. Modified SelectedListViewItemCollection to hide
9943         selected items if listview is not yet created.
9944         * ListViewItem.cs: CheckedIndices list no longer needs to be
9945         maintained separately (see ListView changes). Also clone font, fixes
9946         test failure.
9948 2006-09-11  Mike Kestner  <mkestner@novell.com>
9950         * ComboBox.cs: if we are updating the contents of the currently
9951         selected index, refresh the control or the textbox selection.
9952         [Fixes #79066]
9954 2006-09-11  Mike Kestner  <mkestner@novell.com>
9956         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
9957         the 'specified' logic has been moved there.  This seems like a bug 
9958         in Control.cs, since our current SetBoundsCore completely ignores 
9959         the specified parameter.  Peter's commit seems to indicate that is 
9960         the way the MS control implementation works.  [Fixes #79325]
9962 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
9964         * XplatUI.cs: Set default_class_name to be composed
9965         of current domain id. This allows MWF to be loaded in multiple
9966         domains on Win32.
9968 2006-09-09  Miguel de Icaza  <miguel@novell.com>
9970         * X11Keyboard.cs: If we are unable to obtain the input method, do
9971         not call CreateXic to create the input context.   Should fix
9972         #78944/79276.
9974 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
9976         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
9977           Simplified gnome support by adding more pinvokes to get the
9978           icon for a file or mime type.
9980 2006-09-08  Jackson Harper  <jackson@ximian.com>
9982         * MenuAPI.cs: Deslect popup context menu items before closing the
9983         window, so that you don't see the previously selected item
9984         selected when you reopen the menu.
9985         * TextControl.cs: Update the cursor position even if we don't have
9986         focus.  This fixes typing in things like the ComboBox.  I'm not
9987         totally sure we should always set the visibility if we don't have
9988         focus, but couldn't find any corner cases where the cursor showed
9989         up when it shouldn't.
9991 2006-09-08  Chris Toshok  <toshok@ximian.com>
9993         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
9994         our arrays are length 256.  & 0xff before indexing.  Fixes the
9995         crash in bug #78077.
9996         
9997 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9999         * ThemeWin32Classic.cs: 
10000         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
10001         is true. Handle that check box too.
10003 2006-09-07  Chris Toshok  <toshok@ximian.com>
10005         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
10006         79244.
10008 2006-09-07  Chris Toshok  <toshok@ximian.com>
10010         * Control.cs: in set_BackColor only do the work if
10011         background_color != value.
10013         * XplatUIX11.cs: move the clearing of invalid areas (both client
10014         and nc) to the same block of code where we set (nc_)expose_pending
10015         to false.  That is, move it from PaintEventEnd to PaintEventStart,
10016         so things that cause invalidates from within OnPaint will trigger
10017         another call to OnPaint.  Fixes bug #79262.
10019 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
10021         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
10022         * FileDialog.cs: Fix typo
10024 2006-09-07  Jackson Harper  <jackson@ximian.com>
10026         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
10027         for tab pages if they have any.
10029 2006-09-06  Mike Kestner  <mkestner@novell.com>
10031         * Splitter.cs: use the "current" rect when finishing drag handle
10032         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
10034 2006-09-06  Mike Kestner  <mkestner@novell.com>
10036         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
10037         support offset splitters. [Fixes #79298]
10039 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
10041         * Mime.cs: Fixed a bug that could override the global mime type
10042           result.
10044 2006-09-05  Jackson Harper  <jackson@ximian.com>
10046         * TabControl.cs: Better calculation method for setting the slider
10047         pos. Prevents crashes on really wide tabs.
10048         - Draw Image on tab pages if an image list is used.
10050 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10052         * MonthCalendar.cs: When Font changes, the Size should be
10053         updated to fit the new font's space requirements.
10055 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
10057         * ListBox.cs: If the items are cleared with Items.Clear set
10058           top_index to 0.
10060 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10062         * MonthCalendar.cs: Handle arrow keys as input keys. Also
10063         fire DateChanged event instead of DateSelected event when
10064         the date was changed by keyboard interaction.
10066 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10068         * DateTimePicker.cs: Handle DateChanged for the associated
10069         month_calendar control, and set month_calendar.Font from 
10070         OnFontChanged method, as well as resize the height of the
10071         control when needed. Make PreferredHeight proportional.
10073 2006-09-01  Chris Toshok  <toshok@ximian.com>
10075         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
10076         properties.
10078         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
10080 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
10082         * FileDialog.cs: Set ClientSize instead of window size, to allow space
10083           for decorations (Fixes #79219)
10085 2006-09-01  Mike Kestner  <mkestner@novell.com>
10087         * ComboBox.cs: first stab at sorting plus some selection handling
10088         fixes to bring us more in line with MS behavior.  Also switches back
10089         to index based selection.  Alternative patches for index-based 
10090         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
10091         and latency@gmx.de on bug 78848.  I assume they were similar to this
10092         code I've had simmering in my tree forever.
10093         [Fixes #78848]
10095 2006-09-01  Chris Toshok  <toshok@ximian.com>
10097         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
10098         when setting list position guard against ending up with a -1 index
10099         (the other part of the fix for #78812).  Should probably make sure
10100         we don't need the analogous fix in the ItemDeleted case.
10102         * DataGrid.cs:
10103         - in SetDataSource, work around the fact that the way
10104         OnBindingContextChanged is invoked will cause us to re-enter this
10105         method.  I'll remove the hack once I investigate
10106         OnBindingContextChanged.
10108         - fix the logic in set_DataSource and set_DataMember (basically
10109         what to do if the other of the two is null.)
10110         
10111         - in OnListManagerItemChanged, we need to take into account the
10112         edit row when deciding whether or not to call RecreateDataGridRows
10113         (part of the fix for #78812).
10115 2006-09-01  Jackson Harper  <jackson@ximian.com>
10117         * Splitter.cs: Don't do anything if there is no control to affect
10118         (prevents us from crashing in weird tet cases).
10119         * TreeView.cs: Bounding box for the mouse movement reverting
10120         focus/selection back to previously selected node.  This matches
10121         MS, and makes the tree a lot more useable.
10122         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
10123         use clipping so they are not drawn.  This fixes when the control
10124         is set to have a transparent background, or if it was over an
10125         image.
10127 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
10129         * MimeIcon.cs: Improved handling for reading default icons when
10130           using gnome (2.16 made it necessary). Check and read svg icons
10131           first, then 48x48 and then 32x32 icons.
10133 2006-08-31  Chris Toshok  <toshok@ximian.com>
10135         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
10136         visible.
10138         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
10139         ProcessKeyPreview.  Fixes part of #77806.
10141         * DataGrid.cs: big patch.
10143         - revert the queueing up of DataSource/DataMember if inside
10144         BeginInit/EndInit calls.  That's not the way the datagrid achieves
10145         its delayed databinding.  Instead, call SetDataSource in
10146         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
10147         #78811.
10149         - Also, it wasn't mentioned in #78811, but the test case exhibits
10150         behavior that was lacking in our datagrid implementation - Columns
10151         that have mapping names that don't exist in the datasource's
10152         properties aren't shown.  Yuck.  To fix this I added the bound
10153         field to the column style, and basically any calculation to figure
10154         out anything about columns uses a loop to find the bound columns.
10155         still need to investigate if I can cache an array of the bound
10156         columns or if the indices must be the same.
10158         - When setting CurrentCell, we no longer abort if the cell being
10159         edited was in the add row.  This fixes the other part of #77806.
10161         - The new code also fixes #78807.
10162         
10163         * ThemeWin32Classic.cs: perpetrate the same disgusting
10164         column.bound field hack, and only render bound fields.
10166 2006-08-31  Chris Toshok  <toshok@ximian.com>
10168         * DataGridColumnStyle.cs: add bound field.  this field is true if
10169         the datasource has a property corresponding to the mapping name.
10171         * DataGridTableStyle.cs: set the bound field on the column styles
10172         depending on whether or not we have a column for that property.
10174 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
10176         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
10177           splitter control (fixes #79228)
10179 2006-08-31  Chris Toshok  <toshok@ximian.com>
10181         * DataGridColumnStyle.cs: we need to delay the assignment of
10182         property descriptor until the last possible moment due to the lazy
10183         databinding stuff in the datagrid.  Also, fix the exceptions
10184         thrown by CheckValidDataSource to match MS.
10186 2006-08-31  Jackson Harper  <jackson@ximian.com>
10188         * Form.cs: When activated select the active control, if there is
10189         no active control, we select the first control.
10190         * XplatUIX11.cs: If there is no focus control when we get a
10191         FocusIn event, find the toplevel form and activate it.  This
10192         occurs when you popup a window, it becomes the focus window, then
10193         you close that window, giving focus back to the main window.
10195 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10197         * MonthCalendar.cs: 
10198         * ThemeWin32Classic.cs: Cache Font in bold style, as well
10199         as StringFormat with Center alignments in MonthCalendar,
10200         instead of creating new ones when drawing the control. 
10201         Also, draw the month name in bold style.
10203 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
10205         * Control.cs:
10206           - PerformLayout(): It would seem MS performs the fill even if the 
10207             control is not visible (part of #79218 fix)
10208           - ResetBackColor(): Use the setter to reset the color, to allow
10209             overriders to catch the change.
10210         * Form.cs:
10211           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
10212           - CreateHandle(): dito (part of $79218 fix)
10213           - Don't set an icon if we have a dialog
10214         * ScrollableControl.cs:
10215           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
10216           - ScrollIntoView(): No need to scroll if control is already visible
10217             (resolves fixme and fixes #79218)
10219 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10221         * MonthCalendar.cs: Change proportions in SingleMonthSize
10222         to match the aspect of the original control.
10224 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
10226         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
10227           get updated when they get maximized.
10229 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
10231         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
10233 2006-08-29  Chris Toshok  <toshok@ximian.com>
10235         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
10237 2006-08-29  Jackson Harper  <jackson@ximian.com>
10239         * TreeView.cs: Need to track selected node and highlighted node,
10240         they aren't always the same thing, when the mouse is down on a
10241         node it is hilighted, but not selected yet.
10242         - Do the HideSelection stuff right
10243         - Need to focus on rbutton mouse down. And redraw selection when
10244         right click is mouse upped.
10246 2006-08-29  Mike Kestner  <mkestner@novell.com>
10248         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
10249         when SubItems.Count < Columns.Count.  [Fixes #79167]
10251 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
10253         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
10255 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
10257         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
10258           from X. Only send based on ConfigureNotify if we don't have the
10259           correct location in hwnd (if the window manager moved us)
10261 2006-08-28  Mike Kestner  <mkestner@novell.com>
10263         * ListView.cs: remove a TODO. 
10264         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
10265         [Fixes ListView part of #79166]
10267 2006-08-28  Mike Kestner  <mkestner@novell.com>
10269         * ListView.cs: move wheel handler to parent since it is focused
10270         instead of the item_control now.  [Fixes #79177]
10272 2006-08-28  Mike Kestner  <mkestner@novell.com>
10274         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
10275         when the control is focused. [Fixes #79171]
10277 2006-08-28  Mike Kestner  <mkestner@novell.com>
10279         * ListView.cs: size the item and header controls for empty and
10280         unscrollable views.
10281         * ThemeWin32Classic.cs: draw disabled backgrounds.
10282         [Fixes #79187]
10284 2006-08-28  Chris Toshok  <toshok@ximian.com>
10286         * Form.cs: remove unused "active_form" static field.
10288         * Hwnd.cs: lock around accesses to static windows collection.
10290         * Application.cs: lock threads in Exit ().
10292 2006-08-28  Chris Toshok  <toshok@ximian.com>
10294         * NativeWindow.cs: lock around accesses to window_collection.
10295         
10296 2006-08-28  Chris Toshok  <toshok@ximian.com>
10298         * Control.cs: err, fix this the right way, by locking on controls
10299         when using it.  not by making it synchronized.
10301 2006-08-28  Chris Toshok  <toshok@ximian.com>
10303         * Control.cs: make the static "controls" field synchronized, as it
10304         gets updated from multiple threads.
10306 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
10308         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
10309           Prevent other threads from exiting when calling thread sets quit state.
10310         * XEventQueue.cs: Added PostQuitState property
10312 2006-08-27  Chris Toshok  <toshok@ximian.com>
10314         * AsyncMethodData.cs: add a slot for the window handle.
10316         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
10317         window (the destination control's window, not the foster window).
10319         * Control.cs (BeginInvokeInternal): store the window's handle in
10320         the AsyncMethodData.
10321         
10323 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
10325         * XplatUIX11.cs:
10326           - PostQuitMessage: Removed resetting S.D display handle, we might have
10327             another loop started after calling PostQuitMessage (Fixes #79119)
10328           - Created destructor to reset S.D handle
10330 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
10332         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
10334 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
10336         * TextControl.cs (Insert): Update the caret position even if we don't
10337           have a handle yet, just don't call the driver in that case.
10338         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
10339           to the end of the new selection text (Fixes #79184)
10341 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
10343         * Form.cs (Activate): Only activate if the handle is created)
10344         * Control.c:
10345           - Mark window as invisible when it's disposed
10346           - Check if window handle is created when setting window visible, 
10347             instead of relying just on the is_created variable
10348           - Check if object is disposed when creating the control (Fixes #79155)
10350 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
10352         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
10353           when allowing layout again. Otherwise we re-generate the anchoring 
10354           distance to the border again and actually alter what the user wanted
10355           This is ugly, it'd be better if we used DisplayRectangle instead of
10356           ClientRectangle for Control.UpdateDistances, but that causes us to
10357           have other problems (initial anchoring positons would be wrong)
10358           (Fixes #78835)
10360 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
10362         * Control.cs:
10363           - The size and location setters shouldn't go directly to 
10364             SetBoundsCore, but to SetBounds, which triggers layout on the
10365             parent, then calls SetBoundsCore. (Related to fix for #78835)
10366           - SetBounds: Moved actual location update code into this function
10367             from SetBoundsCore, to match MS. Added call to PerformLayout if
10368             we have a parent (to trigger resizing of anchored parents if the 
10369             child size has changed (see testcase for #78835) 
10370         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
10371           new control code
10372         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
10374 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
10376         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
10377           System.Drawing when a toplevel window gets closed; there might
10378           be other toplevel windows belonging to the same app (Fixes #78052)
10380 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
10382         * FileDialog.cs: After reading FileDialog settings from mwf_config
10383           use Desktop prefix only if a real folder doesn't exist anymore.
10384         * FontDialog.cs: Added char sets.
10385           It is now possible to select the font, size or style with the
10386           textboxes.
10388 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
10390         * PrintPreviewDialog.cs: Use assembly name constants.
10392 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
10394         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
10395           scrollbar from whacking it's buttons)
10397 2006-08-24  Chris Toshok  <toshok@ximian.com>
10399         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
10400         in this patch (aggregating setting Left/Top/Width/Height to
10401         setting Bounds on the scrollbars), but the crux of the fix is in
10402         Recalculate, where we scroll by the remaining scroll_position if
10403         we're hiding a scrollbar.  The 2*$5 reward in the comment is
10404         serious.
10406 2006-08-24  Jackson Harper  <jackson@ximian.com>
10408         * MdiClient.cs:
10409         * MdiWindowManager.cs: If the form is made a non-mdi window we
10410         need to remove the form closed event so that closing forms works
10411         correctly.
10413 2006-08-24  Jackson Harper  <jackson@ximian.com>
10415         * Control.cs: Make IsRecreating internal so that the driver can
10416         check it
10417         - Temporarily remove the Hide when controls are removed, its
10418         making a whole bunch of things not work because visibility isn't
10419         getting reset elsewhere correctly
10420         * Form.cs: Need to do a full handle recreation when the mdi parent
10421         is set.
10422         * XplatUIX11.cs: If we are recreating handles don't dispose the
10423         HWNDs.  What was happening is the handles were being recreated in
10424         SendWMDestroyMessages, but then flow continued on in that method
10425         and destroyed the new handles.
10427 2006-08-23  Jackson Harper  <jackson@ximian.com>
10429         * Form.cs: MdiClient is always at the back of the bus
10430         * Control.cs: When the order of items in the collection is changed
10431         we need to reset the all_controls array
10432         - do the same sorta setup thats done when adding a control when a
10433         control is set on the collection.
10435 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
10437         * TextBoxBase.cs (get_Text): Return an empty array if our document
10438           is empty (fixes #79052)
10440 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
10442         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
10443           on WM_SYSCHAR messages (fixes #79053)
10445 2006-08-23  Chris Toshok  <toshok@ximian.com>
10447         * DataGrid.cs: fix flickering when scrolling vertically.
10449 2006-08-23  Chris Toshok  <toshok@ximian.com>
10451         * DataGrid.cs (EndEdit): only invalidate the row header when we
10452         need to.
10454 2006-08-23  Chris Toshok  <toshok@ximian.com>
10456         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
10457         methods.  fixes the flicker when scrolling around.
10459 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
10461         * FileDialog.cs: Making sure the control is created before we get a 
10462           chance to use it with BeginInvoke (Fixes #79096)
10464 2006-08-23  Chris Toshok  <toshok@ximian.com>
10466         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
10467         width to use when painting the rows.
10469 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
10471         * TextBoxBase.cs:
10472           - Throw ArgumentException if a negative value is passed to SelectionLength
10473           - Update the selection end if start is moved. end needs to be always
10474             after start. (Fixes #79095)
10475           - Track selection length; MS keeps the selection length even if start
10476             is changed; reset on all other operations affection selection
10478 2006-08-22  Jackson Harper  <jackson@ximian.com>
10480         * TreeView.cs: Make sure both scrollbars get displayed and sized
10481         correctly when the other bar is visible.
10482         - Use the original clip rectangle for checking if the area between
10483         the two scrollbars is visible, not the viewport adjusted clipping
10484         rectangle.
10486 2006-08-22  Jackson Harper  <jackson@ximian.com>
10488         * Binding.cs: We don't use IsBinding because it requires the
10489         control to be created, which really shouldn't be necessary just to
10490         set a property on the control.
10492 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10494         * ComboBox.cs: Some CB.ObjectCollection methods must throw
10495         ArgumentNullReferenceException when the argument is null.
10497 2006-08-21  Jackson Harper  <jackson@ximian.com>
10499         * Timer.cs: Track the thread that the timer is started in (NOT
10500         CREATED), this way messages for it will only be triggered on its
10501         queue.
10502         * XEventQueue.cs: Track the timers here, this makes timers per
10503         thread, like MS.
10504         * XplatUIX11.cs: The timers are moved to the XEventQueue.
10506 2006-08-19  Chris Toshok  <toshok@ximian.com>
10508         * XplatUIX11.cs: after further communication with pdb, we get the
10509         best of both worlds.  SetZOrder working for un-Mapped windows, and
10510         no X errors for un-mapped windows.
10512 2006-08-19  Chris Toshok  <toshok@ximian.com>
10514         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
10515         as it was causing pdn toolbars to not have the correct stacking.
10517 2006-08-18  Mike Kestner  <mkestner@novell.com> 
10519         * ListView.cs : guard against negative ClientArea.Width in scrollbar
10520         calculation.  Not sure why control should ever be setting a negative
10521         width though.  Fixes #78931.
10523 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10525         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
10526         null items in ObjectCollection class.
10527         * ListBox.cs.: Likewise.
10529 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
10531         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
10532           as the base method in ThemeWin32Classic should work fine.
10533           Fixed bug #78607.
10535 2006-08-18  Jackson Harper  <jackson@ximian.com>
10537         * Binding.cs: When validating if the value entered doesn't convert
10538         properly reset to the old value.
10539         * RadioButton.cs: Don't fire click when we get focus.
10541 2006-08-18  Jackson Harper  <jackson@ximian.com>
10543         * FileDialog.cs: Paint the selection on the directory combobox the
10544         same way as on MS. 
10546 2006-08-17  Jackson Harper  <jackson@ximian.com>
10548         * ErrorProvider.cs: Don't allow the error control to be selected.
10549         * Control.cs: Don't send the SetFocus messages, the control
10550         activation will do this, and if we do it blindly here validation
10551         does not work.
10553 2006-08-17  Jackson Harper  <jackson@ximian.com>
10555         * Control.cs:
10556         * ContainerControl.cs: Make validation events fire in the correct
10557         order.  TODO: For some reason the first validation event is not
10558         getting fired.
10560 2006-08-17  Mike Kestner  <mkestner@novell.com> 
10562         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
10564 2006-08-17  Mike Kestner  <mkestner@novell.com> 
10566         * ComboBox.cs : implement scroll wheel support for popped-down
10567         state. Fixes #78945. 
10569 2006-08-17  Jackson Harper  <jackson@ximian.com>
10571         * TreeView.cs: Specify treeview actions (old patch that didn't get
10572         committed for some reason).
10573         - Don't let the mouse wheel scroll us too far.  Just want to make
10574         the bottom node visible, not scroll it all the ways to the top.
10576 2006-08-17  Jackson Harper  <jackson@ximian.com>
10578         * XplatUIX11.cs: Mouse wheel events go to the focused window.
10580 2006-08-17  Mike Kestner  <mkestner@novell.com> 
10582         * ComboBox.cs : don't do mouseover selection in simple mode.
10584 2006-08-16  Jackson Harper  <jackson@ximian.com>
10586         * Form.cs: Fire the closing events for all the mdi child windows
10587         when a window is closed.  If the cancel args are set to true, the
10588         main window still gets the event fired, but it doesn't not close.
10589         * MdiWindowManager.cs: Do this closing cleanup in a Closed
10590         handler, instead of when the button is clicked, so cancelling the
10591         close works correctly.
10592         * ComboBox.cs: Send the mouse down to the scrollbar.
10594 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10596         * ListBox.cs: When passing 'null' to SelectedItem,
10597         set SelectedIndex to -1, to unselect items. This is the
10598         observed behaviour in .Net.
10600 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
10602         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
10603           MS flags saying there won't be any. (fixes #78800)
10604         * Control.cs (HandleClick): Made virtual
10606 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
10608         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
10609           cultures. Fixed bug #78399.
10611 2006-08-16  Jackson Harper  <jackson@ximian.com>
10613         * Form.cs: Use the MdiClients MdiChildren property to access
10614         MdiChildren instead of creating the array from the child controls.
10615         * MdiClient.cs: Maintain a separate array of the mdi children, so
10616         that insertion order is maintained when the Z-order is changed.
10618 2006-08-16  Mike Kestner  <mkestner@novell.com> 
10620         * ListView.cs : add an ItemComparer and default to it for sorting.
10621         Fixes #79076, but sorting needs a complete overhaul to be compat with
10622         MS.
10624 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
10626         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
10628 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
10630         * Hwnd.cs (Mapped): Properly traverse the tree
10632 2006-08-15  Chris Toshok  <toshok@ximian.com>
10634         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
10635         pass manager.Current.GetType() to ParseData.  It has to be the
10636         property type.  So, hold off doing the ParseData until we're in
10637         SetPropertyValue where we know the type.  This fixes the crash in
10638         #78821 but the textbox is still empty.
10640 2006-08-15  Chris Toshok  <toshok@ximian.com>
10642         * DataGrid.cs:
10643         - when we're scrolling, only call Edit() again if the
10644         current cell is still unobscured. Fixes bug #78927.
10645         - when handling mousedown on a cell, ensure the cell is visible
10646         before calling Edit.
10647         - remove the properties from DataGridRow, and remove the
10648         DataGridParentRow class altogether.
10649         
10651 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
10653         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
10654           fire OnTextChanged by ourselves. There's no point calling base,
10655           we don't set the base value anywhere else. Fixes #78773.
10657 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10659         * ListBox.cs: Call CollectionChanged when modifying
10660         an item from Items indexer, to update the actual items
10661         in the list box.
10663 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10665         * PrintDialog.cs: Small fixes for focus and a pair of checks,
10666         to match .Net behaviour.
10668 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
10670         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
10672 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
10674         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
10676 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
10678         * MessageBox.cs: Prevent potential NRE exception.
10679         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
10681 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
10683         * MessageBox.cs: Calculate the owner of a messagebox, also make
10684           it topmost. Fixes #78753
10686 2006-08-14  Chris Toshok  <toshok@ximian.com>
10688         * XplatUIX11.cs: A couple of fixes so that metacity will let us
10689         programmatically move windows.  first, set the PPosition hint as
10690         well as the USPosition hint.  Second include some code from pdb
10691         that sets the window type to NORMAL when we set the transient for
10692         hint.  This is because, in the absence of a window type, metacity
10693         thinks any window with TransientFor set is a dialog, and refuses
10694         to let us move it programmatically.  fascists.
10696 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
10698         * XplatUIX11.cs: When setting normal hints, take into consideration
10699           an different hints previously set so we don't delete them (fixes #78866)
10701 2006-08-12  Chris Toshok  <toshok@ximian.com>
10703         * ToolBarButton.cs: make Layout return a boolean, if something to
10704         do with the button's layout changed.
10706         * ToolBar.cs:
10707         - add another parameter to Redraw, @force, which all existing
10708           calls set to true.
10709         - make the Layout function return a boolean which is true if the
10710           layout has actually changed.  Redraw now uses this (and @force)
10711           to determine when to invalidate.  At present the only place
10712           where @force can be false is the call from OnResize, when
10713           background_image == null.  So, resizing a toolbar when the
10714           layout doesn't change results in no drawing.
10716 2006-08-12  Chris Toshok  <toshok@ximian.com>
10718         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
10719         the VScrollBar and HScrollbar reversed.  oops.
10721         * DataGrid.cs: fix the logic that assigns sizes to the implicit
10722         scrollbars.  we were assigning them twice (once in
10723         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
10724         therefore causing two scrollbar resizes (and redraws?) to happen
10725         per grid resize.
10727 2006-08-12  Chris Toshok  <toshok@ximian.com>
10729         * ToolBarButton.cs: redraw the entire button if the theme tells us
10730         to.
10732         * Theme.cs: add ToolBarInvalidateEntireButton.
10734         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
10735         buttons, just the border.
10737         * ThemeNice.cs: redraw the entire toolbar button since we need to
10738         draw the highlight image.
10740         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
10741         we need to redraw the entire button (not just the border).
10743 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
10745         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
10746           for vertical bars. Fixes the mismatches shown by #78513
10748 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
10750         * FileDialog.cs: If a saved/remembered path doesn't exist
10751           anymore, fall back to "Desktop".
10753 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
10755         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
10756           parent. It's apparently legal to not have one
10757         * XplatUIX11.cs:
10758           - SetZOrder: Don't try to set Z-Order on an unmapped window
10759           - CreateWindow: 0,0 are legal coordinates for a window. don't move
10760             it unless the coordinates are negative
10762 2006-08-10  Mike Kestner  <mkestner@novell.com>
10764         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
10765         when setting to null per msdn docs.  Fixes #78854.
10767 2006-08-10  Chris Toshok  <toshok@ximian.com>
10769         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
10770         flickering by setting a clip rectangle on the Graphics when we
10771         need to redraw just a particular menuitem.  Also, rename "OnClick"
10772         to "OnMouseDown" to reflect what it actually is.
10773         
10774         * Form.cs: track the OnMouseDown change.
10776 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
10778         * CommonDialog.cs: Properly inherit the CreateParams from the form
10779           and only change what we need. Fixes #78865
10781 2006-08-10  Chris Toshok  <toshok@ximian.com>
10783         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
10784         flickering in flat mode (and most of the flickering in general) by
10785         only invalidating the button border (and not the entire rectangle)
10786         when the state changes.  A couple of cases still flicker:
10787         ToggleButtons, and the dropdown arrow case when the user mouse
10788         ups.
10790 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
10792         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
10793           for german keyboards. Numlock state shouldn't affect the behaviour
10794           of the Del key. Fixes bug #78291.
10796 2006-08-10  Chris Toshok  <toshok@ximian.com>
10798         * ListControl.cs: remove the items.Clear line from BindDataItems,
10799         as this is the first thing done by both subclasses in their
10800         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
10801         passed -1, refresh the list.  This gets databinding working when
10802         the datasource is set on the list before the datasource is
10803         populated (as in wf-apps/ReportBuilder.)
10805         * ComboBox.cs: remove the argument to BindDataItems.  This call
10806         should really go away, and be initiated by the ListControl code.
10808         * ListBox.cs: same.
10810 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
10812         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
10813           if no data is in the document when the control is displayed
10815 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
10817         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
10818           yes (fixes #78806)
10819         * TextControl.cs: 
10820           - PositionCaret: Allow positioning of caret but don't call methods 
10821             requiring a handle if the window isn't created yet
10822           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
10823           - owner_HandleCreated: Don't position the caret, just update it's 
10824             location. User might have already set a different position
10826 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
10828         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
10829           windows. Screws up the returned coordinates for child windows. 
10830           Fixes #78825. I'm hoping this doesn't break something, since the
10831           code was explicitly put in 8 months ago, but no bug was attached.
10832           Menus still seem to work properly.
10834 2006-08-08  Chris Toshok  <toshok@ximian.com>
10836         * DataGrid.cs: make BeginInit/EndInit actually do what they're
10837         supposed to do - delay data binding until the EndInit call.  Also,
10838         make the table style collection's CollectionChangeAction.Refresh
10839         work properly.
10841         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
10842         (with action = Refresh) when a consituent table's MappingName is
10843         changed.
10845 2006-08-08  Chris Toshok  <toshok@ximian.com>
10847         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
10848         Invalidate, since changing the text can change the size of the all
10849         toolbar buttons.
10851 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
10853         * Form.cs (AddOwnedForm): Still need to add the form to our listif
10854           we don't have it yet
10856 2006-08-08  Chris Toshok  <toshok@ximian.com>
10858         * PrintControllerWithStatusDialog.cs: don't .Close() the status
10859         dialog, as this causes X errors later on, since we actually
10860         destroy the window.  Instead, .Hide() it.
10862 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
10864         * ComboBox.cs: Added focus reflection for popup window
10865         * XplatUIX11.cs: 
10866           - Removed transient setting for non-app windows for now, not sure it
10867             was needed
10868           - Fixed logic checking if we have captions when deciding 
10869             override_redirect, WS_CAPTION is two bits and a 0 check was not
10870             sufficient
10871           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
10872             complicated
10873         * Form.cs: 
10874           - AddOwnedForm: Don't just add the form to the list, call the property
10875             to ensure the driver is informed about the ownership as well
10876           - CreateHandle: Set the TopMost status in the driver if we have an owner
10877         * XplatUI.cs: Fixed debug statement
10879 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
10880         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
10881           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
10882           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
10883           TrackBarRenderer.cs: Make constructor private.
10884         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
10885         * ProfessionalColorTable.cs: Make properties virtual.
10887 2006-08-06  Duncan Mak  <duncan@novell.com>
10889         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
10890         is not changing.
10892 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
10893         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
10894           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
10895           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
10896           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
10897           Initial import of new 2.0 classes.
10899 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
10900         * Application.cs: Add 2.0 VisualStyles properties.
10902 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
10903         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
10904           XplatUIX11.cs: Create property to allow access to existing private
10905           variable "themes_enabled"
10907 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10909         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
10910         file size, as otherwise our class libraries fail using windows. Fixes
10911         bug #78759.
10913 2006-08-04  Jackson Harper  <jackson@ximian.com>
10915         * Form.cs:
10916         * XplatUIX11.cs: Move the toolwindow window manager creation into
10917         the X11 driver, this way on win32 we can let windows create/handle
10918         the toolwindows.
10920 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10922         * PrintDialog.cs: Remove some redundant checks, add some others,
10923         clean some code, and move the focus to the text boxes when the
10924         values are incorrect.
10926 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
10928         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
10930 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
10932         * NumericUpDown.cs: Setting the Minimum and Maximum is now
10933           handled correctly. Fixes bug #79001.
10935 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10937         * PrintDialog.cs: The "Copies" numeric up down must have
10938         set the Minimum property to 1; only if the value is bigger
10939         than 1, activate "Collate" check box. This is the behaviour of .Net.
10940         Also modify the Document elements only if it is not null.
10942 2006-08-03  Jackson Harper  <jackson@ximian.com>
10944         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
10945         length. (We have a larger array then actual node count).
10946                 
10947 2006-08-03  Jackson Harper  <jackson@ximian.com>
10949         * ComboBox.cs: Don't show selection by default.
10950         - The SelectAll isn't needed here, since the focus code should do
10951         that
10952         - DDL style lists to manual selection drawing, so when they
10953         get/lose focus they have to invalidate.
10955 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
10957         * TextBoxBase.cs: Don't always show all selections by default.
10959 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
10960         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
10961           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
10962           Fixed various typos.
10964 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
10966         * Control.cs: Removing the controls in a ControlCollection with
10967           Clear now hides the controls as expected. Fixes bug #78804. 
10969 2006-08-03  Jackson Harper  <jackson@ximian.com>
10971         * Control.cs: Revert previous focus patch, it breaks reflector.
10973 2006-08-03  Jackson Harper  <jackson@ximian.com>
10975         * ComboBox.cs: Cleanup selection and focus with the combobox.
10976         This also eliminates some duplicated keyboard code, since now
10977         everything is handled by the main class.
10978         - Make list selection work on mouse up instead of down, to match
10979         MS.
10981 2006-08-02  Jackson Harper  <jackson@ximian.com>
10983         * Control.cs: Setting focus needs to go through the whole
10984         selection mechanism.
10986 2006-08-02  Chris Toshok  <toshok@ximian.com>
10988         * PrintPreviewDialog.cs: change MinimumSize to use
10989         base.MinimumSize so it works.
10991 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
10993         * TextControl.cs:
10994           - UpdateCaret: Added sanity check in case caret isn't defined yet
10995           - Line.Delete: Now updating selection and caret markers if we're
10996             transfering a node (Properly fixes #78323)
10997           - SetSelectionEnd: Added sanity check
10998         * TextBoxBase.cs: Removed broken attempt to fix #78323
11000 2006-08-01  Chris Toshok  <toshok@ximian.com>
11002         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
11003         Close() call is handled in Form, not here.
11005 2006-08-01  Chris Toshok  <toshok@ximian.com>
11007         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
11008         layout/rendering.
11010         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
11011         for sizes < 100% zoom.  The code now aggressively attempts to keep
11012         from calling document.Print (), and tries not to use the scaling
11013         g.DrawImage whenever possible (it still does if you scale to >
11014         100%, since usually that involves huge images).
11016         * PrintPreviewControl.cs: hook up the close button.
11018 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
11019         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
11020           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
11021           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
11022           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
11023           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
11024           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
11025           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
11026           Removed [Serializable] for 2.0 Event Handlers.
11028 2006-07-31  Jackson Harper  <jackson@ximian.com>
11030         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
11031         * TextControl.cs: Uncomment out the body of this method.
11033 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
11035         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
11036           standard cursors.
11038 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
11040         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
11041           that embed TextBox and need selections visible even if textbox is not
11042           focused to enforce that behaviour.
11043         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
11044           selection drawing
11046 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
11048         * TextControl.cs:
11049           - Added new SetSelectionStart/SetSelectionEnd overloads
11050           - Fixed viewport width assignment to be accurate
11051           - Adjusted alignment line shift calculations to allow cursor on right
11052             aligned lines to be always visible at the right border (like MS)
11053         * TextBoxBase.cs:
11054           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
11055           - TextBoxBase_SizeChanged: recalculating canvas on size changes
11056           - CalculateScrollBars: Use ViewPort size instead of window size, to
11057             properly consider space occupied by the border and scrollbars 
11058             (Fixes #78661)
11059           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
11060             calculations; no longer leaves artifacts
11061           - CaretMoved: Adjusted window scrolling to match MS and fixed several
11062             calculation bugs (Still missing right/center align calculations)
11064 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
11066         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
11067           use of both scroll rect and clip rect, as they do the same.
11069 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
11071         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
11072           in the event handler (fixes #78912)
11074 2006-07-31  Chris Toshok  <toshok@ximian.com>
11076         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
11077         grid.ListManager.Count, since grid.ListManager might be null.
11078         This of course begs the question "why are we drawing rows for a
11079         grid with no list manager (and therefor no rows)?"  Fixes the
11080         crash in bug #78929.
11082 2006-07-31  Chris Toshok  <toshok@ximian.com>
11084         * RelatedPropertyManager.cs: Don't always chain up to the parent
11085         ctor.  instead, call SetDataSource if the parent's position is !=
11086         -1.  Fixes the crash in #78822.
11088 2006-07-31  Chris Toshok  <toshok@ximian.com>
11090         * DataGrid.cs (get_ListManager): use field instead of property
11091         accessors for datasource and datamember.
11092         (RowsCount): make internal again.
11093         (OnMouseDown): end edits before resizing columns/rows.
11094         (OnMouseUp): restart edits after resizing columns/rows.
11096 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
11098         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
11099           This fixes the situation where the last set cursor is displayed
11100           whenever the mouse is over scrollbars.
11102 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11104         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
11105         Document properties, as well as initial values.
11107 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
11109         * XplatUIWin32.cs (SetBorderStyle): Setting both border
11110           and ClientEdge results in a 3-pixel border, which is
11111           wrong.
11113 2006-07-28  Jackson Harper  <jackson@ximian.com>
11115         * TreeNodeCollection.cs: Fix the clear method.
11116         - Fix the Shrink also
11118 2006-07-27  Jackson Harper  <jackson@ximian.com>
11120         * TreeView.cs: Make sure the visible order is computed when we
11121         attempt to size the scrollbars (for trees that mess with the
11122         scrolling when they shouldn't.
11123         - Make sure to give the scrollbars valid values.
11125 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
11127         * XplatUIX11.cs: Move motion compression code to where it
11128           has less performance impact
11130 2006-07-26  Jackson Harper  <jackson@ximian.com>
11132         * UpDownBase.cs: When the control is selected make the child
11133         controls non selectable, so that a click on them won't do a
11134         focus/unfocus cycle.
11135         - Don't give focus to the text box when the spinner is selected.
11136         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
11138 2006-07-26  Chris Toshok  <toshok@ximian.com>
11140         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
11141         satisfied with this solution.  If the bitmaps are small, we should
11142         just cache them in the PrintPreviewDialog and draw them here.
11143         Also, the layout is broken for the 2-up and 3-up cases.
11145         * Theme.cs: add PrintPReviewControlPaint.
11147         * PrintPreviewDialog.cs: first pass implementation.
11149         * PrintPreviewControl.cs: first pass implementation.  No
11150         scrollbars yet.
11152         * PrintDialog.cs: only validate fields if that particular portion
11153         of the UI is enabled.  Also, set the document's controller to a
11154         PrintControllerWithStatusDialog wrapping the document's print
11155         controller.
11157         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
11158         bring up a SaveFileDialog (i hope we don't want to match the
11159         behavior of the crappy windows file entry) and set the
11160         PrinterSettings.PrintFileName accordingly.
11162 2006-07-26  Jackson Harper  <jackson@ximian.com>
11164         * ContainerControl.cs: Add a field that disables auto selecting
11165         the next control in a container when the container is activated.
11166         * UpDownBase.cs: Don't select the text box when the up down is
11167         selected.
11169 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
11171         * XEventQueue.cs: Added methods for peeking (used for compression
11172           of successive events)
11173         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
11174           mouse move events (fixes #78732)
11176 2006-07-25  Jackson Harper  <jackson@ximian.com>
11178         * UpDownBase.cs: Use an internal class for the textbox so that we
11179         can control focus.  the updown control should always have focus,
11180         if either the text area or the buttons are clicked.
11181         - Send the key messages to the textbox, since it never actually
11182         has focus
11183         - Activate and decativate the textbox caret.
11185 2006-07-24  Jackson Harper  <jackson@ximian.com>
11187         * Control.cs: Use the directed select when selecting a control,
11188         this way the container controls override will get called and the
11189         whole ActiveControl chain will get triggered.  TODO: probably need
11190         to make sure this gets done everywhere instead of the old
11191         Select(Control).
11192         * ContainerControl.cs: Implement the directed Select method to
11193         find and activate the correct child control.    
11194         
11195 2006-07-22  Mike Kestner  <mkestner@novell.com>
11197         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
11198         menu handling code so that clicks without a grab work too.
11199         [Fixes #78914]
11201 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
11203         * FileDialog.cs: Enable the BackButton when dirstack has one element.
11204           Added some small optimizations.
11206 2006-07-21  Matt Hargett  <matt@use.net>
11208         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
11210 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
11212         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
11213           tests pass and match MS in some strange border cases.
11215 2006-07-21  Chris Toshok  <toshok@ximian.com>
11217         * ThemeWin32Classic.cs: handle drawing of the relation links and
11218         parent row buttons.
11220         * Theme.cs: change args to DataGridPaintParentRow.
11222         * DataGrid.cs: Don't use controls for the relation links and
11223         parent buttons, so we have to handle all their interactions in
11224         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
11225         when we're navigating through child tables, so we can reinstate
11226         selection, expanded state, current cell, etc.
11228 2006-07-20  Chris Toshok  <toshok@ximian.com>
11230         * ToolBar.cs: When we redraw a button, for whatever reason,
11231         there's no reason to redraw the entire toolbar.  Also, don't call
11232         Control.Refresh from within Redraw, as it's much heavier than
11233         Invalidate (which is really what we want).
11235 2006-07-20  Chris Toshok  <toshok@ximian.com>
11237         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
11238         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
11239         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
11240         traces from within a debug IBindingList datasource
11241         (in mono/winforms/datagrid) for *days*, I've finally gotten things
11242         to work in a similar fashion.
11244 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11246         * ListBox.cs: Don't call Sort () when setting 
11247         the Sorted property to false (avoid an unnecessary sort).
11249 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11251         * ListControl.cs: DataSource should throw an ArgumentException
11252         instead of a normal exception when the argument is not of the 
11253         correct type.
11255 2006-07-20  Mike Kestner  <mkestner@novell.com>
11257         * Control.cs: add InternalPreProcessMessage to allow us to steal
11258         key events before MWF gets its paws on them.  Adapted from a
11259         suggestion by eno.
11260         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
11261         up/down/left/right navigation. Override the new internal control
11262         method to steal the events since they never make it to WndProc.
11263         * ToolBarButton.cs: don't worry about pushed when setting hilight
11264         since the drawing code prefers pushed to hilight. Invalidate on 
11265         Hilight changes. Fixes #78547 and #78525.
11267 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
11269         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
11270           the canvas size. Fixes #78868
11272 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
11274         * Splitter.cs: Track requested split position until first layout
11275           is performed. Fixes #78871
11277 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
11279         * Application.cs: Removed code that forces 1.x for the version
11280           number if the version started with 0. Not sure why that code was
11281           there and I couldn't find any bugs that indicated we needed it.
11282           Fixes #78869
11284 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
11286         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
11287           ResetDefaults(), just write some output to the console until it's
11288           implemented. Fixes bug #78907 for now. Eliminated two warnings.
11290 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
11292         * PropertyGridView.cs: set StartPosition of drop down forms
11293         so they appear in correct initial spot.  Fixes #78190.
11295 2006-07-19  Mike Kestner  <mkestner@novell.com>
11297         * ThemeWin32Classic.cs: use parent background color when drawing
11298         flat toolbars.  Restructure the conditionals to make sure non-flat
11299         non-Divider toolbars are filled too.  Fixes #78837.
11301 2006-07-19  Mike Kestner  <mkestner@novell.com>
11303         * ListBox.cs: Sort on collection changes even if the handle
11304         isn't created yet.  Fixes #78813.
11306 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11308         * ListControl.cs: DisplayMember should never be null,
11309         and now we assign String.Empty when null is passed to it (this
11310         is the .Net way).
11312 2006-07-17  Mike Kestner  <mkestner@novell.com>
11314         * ListViewItem.cs: restructure Font and subitem Font handling 
11315         to hold a specific font and refer back to owner on null.
11316         Fixes #78761.
11318 2006-07-17  Mike Kestner  <mkestner@novell.com>
11320         * ToolBar.cs: bandaid for side-effect of previous patch which was
11321         discarding explicit heights for non-AutoSize toolbars.  Need to
11322         extend my format tester to deal with AutoSize=false. Fixes #78864.
11324 2006-07-15  Jackson Harper  <jackson@ximian.com>
11326         * LabelEditTextBox.cs:
11327         * TreeView.cs: Use a new LabelEdit class for node editing, this
11328         class automatically 'closes' itself when it gets the enter key or
11329         loses focus.
11330         - Use the client rectangle when setting the trees scrollbars, so
11331         border style is taken into account.
11332         
11333 2006-07-14  Jackson Harper  <jackson@ximian.com>
11335         * TreeNode.cs:
11336         * TreeView.cs: Make the editing work similar to MSs, firing the
11337         events correctly and ending edits correctly.
11339 2006-07-14  Mike Kestner  <mkestner@novell.com>
11341         * ToolBarButton.cs:
11342         * ToolBar.cs: layout restructuring and redraw enhancements to support
11343         formatting changes gracefully, like setting TextAlign, ImageList, 
11344         ButtonSize, and Appearance.  Handles explicit button sizing quirks
11345         of the MS controls.  Things like flat toolbars ignoring button size
11346         but becoming constant sized at the largest button's size.  Normal
11347         toolbars with an image set cannot be shrunk smaller than the image,
11348         but text can be clipped/ignored.
11349         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
11350         is zero.  Seems like DrawString should be smart enough to not put
11351         anything on screen though. Also trim labels and ellipsize at the char
11352         boundary, not word.
11353         Fixes #78711 and #78483.
11355 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
11357         * FolderBrowserDialog.cs: Disable "New Folder" button and
11358           "New Folder" contextmenu menuitem if a folder like "My Computer"
11359           is selected.
11361 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
11363         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
11364         * FolderBrowserDialog.cs:
11365           - Use MWFConfig to store and read size and position settings
11366           - Added code to create a new folder (button or context menu).
11367             Use TreeView labeledit to change the name of the new folder.
11369 2006-07-14  Jackson Harper  <jackson@ximian.com>
11371         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
11372         when the tree is scrolled we end editing.
11374 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
11376         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
11377           Down arrows
11379 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
11381         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
11382         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
11383         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
11384         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
11385         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
11386         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
11387         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
11388         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
11389         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
11390         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
11391         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
11392         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
11393         ListViewItemSelectionChangedEventHandler.cs,
11394         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
11395         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
11396         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
11397         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
11398         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
11399         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
11400         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
11401         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
11402         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
11403         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
11404         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
11405         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
11406         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
11407         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
11408         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
11409         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
11410         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
11411         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
11412         WebBrowserNavigatingEventHandler.cs, 
11413         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
11415 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
11417         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
11418         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
11419         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
11420         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
11421         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
11422         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
11423         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
11424         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
11425         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
11426         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
11427         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
11428         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
11429         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
11430         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
11431         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
11432         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
11433         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
11434         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
11435         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
11436         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
11437         ListViewItemStates.cs, MaskFormat.cs: Added
11439 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
11441         * PropertyGridView.cs: Fix keyboard navigation of drop down.
11442         Patch from eno for bug 78558.
11443         
11444 2006-07-13  Jackson Harper  <jackson@ximian.com>
11446         * TreeView.cs: When an edit is finished make sure that the
11447         selected node is visible.
11448         - When setting the top/bottom use the scrollbars is_visible, so
11449         everything will be set correctly even if the tree isn't visible
11450         yet.
11452 2006-07-13  Jackson Harper  <jackson@ximian.com>
11454         * ComboBox.cs: Revert the item->index part of my previous patch.
11455         * TreeView.cs: Use LostFocus instead of Leave for detecting when
11456         the edit box has lost focus (duh).
11457         - Just make the edit box not visible when we get return, that will
11458         take the focus, which will call EndEdit
11459         * TreeNode.cs When we start editing, notify the treeview.
11461 2006-07-12  Jackson Harper  <jackson@ximian.com>
11463         * ComboBox.cs: Clear out old items before setting the item list.
11464         This prevents databound controls from having their items added
11465         twice.
11466         - Switch the combobox to use indices whereever possible instead of
11467         using Item's.  This allows usto navigate through lists that have
11468         more then one item with the same string value (ie a, b, b, a).
11469         - Scroll the listboxes scrollbar when a non visible item is
11470         highlighted
11471         - Allow keypress to cycle through all the possible values. For
11472         example if you have b1, b2, b3 and hold down the B key all the
11473         values will be cycled through.
11474         
11475 2006-07-12  Jackson Harper  <jackson@ximian.com>
11477         * TextBoxBase.cs:
11478         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
11479         this using the internal methods.
11480         * Control.cs: Add OnGotFocusInternal.  A new method that allows
11481         controls to "override" OnGotFocus and change focus behavior if
11482         needed.
11483         - Same thing for LostFocus
11484         * ComboBox.cs: Pass off focus to the text control properly.
11486 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
11488         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
11489         * FolderBrowserDialog.cs: Almost a complete rewrite.
11490           - Better support for Environment.Specialfolders
11491           - Added support for MWFVFS
11492           - Made setting SelectedPath work
11494 2006-07-12  Jackson Harper  <jackson@ximian.com>
11496         * Control.cs: Optimze getting all the controls.
11498 2006-07-11  Jackson Harper  <jackson@ximian.com>
11500         * ContainerControl.cs: Override SETFOCUS in the container control,
11501         so that it is not selected on mouse click.
11503 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
11505         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
11506           Hopefully we will have a better way once all of focus is complete.
11508 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
11510         * ThemeWin32Classic.cs: Commented out some debug code and fixed
11511           a compile error with csc.
11513 2006-07-11  Jackson Harper  <jackson@ximian.com>
11515         * Control.cs: When hiding a control only select the next control
11516         if the current control was focused.
11517         - Don't handle enter/leave when setting/killing focus, this is
11518         done by the container control.
11519         - Remove is_selected, it's not needed anymore.
11520         - Add utility methods for selecting a child control, and for
11521         firing the Enter/Leave events.
11522         * ContainerControl.cs: When a control is activated fire the
11523         enter/leave events.
11524         - Don't wrap when processing the tab key, so that focus can be
11525         moved outside of the container.
11526         - Use the correct active control
11528 2006-07-11  Jackson Harper  <jackson@ximian.com>
11530         * ComboBox.cs: Remove some debug code that was blinding me.
11531         * UpDownBase.cs: These controls actually aren't implicit, they are
11532         visible to the user.
11534 2006-07-10  Chris Toshok  <toshok@ximian.com>
11536         * DataGrid.cs: move back to the is_adding boolean field.  god i
11537         hate this is_editing/is_adding/is_changing stuff.
11539 2006-07-10  Chris Toshok  <toshok@ximian.com>
11541         * DataGridTableStyle.cs: just check if the property type is bool.
11542         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
11543         Don't use CanRenderType.
11545         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
11546         if our text == NullText.  Remove CanRenderType.
11548         * DataGridBoolColumn.cs: nuke CanRenderType.
11550         * DataGrid.cs: reenable some code to end the current edit inside
11551         of set_CurrentCell.  This fixes the other 1.1.16 regression.
11552         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
11553         Also, remove the visible_row_count arg from CalcRowHeaders, since
11554         we don't need to worry about the actual height of the area.
11556 2006-07-10  Chris Toshok  <toshok@ximian.com>
11558         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
11559         mode, just return.
11561         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
11562         the real sense of the IsInEditOrNavigateMode property (true =
11563         navigate, false = edit).  Also, update OnKeyPress to reflect this.
11565         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
11566         column style exists, we still need to set its property descriptor
11567         to match up with our list manager.
11569 2006-07-10  Chris Toshok  <toshok@ximian.com>
11571         * ThemeWin32Classic.cs: implement the new row/header painting
11572         approach.  The parent row painting will likely go away and
11573         replaced with label controls, but the rest seems to work ok (and
11574         efficiently).
11576         * Theme.cs: change the way we draw datagrid rows.  we don't draw
11577         the row headers as a block now.  Instead we draw them in the
11578         normal draw-row loop.  Add some calls for drawing parent rows and
11579         relation rows.
11581         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
11582         a default table style.  Set the defaults from ThemeEngine.Current,
11583         not SystemColors.  Fix lots of misc issues with property setters.
11585         * DataGrid.cs: move loads of style information out of this class
11586         as it's being duplicated with DataGridTableStyle.  keep track of a
11587         special DataGridTableStyle for the properties we used to mirror
11588         here.  Switch all the style properties to access this table style
11589         instead of instance fields of this class.  Also add a internal
11590         class to represent parent rows (more needs to be stored here, like
11591         the selection state from the parent table, as well as the
11592         expansion state.)  Also, for datasources with relations, do the
11593         right thing for collapse/expand, and add support for the
11594         navigation/parent row buttons.
11596         Lastly, fix the crash in the 1.1.16 build.
11598         * GridTableStylesCollection.cs: make the explicit interface
11599         implementations call the class's methods as opposed to duplicating
11600         them.
11602         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
11603         0 so the text doesn't jump around when we move the cursor.
11605 2006-07-10  Jackson Harper  <jackson@ximian.com>
11607         * TextBoxBase.cs:
11608         * ListBox.cs: Match MS's ToString (this makes debugging focus
11609         stuff infinitely easier).
11611 2006-07-10  Jackson Harper  <jackson@ximian.com>
11613         * Control.cs (SelectNextControl): When checking the control's
11614         parent use this instead of ctrl.parent so that null can be passed
11615         to SelectNextControl. (I have unit tests for this).
11616         - Remove unused var.
11618 2006-07-10  Chris Toshok  <toshok@ximian.com>
11620         * CurrencyManager.cs: correct one regression, the removal of the
11621         finalType field.  Also, add a MonoTODO on CanAddRows, implement
11622         Refresh() correctly, and fix some event emission in
11623         ListChangedHandler.
11625 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
11627         * FileDialog.cs: Don't use brackets for new folders if they exist
11628           under *nix. Instead use -(number of existing folders +1).
11630 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
11632         * FileDialog.cs:
11633           - Fixed really nasty bug #78771
11634           - Don't block the whole GUI when reading directories with a lot of
11635             entries. Use an other thread instead and call BeginInvoke to
11636             update the ListView in MWFFileView
11638 2006-07-07  Chris Toshok  <toshok@ximian.com>
11640         * Control.cs (Dispose): release any Capture when disposing.
11642 2006-07-07  Chris Toshok  <toshok@ximian.com>
11644         * LinkLabel.cs (Select): if we chain up to the parent, set
11645         focused_index to -1 so we'll search for the first available link
11646         the next time the user tabs into us.  Also, if the direction is
11647         backward and focused_index == -1, start the search from the last
11648         element.
11650 2006-07-07  Chris Toshok  <toshok@ximian.com>
11652         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
11653         is beyond the end of the text, don't do anything.
11654         (CreateLinkPieces): set our ControlStyles.Selectable based on
11655         whether or not we have any links.
11656         (Link.Invalidate): use a loop instead of foreach.
11657         (Link.set_Start): null out owner.sorted_links so it'll be
11658         recreated by CreateLinkPieces.
11660 2006-07-06  Chris Toshok  <toshok@ximian.com>
11662         * LinkLabel.cs: revert the SetStyle change.
11664 2006-07-06  Chris Toshok  <toshok@ximian.com>
11666         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
11667         (OnEnableChanged): s/Refresh/Invalidate
11668         (OnGotFocus): if we have a focused index already, refocus it (so
11669         if we mouse out/in to the window it'll focus the right link).
11670         (OnKeyDown): move the tab handling out of here.
11671         (OnLostFocus): don't set focused_index to -1, so we can refocus it
11672         when we lose focus.
11673         (OnMouseDown): don't Capture here - Control handles it.  Also,
11674         focus the active link.
11675         (OnMouseUp): don't deal with Capture.
11676         (OnPaintBackgroundInternal): remove.
11677         (OnTextAlignChanged): CreateLinkPieces before calling the
11678         superclass's method.
11679         (OnTextChanged): call CreateLinkPieces before calling superclass's
11680         method.
11681         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
11682         move around.
11683         (Select): implement this, moving the selection between different
11684         links, and call parent.SelectNextControl if we don't have another
11685         link to focus in the given direction.
11686         (CreateLinkPieces): call Invalidate instead of Refresh.
11687         
11688 2006-07-06  Chris Toshok  <toshok@ximian.com>
11690         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
11691         new LinkLabel internals.
11693         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
11694         over pieces looking for active/focused/etc links.  also, deal with
11695         runs of text (and links) with embedded \n's in them, and use
11696         MeasureCharacterRanges instead of MeasureString to figure out the
11697         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
11698         two-step.
11700 2006-07-04  Jackson Harper  <jackson@ximian.com>
11702         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
11703         XKB or key auto repeat, do it manually.  Without key auto repeat,
11704         when a key is held down we get key press, key release, key press,
11705         key release, ... with auto repeat we get key press, key press, key
11706         press ..., and then a release when the key is actually released.
11708 2006-07-03  Jackson Harper  <jackson@ximian.com>
11710         * TabControl.cs:
11711         * ThemeWin32Classic.cs: Tabs do not obey normal background color
11712         rules, they are always control color regardless of the background
11713         color.
11715 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
11717         * FileDialog.cs: Added internal class MWFConfig.
11718           Removed Registry support and replaced it with support for the new
11719           MWFConfig class. See MWFConfig comments for more information.
11721 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
11723         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
11724           rectangle. Added some patches from eno from bug #78490 and fixed
11725           the arrow position for small up and down CPDrawScrollButtons.
11727 2006-06-30  Jackson Harper  <jackson@ximian.com>
11729         * InternalWindowManager.cs: Remove some debug code.
11730         * Form.cs: When an MdiParent is set to null, the window is
11731         "detatched" and becomes a normal window.
11732         * MdiClient.cs: Don't bring the new child form to the front until
11733         it is activated (setting it as active does this), this makes the
11734         previously active forms titlebar get redrawn as inactive.
11736 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
11738         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
11739           with later controls
11741 2006-06-29  Mike Kestner  <mkestner@novell.com>
11743         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
11744         arrow in keynav state.  Fixes #78682.
11746 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
11748         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
11749           order (fixes #78393)
11751 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
11753         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
11754           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
11755           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
11756           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
11757           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
11758           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
11759           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
11760           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
11761           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
11762           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
11763           enumerations (FlagsAttribute, SerializableAttribute, added/removed
11764           values)
11766 2006-06-28  Mike Kestner  <mkestner@novell.com>
11768         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
11770 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
11772         * PropertyGrid.cs,
11773           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
11774           item lines from other area (It also makes BackColor consistent and
11775           compatible with .NET). Fixed bug #78564.
11777 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
11779         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
11780         Patch from Eno for #78555.
11782 2006-06-27  Chris Toshok  <toshok@ximian.com>
11784         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
11786         * DataGridColumnStyle.cs: same.
11788         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
11789         
11790         * DataGridDrawingLogic.cs: nuke.
11792 2006-06-27  Chris Toshok  <toshok@ximian.com>
11794         * DataGridTableStyle.cs: clean up the constructors, and build the
11795         list of child relations for this table.  I have no idea if this is
11796         where we should be doing it (it probably isn't), but since we're
11797         already iterating over the properties..
11799         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
11800         struct and array for keeping track of row information, similar to
11801         what's shown in a hack on
11802         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
11804         * Theme.cs: be consistent about the naming of DataGrid methods,
11805         prefering ColumnWidths and RowHeights over columnsWidths and
11806         RowsHeights.
11808         * ThemeWin32Classic.cs: same, and also add support for variable
11809         sized rows (and the +/- expansion icons for related rows).
11811 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
11813         * TextBoxBase.cs: Applied Eno's patch from #78660
11815 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
11817         * Form.cs (ScaleCore): We don't want to scale our form if it's
11818           state is minimized or maximized, but we still need to scale our
11819           child windows. Also, added try/finally block to ensure layout
11820           gets reset (Fixes #78697)
11822 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
11824         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
11826 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
11828         * Form.cs: Fixed c+p error and added check to resize form if minimum
11829           size is bigger than current size (Fixes #78709)
11831 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
11833         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
11835 2006-06-26  Mike Kestner  <mkestner@novell.com>
11837         * ComboBox.cs: only do Keypress handling in the combo when there  
11838         are items in the collection. Fixes #78710.
11840 2006-06-26  Chris Toshok  <toshok@ximian.com>
11842         * Binding.cs: make this work bi-directionally.  also, clear up
11843         other mixups between Push/Pull Data (e.g. we're supposed to pull
11844         data when validating).
11846         * BindingManagerBase.cs: trim some fully qualified collection
11847         types.
11849         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
11851 2006-06-23  Chris Toshok  <toshok@ximian.com>
11853         * PropertyManager.cs: It appears (according to the unit tests)
11854         that PropertyManager doesn't use
11855         PropertyDescriptor.AddValueChanged to track propery value changes
11856         in its datasource, but uses the same scheme as Binding, where it
11857         looks for a <Property>Changed event and binds to it.
11859         Also, according to the docs, IsSuspended always returns false for
11860         a property manager with a non-null datasource.
11862 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
11864         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
11865           need to update the actual DialogResult. (Fixes #78613)
11867 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
11869         * Form.cs (ShowDialog): Release any captures before running the
11870           new message pump (fixes #78680)
11872 2006-06-22  Mike Kestner  <mkestner@novell.com>
11874         * ListView.cs: Layout column widths properly in details mode even 
11875         if HeaderStyle.None is set.  Fixes #78691.
11877 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
11879         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
11881 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
11883         * Control.cs (ContainsFocus): Using new driver method to get focused
11884           window, instead of trying to use internal tracking var, which can
11885           recursion issues (Fixes #78685)
11886         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
11887           XplatUIWin32.cs: Added GetFocus method to return focused window
11889 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11891         * ColorDialog.cs: when the mouse button is pressed inside the color
11892         matrix, don't let the cursor move out of it until the button is
11893         released, which is the behavior on windows. Changed 'colours' by
11894         'colors' to use the same word consistently.
11896 2006-06-21  Chris Toshok  <toshok@ximian.com>
11898         * DataGrid.cs: add in some basic navigation stuff (navigating to a
11899         child relation and back, using a stack).  Also, remove
11900         GetDataSource and the code that calls it - it's not needed.  Also,
11901         track CurrencyManager.ListName's removal.
11903 2006-06-21  Chris Toshok  <toshok@ximian.com>
11905         * CurrencyManager.cs: push some of the original type checking from
11906         BindingContext.CreateBindingManager to here, and remove some of
11907         the finalType stuff.  Need more tests to make sure I've got the
11908         ListName part right, and we might need more in SetDataSource.
11910         * PropertyManager.cs: add a ctor that takes just the datasource,
11911         and no property name.  Make SetDataSource work with a null
11912         property_name, and make Current return the data_source if the
11913         property descriptor is null.  this makes 'string foo = "hi";
11914         BindingContext[foo].Current' return "hi" as it should.
11916         * RelatedCurrencyManager.cs: make this code more generic - there's
11917         no reason the parent manager has to be CurrencyManager, and
11918         there's no reason to pass the DataRelation.  It suffices to use a
11919         BindingManagerBase and PropetyDescriptor.
11921         * RelatedPropertyManager.cs: make a similar change here.
11922         
11923         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
11924         flower I knew it could be.
11926 2006-06-20  Chris Toshok  <toshok@ximian.com>
11928         * PropertyManager.cs: the PropertyChangedHandler is invoked when
11929         data in the source has changed and we need to update the control,
11930         so s/PullData/PushData.
11932         * CurrencyManager.cs: Refresh is meant to update the control from
11933         data in the datasource.  So, s/PullData/PushData.
11935         * BindingContext.cs: add more ugliness (we weren't handling the
11936         case where data_source = DataTable and data_member = column_name).
11938         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
11939         from the perspective of the datasource.  PullData pulls from the
11940         control, PushData pushes to the control.
11942 2006-06-20  Chris Toshok  <toshok@ximian.com>
11944         * BindingContext.cs: rewrite the CreateBindingManager code to
11945         handle navigation paths more or less properly.  This could
11946         definitely stand some more work, in particular to push the
11947         recursion up to the toplevel.  But that relies on fixes in other
11948         places (System.Data comes to mind).
11950         Also, move to a flat hashtable (and encode the twolevel nature of
11951         the dictionary into the hash key).  This lets us implement the
11952         IEnumerable.GetEnumerator method.
11954         * RelatedCurrencyManager.cs: new class.  Update our view based on
11955         our relation and our parent CurrencyManager's position.
11957         * CurrencyManager.cs: split out some logic from the ctor into
11958         SetView, so it can be called from the new RelatedCurrencyManager
11959         subclass.
11961         * RelatedPropertyManager.cs: new class.  Update our datasource
11962         based on the position of our parent CurrencyManager.
11964         * PropertyManager.cs: split out some logic from the ctor into
11965         SetDataSource, so it can be called from the new RelatedDataSource
11966         subclass.  Also, make the Current getter return the value
11967         of the PropertyDescriptor, not the data_source.
11969         * Binding.cs: no need to duplicate the string splitting code here.
11971 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
11973         * Control.cs:
11974           - set_Enabled: OnEnabledChanged is not called if the inherited state 
11975             of the control is not altered, even though  we might be changing the
11976             internal state of the control (#78458)
11977           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
11978             OnEnabledChanged, to allow easy altering of any child window state
11979           - OnEnabledChanged: Added code to enable/disable driver window state
11980           - OnParentEnabledChanged: Instead of firing the event, call 
11981             OnEnabledChanged, which will fire the event and also a) set driver
11982             window state and pass the enabled state to any grandchildren (#78458)
11984 2006-06-19  Jackson Harper  <jackson@ximian.com>
11986         * InternalWindowManager.cs: We don't set the cursor explicitly
11987         thats done via the response to NCHITTESTs.
11988         - Don't need to adjust for titlebar heights anymore, the
11989         coordinates are coming in the correct coordinates now (see peters
11990         last patch).
11993 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
11995         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
11996           being translated relative to whole window, instead of client window.
11997           That caused broken offsets on mouseclick (and caused gas for our
11998           InternalWindowManager)
12000 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
12002         * TextControl.cs:
12003           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
12004           - Undo(): Added replay of cursor move on DeleteChars action; added
12005             calling Undo() again if a recorded cursor move is invalid (to
12006             ensure that some action is performed on Undo)
12007         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
12009 2006-06-16  Jackson Harper  <jackson@ximian.com>
12011         * MdiClient.cs: Instead of just sizing maximized windows when
12012         there is a resize we also have to adjust the Y of minimized
12013         windows, so they stay pinned to the bottom of the mdi container.
12014         - Eliminate separate tracking of the active control, we can just
12015         get this from the controls collection.
12016         - Paint the decorations for the newly activated titlebar so we get
12017         a pretty blue bar.
12018         * InternalWindowManager.cs:
12019         * ThemeWin32Classic.cs: Minimized windows get all three buttons
12020         even if they are a tool window.
12021         
12022 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
12024         * TextControl.cs (Undo): Handle non-existent cursor locations in the
12025           undo buffer, these can happen when text was deleted and the cursor
12026           was recorded first. Since we will also have a recorded cursor
12027           after the delete this is not an issue. (Fixes #78651)
12029 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
12031         * AccessibleObject.cs: Remove dependence on Control.is_selected;
12032           instead properly track control states internally (allows us to
12033           remove is_selected from Control)
12035 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12037         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
12038         whose width is not a multiple of 8.
12040 2006-06-13  Jackson Harper  <jackson@ximian.com>
12042         * MdiClient.cs:  Only maximize the next child if the current one
12043         is maximized.
12045 2006-06-13  Chris Toshok  <toshok@ximian.com>
12047         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
12048         modified.  Also, guard against grid or grid_drawing being null in
12049         Invalidate.
12051         * DataGrid.cs: Reformat tons of getters/setters.  In the
12052         DataMember setter, just call SetNewDataSource instead of
12053         duplicating some of its functionality.  In SetNewDataSource, don't
12054         check ListManager for null, since the property getter creates the
12055         object if needed.
12057         * DataGridTableStyle.cs: don't set TableStyle or call
12058         SetDataGridInternal on the column here, it's done in
12059         GridColumnStylesCollection.Add.
12061         * GridColumnStylesCollection.cs: fix all the explicit interface
12062         implementations to just call our methods.  Nuke AddInternal() and
12063         move the body of it to Add().  Also, add a call to
12064         column.SetDataGridInternal to Add().
12066         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
12067         base()+duplicate code.  Also, use the Format property instead of
12068         format to generate an Invalidate ala MS.  Lastly, create the
12069         textbox here, unconditionally.
12070         (set_Format): call Invalidate.
12071         (get_TextBox): no need to call EnsureTextBox.
12072         (Commit): remove the message box.
12073         (Edit) remove the call to EnsureTextBox.
12074         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
12075         (EnterNullValue): no need to check textbox for null.
12076         (HideEditBox): no need to check textbox for null.
12077         (SetDataGridInColumn): add the textbox to the grid's controls.
12078         (EnsureTextBox): nuke.
12079         
12080 2006-06-13  Jackson Harper  <jackson@ximian.com>
12082         * MdiWindowManager.cs: Hook up to the maximized menus paint event
12083         and redraw the buttons when needed. Unhook when the window is
12084         unmaximized.
12085         * MainMenu.cs: Add an internal Paint event, the mdi window manager
12086         needs this so that it can redraw its buttons when the menu is
12087         repainted.
12088         * InternalWindowManager.cs:
12089         * Form.cs: The method order has changed for DrawMaximizedButtons,
12090         so that it can be a PaintEventHandler.
12091         
12092 2006-06-13  Jackson Harper  <jackson@ximian.com>
12094         * MdiClient.cs: When we close a maximized mdi window, the next mdi
12095         window is activated and maximized, even if it wasn't before.
12096         - When  a new window is activated repaint the decorations of the
12097         old one, so that it no longer has the Active "look" (the blue
12098         titlebar).
12099         * InternalWindowManager.cs: Open up CreateButtons to base classes
12100         so they can recreate the buttons on state changes.
12101         - If a window is maximized give it all three buttons
12102         * MdiWindowManager.cs: Create the titlebar buttons when the state
12103         is changed, this is needed because a toolwindow will not have all
12104         three buttons until it is maximized.
12106 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
12108         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
12109           Fixed bug #78609.
12111 2006-06-12  Jackson Harper  <jackson@ximian.com>
12113         * KeysConverter.cs: Make sure we handle the Ctrl special case
12114         if its the only key.
12115         
12116 2006-06-12  Jackson Harper  <jackson@ximian.com>
12118         * Theme.cs: Add a method to get the size of a managed window
12119         toolbar button.
12120         * InternalWindowManager.cs: Remove the ButtonSize property, this
12121         should be retrieved from the theme.
12122         * MdiWindowManager.cs: Get the button size from the theme
12123         * ThemeWin32Classic.cs: Make the method to get the managed window
12124         titlebar button size public.
12125         - Handle the different button sizes of maximized toolwindows
12126         (should match any maximized window).
12127         - Get the titlebar height from the theme, not the WM (which gets
12128         it from the theme).
12130 2006-06-12  Jackson Harper  <jackson@ximian.com>
12132         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
12133         event down to the mdi window manager.
12134         - Expose some extra stuff to base classes
12135         - Make sure to end the Capture on an NC Mouse up, so that we can
12136         get double clicks properly, and the sizing doens't stick.
12137         - When doing PointToClient contain it in the workable desktop
12138         area, this prevents windows from changing size when the cursor is
12139         pulled outside of the working area while sizing.
12140         * MdiWindowManager.cs: When we get a double click maximize the
12141         window.
12142         - Reset the cursor after handling mode changes.
12144 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
12146         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
12147           current desktop, instead of just assuming a 0, 0 origin. This
12148           is needed for our internal window manager, to know the top
12149           margin of the desktop
12151 2006-06-12  Chris Toshok  <toshok@ximian.com>
12153         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
12154         we need this to get rid of the selected background in the bool
12155         column.
12156         (CancelEditing): move the ConcedeFocus call to above the Abort
12157         call.  Also, set is_changing to false and invalidate the row
12158         header if we were changing before.
12159         (ProcessKeyPreviewInternal): remove, since noone outside this
12160         class calls it anymore.  Roll the code into ProcessKeyPreview.
12161         (EndEdit): remove the internal version.
12162         (InvalidateCurrentRowHeader): make private.
12164         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
12165         Keys.Escape handling (and with it the last call to
12166         DataGrid.EndEdit from outside the class.)
12169 2006-06-12  Chris Toshok  <toshok@ximian.com>
12171         * DataGridTextBox.cs (.ctor): isedit defaults to false.
12172         (OnKeyPress): set isedit to true.
12173         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
12174         already handled by the grid.
12176         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
12177         right.  ugh.
12178         (set_DataSource): SetDataSource always returns true, so stop
12179         putting it in an if statement.
12180         (EndEdit): get rid of some {}'s
12181         (ProcessGridKey): return true in case Keys.Escape.
12182         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
12183         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
12184         PositionChanged, stopped connecting to CurrentChanged.
12185         (GetDataSource): simplify this a bunch.
12186         (SetDataSource): change return type from bool to void.
12187         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
12188         to this, and make sure we don't set ListManager.Position inside
12189         set_CurrentCell.
12190         (OnListManagerItemChanged): if we're passed an actual index,
12191         redraw that row.
12193         * CurrencyManager.cs (set_Position): don't call PullData here.
12195 2006-06-09  Jackson Harper  <jackson@ximian.com>
12197         * TreeNode.cs:  Recalculate the visible order before doing the
12198         Expand/Collapse Below calls, because those calls generate an
12199         expose.
12200         - Reduce calls to the TreeView property, which is mildly expensive
12201         by using a local var.
12202         * Form.cs: Layout the MDI child windows when creating the parent
12203         form.
12204         - Don't use the internal constructor anymore
12205         * MdiClient.cs: use the parent form width/height (if available)
12206         when laying out the child windows, we do this because the
12207         mdiclient isn't docked yet when the initial layout is done.
12208         - Don't need an internal constructor anymore.
12210 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12212         * FileDialog.cs: handle access errors when trying to create a folder
12213         or changing to a directory. No need to initialize out parameters.
12215 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
12217         * FileDialog.cs: Append a number when creating a new folder if the
12218           folder already exists (use parenthesis instead of square brackets)
12220 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
12222         * FileDialog.cs:
12223           - Disabled registry support for windows and added better registry
12224             error checking for other systems (need to investigate why it
12225             works perfectly on my system)
12226           - If a folder already exist show an error MessageBox instead of
12227             trying to create an indexed name.
12228           - Fixed a non intentional typo.
12230 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12232         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
12234 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
12236         * FileDialog.cs: When creating a new folder don't crash if the
12237           folder already exists.
12239 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
12241         * FileDialog.cs: Allmost a complete rewrite.
12242           - added a "virtual" file system that handles the differences
12243             between unix and windows file systems (especially the directory
12244             structure). Moved most of the directory and file handling code
12245             into the vfs.
12246             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
12247             UnixFileSystem and FSEntry.
12248           - Recently used folder/directory, size, location and used file names
12249             (file name ComboBox) are now stored in the registry and get read
12250             before the dialog shows up (fixes part 6 of bug #78446).
12251           - Creation of new folders/directories is now possible (context menu
12252             or ToolBar). Added TextEntryDialog for this that fills in the gap
12253             until ListView.LabelEdit works.
12254           - Fixed cursor handling (bug #78527) and focus handling for
12255             PopupButtonPanel
12256           - Various "Search in" ComboBox enhancements. The content of the
12257             dropdown listbox now almost matches ms.
12258           - Changed the behaviour when the user switches to SpecialFolder
12259             Recent to show the ListView in View.Details.
12260           - Beside using the ToolBar to change the View property of the
12261             file ListView it is now possible to use the context menu too.
12263 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
12265         * ComboBox.cs: Don't create a new ObjectCollection when an item
12266           gets inserted. Just insert the item in the existing object_items
12267           ArrayList.
12269 2006-06-08  Jackson Harper  <jackson@ximian.com>
12271         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
12272         that the treeview and root node checks are done also, this fixes a
12273         regression i caused in the unit tests.
12275 2006-06-07  Wade Berrier <wberrier@novell.com> 
12277         * RichTextBox.cs: More ISO8859-1 -> unicode
12279 2006-06-07  Mike Kestner  <mkestner@novell.com>
12281         * ComboBox.cs : use items to hold highlight/selection so that
12282         collection insertions don't require synchronization.
12284 2006-06-07  Jackson Harper  <jackson@ximian.com>
12286         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
12287         routine.  We now always keep the sized edge at the cursor instead
12288         of computing movement and adjusting rects.  There is one buglet
12289         with this method though when the cursor is moved over area that
12290         the window can not expand too (such as the toolbars on the desktop).
12292 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12294         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
12295         here. Fixes crash on startup in AlbumSurfer.
12297 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
12299         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
12300           values
12302 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12304         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
12305         statement to avoid calling XNextEvent which will block if another thread
12306         took the event that we were expecting. Fixes bug #78605.
12308 2006-06-07  Mike Kestner  <mkestner@novell.com>
12310         * ListView.cs : isolated checkbox clicking from the selection logic.
12311         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
12313 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12315         * Form.cs: Check that the value passed to Form.DialogResult
12316         is a valid enum value.
12318 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12320         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
12321         Computer'. Clicking it in the network view goes to 'My Computer'.
12322         Added CIFS filesystem type. Display the mount point of filesystems.
12323         Avoid duplicate mount points (happens for me with CIFS);
12325 2006-06-06  Jackson Harper  <jackson@ximian.com>
12327         * InternalWindowManager.cs: Draw the maximized windows buttons
12328         when resizing.
12330 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12332         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
12333         all other dialogs. Fixes bug #78585.
12335 2006-06-06  Mike Kestner  <mkestner@novell.com>
12337         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
12338         Only invalidate checkbox on checkstate changes to avoid flicker.
12339         * ListBox.cs : avoid unselect/select when clicking selected item.
12340         avoid reselection flicker for already multiselected items.
12341         Fixes #78382.
12343 2006-06-06  Jackson Harper  <jackson@ximian.com>
12345         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
12346         the parent form so that the menu is removed if needed.
12348 2006-06-06  Mike Kestner  <mkestner@novell.com>
12350         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
12351         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
12353 2006-06-06  Mike Kestner  <mkestner@novell.com>
12355         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
12358 2006-06-06  Jackson Harper  <jackson@ximian.com>
12360         * Control.cs: Use the property (instead of the field) to get the
12361         default cursor so it is instantiated correctly.
12362         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
12363         resizes so we need to manually repaint the window decorations here.
12364         - Set the titlebar button locations as soon as they are created,
12365         otherwise they are not set correctly on win32.
12366         
12367 2006-06-06  Chris Toshok  <toshok@ximian.com>
12369         * CurrencyManager.cs (set_Position): call PullData before
12370         OnCurrentChanged.
12371         (AddNew): after calling IBindingList.AddNew, update our
12372         listposition, and call OnCurrentChanged/OnPositionChanged (without
12373         calling PullData).
12374         (OnCurrentChanged): remove the call to PullData from here.
12375         (OnItemChanged): remove the call to PushData from here.
12376         (OnPositionChanged): change the test from == null to != null to
12377         match the other methods.
12378         (ListChangedHandler): the grossest part of the patch.  Implement
12379         this such that it passes the unit tests in CurrencyManagerTest and
12380         the output more or less matches that of MS's implementation.
12382 2006-06-06  Mike Kestner  <mkestner@novell.com>
12384         * ListView.cs : only update check state on single click.
12385         * ThemeWin32Classic.cs : fix focus drawing for details view without
12386         fullrowselect.  Fixes #78454.
12387         * XplatUIX11.cs : fix for double click emission.
12389 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
12391         * PropertyGridView.cs : Applied Atsushi's patch to fix
12392         font dialog bug  (#78197).
12394 2006-06-05  Jackson Harper  <jackson@ximian.com>
12396         * TreeNode.cs: Compute the next node for expanding/collapsing
12397         correctly. We now factor in nodes without a NextNode
12398         correctly. (Fixes somes cases in nunit-gui).
12399         * InternalWindowManager.cs: Set the bounds when updating the
12400         virtual position of a tool window.
12401         
12402 2006-06-05  Chris Toshok  <toshok@ximian.com>
12404         * DataGrid.cs: rename cached_currencymgr to list_manager.
12405         (set_CurrentCell): move SetCurrentCell code here, and clean it up
12406         some.
12407         (CurrentRow, CurrentColumn): single accessors so we can make the
12408         cursor movement code a lot easier to understand.
12409         (CurrentRowIndex): implement this in terms of CurrentRow.
12410         (BeginEdit): clean this up a bit.
12411         (CancelEditing): sort out the is_editing/is_changing/is_adding
12412         stuff a little.
12413         (EndEdit): minor changes.
12414         (OnKeyDown): add a comment about a (most likely) unnecessary
12415         check.
12416         (OnMouseDown): cancel editing when we click on a row header.  And
12417         use the CurrentRow setter, not CurrentCell.
12418         (ProcessDialogKey): directly call ProcessGridKey.
12419         (UpdateSelectionAfterCursorMove): factor out this common block of
12420         code (it's used everywhere that we move the cursor by updating row
12421         or column).
12422         (ProcessGridKey): pretty substantial overhaul.  Use the
12423         CurrentRow/CurrentColumn properties to make the code a lot more
12424         readable.  Only use the CurrentCell property when we have to
12425         modify both row and column at once.  Tab behavior is still broken,
12426         and Delete is untested.
12427         (Select): if we have no selected rows, set selection_start to
12428         @row.
12429         (EditCurrentCell): rename EditCell this.  It was only ever invoked
12430         with CurrentCell as the arg, so drop the arg and rename it.
12432         * DataGridColumnStyle.cs: clean up the constructors a little, and
12433         drop CommonConstructor().
12435         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
12436         actually get notified when the user hits it.
12437         (ProcessKeyMessage): *substantially* simplify this method.
12438         There's no reason (that I can see) for the textbox to be making
12439         calls into the datagrid at all.  Remove all of them but the ones
12440         for Enter handling.  those will take some more work.
12442         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
12443         calling HideEditBox.
12444         (HideEditBox): if we have an active textbox, render it invisible
12445         without causing a re-layout of the datagrid.
12447 2006-06-05  Mike Kestner  <mkestner@novell.com>
12449         * ListView.cs : fix NRE crasher when focuseditem is cleared by
12450         collection changes by resetting it to Items[0].  Fixes #78587.
12452 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12454         * MessageBox.cs: if the height of the text is larger than the icon_size,
12455         use that. Fixes bug #78575.
12457 2006-06-05  Jackson Harper  <jackson@ximian.com>
12459         * TreeView.cs: Fix line drawing when scrolling.  To do this each
12460         node is basically responsible for drawing its entire horizontal
12461         area.  When drawing a node it draws its parent node lines if
12462         needed.
12463         - Adjust the clip area to the viewport rectangle
12464         - Fix Left/Right key handling to match MS. (It expand/collapses
12465         and moves to parents/first child but does not move selection to
12466         sibling nodes).
12467         - Fix SetTop to work with new bound calculation code
12468         - When scrollbars are no longer needed we need to reset scrolling
12469         vars and recalculate the visible order so the redraw is correct
12470         * TreeNode.cs: We can't expand/collapse nodes with no children.
12472 2006-06-03  John Luke  <john.luke@gmail.com> 
12474         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
12475         so the colors work without dev packages
12476         
12477 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
12479         * Control.cs 
12480           - Select: Implemented to just use activate. Seems to match MS 
12481             behaviour closest. Documented to only do actual control walking 
12482             based on it's parameters if in a container control so I moved 
12483             the code there.
12484           - Removed selection check logic from our internal Select() method
12485         * ContainerControl.cs:
12486           - Select: Moved selection logic from Control here, since MS documents
12487             that containers obey the bool arguments. No longer calling base
12489 2006-06-02  Jackson Harper  <jackson@ximian.com>
12491         * TreeView.cs: If the selected node isn't changed when we get
12492         focus update the previously selected node so that we see the
12493         selection box.
12495 2006-06-02  Mike Kestner  <mkestner@novell.com>
12497         * ComboBox.cs: restructure grab and general mouse event handling.
12498         Make the composite control raise mouse events like it was a single
12499         control for leaves/enters/motion/up/down events.  fix dropdown list
12500         coordinate mangling and refactor it into the scrollbar subclass to
12501         reduce code duplication.  Fixes #78282 #78361 and #78457.
12503 2006-06-02  Mike Kestner  <mkestner@novell.com>
12505         * ScrollBar.cs: remove Capture setting/clearing, as it happens
12506         automatically in the Control.WndProc.
12508 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12510         * FileDialog.cs: fix crash when running SharpChess, which sets the
12511         FilterIndex to 2 with only one Filter.
12513 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12515         * ToolBar.cs: add SizeSpecified property.
12516         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
12517         try to figure out our real size, otherwise fallback to what the
12518         container says.
12520 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
12522         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
12523         * Control.cs (WndProc): MS always calls the DefWndProc to pass
12524           up the event
12526 2006-06-01  Mike Kestner  <mkestner@novell.com>
12528         * ListView.cs: revamp the focus management in ListView.  It still
12529         causes churn of LostFocus/GotFocus emissions on clicks, but it's
12530         better than not handling focus at all.  Will revisit when pdb feels
12531         the general focus handling is solid.  Fixes #78526.
12533 2006-06-01  Jackson Harper  <jackson@ximian.com>
12535         * TreeView.cs: Set the default border style in the constructor.
12536         - Move painting to use OnPaintInternal instead of capturing
12537         WM_PAINT, this is the correct way of doing things
12538         - UpdateBelow shouldn't invalidate the scrollbar area
12539         - Cap the top on update below in case the node was above the top
12540         of the viewport rectangle.
12541         - ExpandBelow and Collapse below need to obey Begin/End Update.
12542         * TreeNode.cs: Make is_expanded internal so the treenode
12543         collection can change it without firing the whole event chain.
12544         * TreeNodeCollection.cs: When clearing all the child nodes make
12545         sure to recalc the visible order.
12546         - Improve algo for remove the top node
12548 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
12550         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
12551           SendMessage directly calling window procedures, which in turn might
12552           call SetFocus()
12554 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
12556         * Control.cs: Don't handle WM_SETFOCUS if the same window already
12557           has focus (works around X11 sending a FocusIn after our SetFocus)
12558         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
12560 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
12562         * Mime.cs: Fix for the NET_2_0 build.
12563           NameValueCollection needs StringComparer now.
12565 2006-05-31  Chris Toshok  <toshok@ximian.com>
12567         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
12568         return (via an out parameter) the starting X of the column.
12569         (UpdateVisibleColumn): track change to FromPixelToColumn.
12570         (HitTest): add a ColumnResize case here.
12571         (DrawResizeLine): new function, probably poorly named.
12573         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
12574         only need to keep one reference.
12575         (set_ListManager): same.
12576         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
12577         Also, add support for HitTestType.ColumnResize.
12578         (OnMouseMove): add column resize behavior here, and change the
12579         cursor to the correct one as we move around the datagrid.
12580         (OnMouseUp): terminate the column resize if we're resizing.
12581         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
12582         for the current cell.
12583         (ConnectListManagerEvents): use cached_currencymgr.
12584         (DisconnectListManagerEvents): fill this in, using
12585         cached_currencymgr.
12586         (SetCurrentCell): remove cached_currencymgr_events handling.
12587         (SetDataMember): only call DisconnectListManagerEvents if
12588         cached_currencymgr is != null.
12589         (SetDataSource): same.
12590         (OnListManagerCurrentChanged): cached_currencymgr_events ->
12591         cached_currencymgr.
12593 2006-05-31  Jackson Harper  <jackson@ximian.com>
12595         * BindingManagerBase.cs: Remove somedebug code that creeped into
12596         SVN.
12597         * TreeNode.cs: We get the indent level dynamically right now, so
12598         don't track it as a member.
12599         * TreeNodeCollection.cs: Make sure all nodes added to the list
12600         have parents, treeviews/topnodes setup properly.
12601         - Don't attempt to track indent level.
12603 2006-05-30  Jackson Harper  <jackson@ximian.com>
12605         * BindingContext.cs: Create the currency manager tables here.
12606         This allows us to more easily create null tables (when bad data
12607         members are used), and more easily create related currency
12608         managers.
12609         * CurrencyManager.cs: All the table creation stuff is done by the
12610         binding context now.
12611         - Current should throw an exception if listposition is -1.
12612         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
12613         been bound yet.
12615 2006-05-30  Mike Kestner  <mkestner@novell.com>
12617         * ListView.cs: allow reexpansion of zero-width column headers.
12618         Fixes #78528.
12620 2006-05-28  Chris Toshok  <toshok@ximian.com>
12622         * CurrencyManager.cs (get_Current): after the late binding
12623         listposition = -1 fix, we need to guard against it here and return
12624         null, otherwise we raise an exception (which is swallowed
12625         elsewhere, and breaks datagrid databinding.)
12627 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
12629         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
12630           than WM_SYSKEY, don't throw if get something unexpected (#78507)
12632 2006-05-26  Jackson Harper  <jackson@ximian.com>
12634         * ControlPaint.cs:
12635         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
12636         values, it's faster and it's all we care about (we don't care if
12637         the names aren't equal).
12638         * KeyboardLayouts.cs: Eliminate some dead code.
12639         - Lazy init things
12640         * X11Keyboard.cs: Lazy init keyboard detection.
12641         - Cleanup access modifiers a little.
12643 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
12645         * XplatUIX11.cs: Once again, attempting to get layout just right.
12647 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
12649         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
12650           the sizes of each link section, that will result in sizes that
12651           match DrawString's layout (Fixes #78391)
12653 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
12655         * FileDialog.cs: If AddExtension property is true autocomplete the
12656           extensions in SaveFileDialog correctly. Fixes bug #78453.
12657           Set MyNetwork and MyComputer to "C:\" for windows. This should
12658           fix part 8 of bug #78446 for now.
12660 2006-05-26  Chris Toshok  <toshok@ximian.com>
12662         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
12663         invalidate the current row header if we need to, but presumably
12664         we'll invalidate the row corrsponding to the bounds or
12665         editingControl.
12666         (GridHScrolled): switch back to this method, as it's part of the
12667         public api.  *sigh*.
12668         (GridVScrolled): same.
12669         (OnMouseWheel): hack up something that more or less works.  Call
12670         GridHScrolled/GridVScrolled directly, instead of duplicating much
12671         of their code here.
12672         (EnsureCellVisibility): reinstate a bunch of this code, since we
12673         can't just set the scrollbar Value and expect to do all the work
12674         in the ValueChanged handler.  Also, Call Update() after scrolling
12675         in one direction so the other XplatX11.ScrollWindow call has the
12676         proper stuff in the proper places.
12677         (EditCell): set is_editing to true before calling .Edit.
12679         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
12680         don't bother comparing first.
12681         (OnKeyPress): call grid.ColumnStartedEditing before calling
12682         base.OnKeyPress.  this will set is_changing and invalidate the row
12683         header if necessary.
12684         (ProcessKeyMessage): for WM_CHAR messages, call
12685         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
12686         and WM_KEYDOWN.
12687         
12688         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
12689         it's done in the DataGrid.
12690         (NextState): call grid.ColumnStartedEditing, which takes care of
12691         invalidating the row header (and setting is_changing).
12693         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
12694         here.  it's done in the DataGrid.
12696 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12698         * Control.cs: allow changing the cursor when the mouse position is
12699         out of bounds but Capture is set.
12700         * LinkLabel.cs: handle the case when the mouse button is pressed on the
12701         linklabel but released somewhere else.
12703 2006-05-25  Jackson Harper  <jackson@ximian.com>
12705         * TreeView.cs: When we get focus if there is no selected node make
12706         it the top node
12707         - Remove some uneeded setup code from Draw.
12708         * TreeNodeCollection.cs: If the tree doesn't have a top node when
12709         a new node is inserted make the new node the top.
12710         * XplatUIX11.cs:
12711         * Timer.cs: Use Utc time so that no local time zone stuff needs to
12712         be used (should be faster).
12713         
12714 2006-05-25  Chris Toshok  <toshok@ximian.com>
12716         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
12717         problem with the last commit.
12719 2006-05-25  Chris Toshok  <toshok@ximian.com>
12721         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
12722         need the invalidate call here, while scrolling right-to-left via
12723         the left arrow key (i.e. moving the editing cell while scrolling).
12725         * DataGrid.cs (.ctor): remove the initialization of
12726         ctrl_pressed/shift_pressed.  We no longer track them using key
12727         up/down handlers, but by using Control.ModifierKeys.  Also, switch
12728         to using ValueChanged handlers on the scrollbars instead of
12729         Scrolled event handlers.  This simplifies a bunch of the scrolling
12730         code.
12731         (GridHValueChanged): rename from GridHScrolled, and change it to
12732         work with the new event args.
12733         (GridVValueChanged): same.
12734         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
12735         (OnMouseWheel): actually scroll the datagrid.  Don't change the
12736         selected cell.
12737         (ProcessGridKey): correct all the keyboard navigation stuff I
12738         could find.  Ctrl up/down/left/right/home/end work now.
12739         (EnsureCellVisibility): correct method name spelling.  Also,
12740         simplify this a touch by not explicitly calling the
12741         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
12742         scrollbar value.
12743         (OnKeyUpDG): no need for this method now.
12744         
12745 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12747         * LinkLabel.cs: display the OverrideCursor when hovering the label.
12748         Fixes bug #78392.
12750 2006-05-25  Chris Toshok  <toshok@ximian.com>
12752         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
12753         r61019.
12755 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
12757         * Application.cs: Moved setting of is_modal and closing to before
12758           we create the control, to allow the event handlers called as a
12759           result of creation affect closing. Also removed Gonzalo's previous
12760           change to setting DialogResult, the behaviour has been moved to 
12761           Form.ShowDialog()
12762         * Form.cs: 
12763           - ShowDialog(): Removed explicit creation of the form, let RunLoop
12764             handle it instead
12765           - ShowDialog(): If no dialog result is set, we need to return Cancel
12766           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
12767             the close is cancelled
12769 2006-05-25  Jackson Harper  <jackson@ximian.com>
12771         * StatusBar.cs: We only need to update the sizes of the other
12772         panels when we have auto size contents.  Also we are only updating
12773         the contents of the panel, not the borders, so compensate for the
12774         border width (TODO: get this width from the theme somehow).
12775         * TreeView.cs: Scrollable is true by default
12776         - Use invalidate instead of refresh where needed
12777         - Factor the scrollable value into scrollbar updating
12778         - Update the scrollbars if the Scrollable property is altered
12779         - Update the selected node if its ImageIndex is changed
12780         - Handle null nodes in UpdateNode (mainly so we don't have to
12781         check if selected is null when updating it
12782         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
12783         are factored into the visible count
12784         - Use VisibleCount for clarity in the code
12785         - When the font is changed we need to recurse through all the
12786         nodes and invalidate their sizes
12787         
12788 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12790         * Application.cs: set the DialogResult to fixed when the main form is
12791         hidden or destroyed while being modal.
12793 2006-05-25  Miguel de Icaza  <miguel@novell.com>
12795         * Theme.cs: Use Tangoified messagebox icons. 
12797         (GetSizedResourceImage): Also cope with width = 0 and do not
12798         trigger a warning in that case (0 means "give me your icon from
12799         the resouce, no special size needed).
12801 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
12803         * Application.cs: Leave runloop if the the main modal form is 
12804           hidden (fixes #78484)
12806 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
12808         * BindingContext.cs : reject null datasource in Contains() and
12809           Item[].
12810         * CurrencyManager.cs : check data_member validity when data_source
12811           is dataset. When it is late binding, the initial position is -1.
12813 2006-05-24  Jackson Harper  <jackson@ximian.com>
12815         * TreeNodeCollection.cs: Dont't recalculate the visible order on
12816         inserted nodes that aren't visible.  This changes the
12817         max_visible_order which confuses scrollbar settings.
12818         - Use the enumerator to get the prev node instead of duplicating
12819         code.
12820         * TreeView.cs: Use new method for setting scrollbar values
12821         - Don't set the bounds every time the scrollbar is updated
12822         - When updating below the root node use an invalidate instead of a
12823         refresh to prevent the child controls (scrollbars) from being
12824         refreshed. (UpdateBelow still needs to be reworked anyways).
12825         - Reenable SetBottom now that visible orders are set correctly,
12826         added some debug code incase we ever get bad values there again.
12827         - Set the scrollbar max to 2 less then the max value, this
12828         compensates for the max value being one above the node count, and
12829         for scrollbars adding one extra "notch".
12830         - When drawing image nodes if there is an imagelist we draw the
12831         first image in the list if the supplied image index is out of the
12832         image list's bounds.
12833         
12834 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
12836         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
12837           we receive a size change from the WM (Fixes #78503)
12839 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
12841         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
12842           rectangle (Fixes #78501)
12844 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
12846         * ButtonBase.cs: 
12847           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
12848             as a bitfield.
12849           - Fixed MouseMove to no longer switch pressed state unless the left
12850             mouse button is pressed. Atsushi provided the original patch (#78485)
12851           
12852 2006-05-24  Jackson Harper  <jackson@ximian.com>
12854         * ScrollBar.cs: New internal methods that allow us to change a
12855         couple values on the scrollbar (the most common case is maximum
12856         and large change) without getting multiple invalidates.
12858 2006-05-24  Chris Toshok  <toshok@ximian.com>
12860         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
12861         (Edit): save off the original state in oldState, and set
12862         grid.is_editing to true.
12863         (OnKeyDown): abort editing if escape is pressed.  also, call
12864         NextState if space is pressed.
12865         (OnMouseDown): call NextState.
12866         (NextState): factor out shared code from OnKeyDown and OnMouseDown
12867         here.  Also, only invalidate the row header once (on the initial
12868         is_changing switch) to save on redraws.
12870 2006-05-24  Chris Toshok  <toshok@ximian.com>
12872         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
12873         if the value in the cell is different than it was before.  This
12874         keeps us from triggering a layout when we move around a datarid
12875         with a highlighted cell.
12876         (Edit): suspend layout when creating/positining the text box, and
12877         resume passing false so we don't ever actually re-layout.
12878         (ReleaseHostedControl): same.
12879         (EnsureTextBox): reformat slightly, and set WordWrap to false.
12881         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
12882         control-key sequences should go to the datagrid - remove that
12883         lock.  Also, modify the conditions under which we move between
12884         cells when moving the cursor within a cell, and remove the "this"
12885         and "base" from field accesses.  We weren't even consistent, given
12886         they all were in the base class.
12888 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
12890         * Binding.cs : (.ctor)
12891           An obvious NRE fix for BindingTest.CtorNullTest().
12893 2006-05-23  Chris Toshok  <toshok@ximian.com>
12895         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
12896         them between lines.  This fixes some quirks editing cells in the
12897         datagrid.
12899 2006-05-23  Jackson Harper  <jackson@ximian.com>
12901         * TreeView.cs: Use begin/end update when doing expand/collapse all
12902         so that we don't get flicker on the scrollbar.
12904 2006-05-23  Jackson Harper  <jackson@ximian.com>
12906         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
12907         treenode calculations to be independant of the painting code. To
12908         do this nodes track a visible order which is calculated by the
12909         treeview.
12910         - Call new methods for expanding/collapsing nodes.  These methods
12911         use scrollwindow so we don't have to update everything below the
12912         node.
12913         * TreeView.cs: Refactored drawing and scrolling code.  We don't
12914         need to update nodes when drawing anymore or calculate scrollbar
12915         stuff.
12916         - Added new methods for expanding/collapsing nodes. These methods
12917         use ScrollWindow so as to not have to redraw all the nodes below.
12918         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
12919         we add/remove nodes or sort.
12920         - Handle removing the selected and the top node properly.
12922 2006-05-23  Chris Toshok  <toshok@ximian.com>
12924         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
12925         maybe this should actually happen in the datagrid code?
12926         (EndEdit): no need to invalidate anything, given that
12927         ReleaseHostedControl causes the datagrid to relayout, which
12928         invalidates everything anyway.
12930         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
12931         in SetCurrentCell).
12932         (set_SelectionBackColor): call InvalidateSelection instead of
12933         Refresh.
12934         (set_SelectionForeColor): same.
12935         (BeginEdit): Flesh this out a bit.
12936         (CancelEditing): only do any of this if we're editing/adding.
12937         (EndEdit): same.
12938         (OnMouseDown): there's no need to cancel editing here, it's done
12939         in SetCurrentCell.
12940         (SetCurrentCell): only invalidate the current row header if it's a
12941         different row than the new one.
12942         (ShiftSelection): fix this to work like MS does.
12943         (ResetSelection): factor out the invalidation of selected_rows to
12944         InvalidateSelection.
12945         (SetDataSource): cancel any editing that's going on.
12947         * DataGridColumnStyle.cs
12948         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
12949         call the non-interface version.
12951         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
12952         header rectangle with the clip rectangle so we don't redraw the
12953         entire header for just a small area.  Gets rid of the last flicker
12954         when horizontally scrolling.
12955         (DataGridPaintRow): same.
12957 2006-05-23  Mike Kestner  <mkestner@novell.com>
12959         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
12960         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
12961         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
12962         Critical bug report.
12964 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
12966         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
12967           and this fixes #78493
12969 2006-05-23  Miguel de Icaza  <miguel@novell.com>
12971         * Theme.cs (GetSizedResourceImage): Scale images if the proper
12972         size is not found.  
12973         
12974         * FileDialog.cs: Do not change the background for the side bar as
12975         it wont work nicely with the theme, and also reduces the artifacts
12976         in rendering the icons (which I want to fix too).
12978         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
12979         resources, not resgen resources. 
12981         (PlatformDefaultHandler): Pull images using the new API.
12983 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
12985         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
12986           a reference to the hwnd and will not remove it unless there are
12987           no pending exposures (fixes #78341)
12988         * XplatUI.cs: Improved debug
12990 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
12992         * MenuAPI.cs : don't handle OnClick event when it was not the left
12993           button. Fixed bug #78487.
12995 2006-05-23  Mike Kestner  <mkestner@novell.com>
12997         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
12998         prefer submenus to the top menu for item lookup, to avoid popping down
12999         top-row items.
13001 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
13003         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
13004           Graphics.FillRectangle as the visual results are really bad (even
13005           on win). We now draw perfect arrows (and perfect shadows when the
13006           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
13007           Pen.DashPattern to draw the dots of each line.
13009 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
13011         * FileDialog.cs: Update the filename combobox when navigating through
13012           the ListView with the cursor keys. Fixes part 7 of bug #78446.
13014 2006-05-22  Mike Kestner  <mkestner@novell.com>
13016         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
13017         Fixes #78463.
13019 2006-05-22  Mike Kestner  <mkestner@novell.com>
13021         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
13022         requests. Fix a misspelled parameter and a copy paste exception error
13023         in Select.
13025 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
13027         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
13028           to get the same width/height (5/13) on X11 as the default font has on
13029           win32. This means that our DefaultFont emSize is smaller than the 
13030           the MS SWF equivalent (even thought the width/height stays the same)
13032 2006-05-20  Jackson Harper  <jackson@ximian.com>
13034         * MdiClient.cs:
13035         * MdiWindowManager.cs:
13036         * InternalWindowManager.cs: Make sure to use the border width from
13037         the theme.
13039 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
13041         * PrintDialog.cs: Implements printer details
13043 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
13045         * FileDialog.cs: Added focus handling for PopupButtonPanel.
13046           Fixes part 1 and 2 of bug #78446
13048 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
13050         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
13051           instead of sticking to the first ever calculated value
13053 2006-05-19  Mike Kestner  <mkestner@novell.com>
13055         * ComboBox.cs: fix mouse motion selection to use MousePosition and
13056         PointToClient, since Capture is set. Fixes #78344.
13058 2006-05-19  Mike Kestner  <mkestner@novell.com>
13060         * ListView.cs: match MS behavior in Details view where items are not
13061         drawn if Columns.Count == 0. 
13062         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
13063         Use a separate pen to draw the check, since changing the width affects
13064         the box as well.  Fixes #78454.
13066 2006-05-18  Miguel de Icaza  <miguel@novell.com>
13068         * ListView.cs: ArgumentOutOfRangeException, single versions of the
13069         exception should throw the name of the invalid argument.
13071         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
13072         there are no files listed. 
13074 2006-05-18  Jackson Harper  <jackson@ximian.com>
13076         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
13077         up.
13079 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
13081         * Control.cs: Brought back our old UpdateZOrder method as a private
13082           function and switched our calls from UpdateZOrder to the new one.
13083           This fixes the Paint.Net canvas disappearing bug.
13085 2006-05-18  Jackson Harper  <jackson@ximian.com>
13087         * Theme.cs:
13088         * ThemeWin32Classic.cs:
13089         * InternalWindowManager.cs: Move the drawing into the theme,
13090         expose everything the theme should need from the window manager.
13092 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
13094         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
13095           from the call to NativeWindow to avoid walking up the parent chain
13096           further than needed (speeds up setting cursors and avoids setting
13097           the wrong cursor if a parent has another cursor defined)
13098         * Cursor.cs: When loading an icon as cursor, MS uses the center of
13099           the icon as hotspot, not what's contained as hotspot in the icon
13100           file. This fixes the perceived drawing offset seen with Paint.Net
13101         
13102 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
13104         * XplatUIX11.cs: 
13105           - Store the calculated rectangle in Hwnd object and use it when 
13106             setting the client size
13107           - Force Toolwindows to always be type Dock, to ensure they're on top
13109 2006-05-18  Mike Kestner  <mkestner@novell.com>
13111         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
13112         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
13113         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
13114         Substantial refactoring to remove confusing nested classes. Coding
13115         standard and Get+Set->property refactorings.  Shift to index based
13116         highlighting in ComboListBox instead of constantly using IndexOf and
13117         Items[]. Add invalidations on resize for DropDownList to fix ugliness
13118         in FileDialog growth.  Draw borders manually since Simple mode needs
13119         to look like two independent controls.  Make listbox border
13120         conditional to DropDownStyle.  Improved OwnerDraw support.
13122 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
13124         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
13125         Don't set the disposed graphics to null, so we can throw the "right"
13126         exception if the graphics is reused later (added a flag to avoid 
13127         double disposing). Some behaviours are different under 2.0 and are
13128         filled under bug #78448.
13130 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
13132         * Control.cs: When double-buffering is enabled, we need to reset
13133           our graphics context between paint calls. Otherwise, any 
13134           transformations and other alterations on the context will 
13135           become cumulative (#77734)
13137 2006-05-18  Mike Kestner  <mkestner@novell.com>
13139         * ListView.cs: do focused item selection like MS on clicks. 
13140         Rework focus handling for ItemControl so LostFocus invalidates as
13141         well.
13142         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
13143         the ListView ItemControl has focus.
13145 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
13147         * XplatUIX11.cs: If client_window ends up being width or height zero
13148           due to border settings, move it off window inside whole_window (#78433)
13150 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
13152         * Mime.cs: Shrink the mime file cache correctly.
13154 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
13156         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
13158 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
13160         * XplatUIX11.cs (AddExpose): More sanity checks
13162 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
13164         * XplatUIX11.cs:
13165           - AddExpose: Don't add expose ranges outside the size of our
13166             window
13167           - Cast opacity values to Int32 to avoid crashes with certain
13168             values
13169           - Added disabled code paths that protect against illegal cross-
13170             thread painting (Developers.exe)
13172 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
13174         * ProgressBar.cs: Invalidate the control when it's resized
13175           since block size is based on control size. (#78388)
13177 2006-05-16  Miguel de Icaza  <miguel@novell.com>
13179         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
13180         of setting the incoming argument to the "reset" value, we set the
13181         this.datamember to string.empty (before we were invalidating the
13182         incoming data).   
13184         Fixes 78420
13186 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
13188         * Form.cs: Only apply transparency settings after the form
13189           is created. (Fixes #77800)
13191 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
13193         * ApplicationContext.cs: Grab the HandleDestroyed event so
13194           we know when to fire OnMainFormClosed 
13196 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
13198         * Application.cs: Introduced sub-class to allow tracking of
13199           threads and centralized triggering of the event mess for
13200           ThreadExit, AppExit, etc..  (#76156)
13202 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
13204         * MimeIcon.cs:
13205           - Do not return a null icon index value for a mime subclass.
13206             Instead try the main mime type class too.
13207           - Seems that some newer distributions don't have a link to some
13208             gnome default icons anymore. So check the default gnome dir too.
13209           
13211 2006-05-16  Jackson Harper  <jackson@ximian.com>
13213         * MdiClient.cs: Don't paint the parent background image if we have
13214         our own background image.
13216 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
13218         * Control.cs:
13219           - PerformLayout: Do not shrink space filled by DockStyle.Fill
13220             controls, all filled controls are supposed to overlap (#78080)
13221           - UpdateZOrder is supposed to update the control's z-order in the
13222             parent's z-order chain. Fixed to behave like that
13223           - BringToFront: Removed obsolete code
13224           - SendToBack: Simplyfied
13225           - SetChildIndex: Trigger layout calculations when Z-order changes
13226             since layout is done by z-order
13228 2006-05-16  Chris Toshok  <toshok@ximian.com>
13230         [ fixes bug #78410 ]
13231         * DataGrid.cs (set_AlternatingBackColor): use
13232         grid_drawing.InvalidateCells instead of Refresh().
13233         (set_BackColor): call grid_drawing.InvalidateCells.
13234         (set_BackgroundColor): use Invalidate instead of Refresh.
13236         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
13237         invalidate the cell area.
13239 2006-05-15  Chris Toshok  <toshok@ximian.com>
13241         [ fixes bug #78011 ]
13242         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
13243         on to DataGridPaintRow.
13244         (DataGridPaintRow): take a clip argument, and only draw the cells
13245         which intersect it.  same with the not_usedarea.
13247         * Theme.cs (DataGridPaintRow) add @clip parameter.
13249         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
13250         XplatUI.ScrollWindow.
13251         (ScrollToRow): same.
13253         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
13254         with last column which was causing a gray swath to appear with the
13255         XplatUI.ScrollWindow code.
13257 2006-05-15  Chris Toshok  <toshok@ximian.com>
13259         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
13260         use XplatUI.ScrollWindow.
13261         (VerticalScrollEvent): use XplatUI.ScrollWindow.
13263 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
13265         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
13267 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
13269         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
13270           file since there are no equivalent X11 cursors
13272 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
13274         * MonthCalendar.cs : DateTimePicker should reflect selected date
13275           on mouse*up*, not mouse*down*. Fixed originally reported part of
13276           bug #76474.
13278 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
13280         * TabControl.cs : When argument index is equal or more than tab
13281           count, just ignore. Fixed bug #78395.
13283 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
13285         * Control.cs: Dispose all child controls when control is diposed (#78394)
13287 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
13289         * ColorDialog.cs: Finally it is possible to select the color with
13290           the text boxes
13292 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
13294         * PrintDialog.cs: Fix typo
13296 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
13298         * PrintDialog.cs: PrintDialog is not resizable
13299         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
13300           color. Made some ToolBar drawing methods protected virtual.
13302 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
13304         * PrintDialog.cs: Implementation of the PrintDialog
13306 2006-05-12  Chris Toshok  <toshok@ximian.com>
13308         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
13309         thumb, instead use MoveThumb.  This has the side effect of making
13310         most of the other thumb moving machinery use MoveThumb as well.
13311         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
13312         need to actually invalidate the rectangle where the new thumb will
13313         go.
13314         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
13315         We force an Update() after, so it's not as fast as it could be,
13316         but at least there's zero flicker and no droppings.
13317         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
13318         (UpdateThumbPos): add another argument (dirty), which says whether
13319         or not to calculate/add dirty regions which we later invalidate.
13320         For cases where we know we're going to use MoveThumb, we pass
13321         false for this.  Otherwise, pass true.
13323 2006-05-12  Jackson Harper  <jackson@ximian.com>
13325         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
13326         the status bar.
13327         
13328 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
13330         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
13331           and GetClipRegion methods and UserClipWontExposeParent property.
13332         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
13333           overriding UserClipWontExposeParent property, setting to false, since
13334           Win32 handles the required expose messages to draw our clipped parent
13335           areas internally
13336         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
13337           PaintEventStart to set the user clip region if set.
13338         * Control.cs: 
13339           - Now internally tracking the Region for the control since we need to
13340             store it if the handle is not yet created and only set it when it
13341             becomes created. Before setting the region forced handle creation
13342           - Added code to draw the parents underneath a user-clipped region
13343         * Hwnd.cs: Added UserClip property
13345 2006-05-12  Chris Toshok  <toshok@ximian.com>
13347         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
13348         (set_Maximum): same.
13349         (set_Minimum): same.
13350         (set_SmallChange): same.
13351         (OnMouseUpSB): remove the call to refresh when releasing the
13352         thumb.  We shouldn't need it.
13353         
13354 2006-05-12  Miguel de Icaza  <miguel@novell.com>
13356         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
13357         AutoSize set to None, we do not need to relayout everything, we
13358         just need to invalidate the current region.
13360         (Draw): Do not draw the entire ClientArea, just redraw the
13361         clip area being passed.
13363         * MdiClient.cs: Make MdiClient constructor with the Form argument
13364         internal. 
13366 2006-05-12  Jackson Harper  <jackson@ximian.com>
13368         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
13369         parents background image,  but strangely not their own.
13370         - (DrawStatusBarPanel): Take into account horizontal alignment
13371         when drawing the strings and icons.
13373 2006-05-12  Mike Kestner  <mkestner@novell.com>
13375         * ListBox.cs: avoid invalidations for focus when the collection is
13376         empty. 
13378 2006-05-12  Chris Toshok  <toshok@ximian.com>
13380         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
13381         invalidate the entire thumb area.  Call InvalidateDirty which
13382         limits the redraw to the thumb itself and surrounding pixels.
13384         * XplatUIX11.cs (ScrollWindow): optimize copying.
13385         
13386 2006-05-12  Chris Toshok  <toshok@ximian.com>
13388         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
13389         Figure out the positioning/layout in a single pass instead of
13390         multiple recursive invocations.  Speeds up the initial display of
13391         the data grid.  Also, make many things private that were
13392         originally public but unused outside this class.
13394 2006-05-11  Jackson Harper  <jackson@ximian.com>
13396         * MdiClient.cs: Improved layout code.
13398 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
13400         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
13401           not SelectedObject.
13403 2006-05-11  Chris Toshok  <toshok@ximian.com>
13405         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
13406         union of that will always be {0,0,width,height}.
13408 2006-05-11  Jackson Harper  <jackson@ximian.com>
13410         * Form.cs: Match MS's DefaultSize for forms (they must have
13411         changed the size in sp2).
13413 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
13415         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
13417 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
13419         * TextControl.cs : Fixed bug #78109. This incorrect position
13420           comparison caused crash on automatic line split.
13421         * TextBoxBase.cs : reduce duplicate code.
13423 2006-05-10  Jackson Harper  <jackson@ximian.com>
13425         * MdiClient.cs: Active form is only sent to the back when using
13426         the Next form functionality, when a form is clicked the current
13427         active shouldn't be sent to the back.
13428         - Layout the mdi windows when the container is first made visible.
13429         * Form.cs: Give the MdiClient a ref to the containing form when we
13430         create it.
13431         
13432 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
13434         * LinkLabel.cs : link_font could be uninitialized, so populate one
13435           before actual use. Fixed bug #78340.
13437 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
13439         * XplatUIX11.cs : clipboard format native value is IntPtr.
13440           Fixed bug #78283.
13442 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
13444         * Control.cs: 
13445           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
13446             which is passed up the parent chain by DefWndProc
13447           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
13448             to DefWndProc (#77956)
13449         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
13451 2006-05-10  Jackson Harper  <jackson@ximian.com>
13453         * MdiClient.cs: We need to remove the controls from the mdi
13454         collection, when we close the window.
13455         * MdiWindowManager.cs: Special handling of closing mdi windows.
13456         * InternalWindowManager.cs: Make the close method virtual so the
13457         mdi window manager can handle it specially.
13459 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
13461         * DataGrid.cs:
13462           - Recalculate grid when the data source has changed
13463           - Matches styles provided by user from all data sources types
13464         * DataGridTableStyle.cs: For columns that provided by the user set the
13465         with the preferred value is there was unassigned.
13466         * CurrencyManager.cs: throw OnItemChanged event
13468 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
13470         * PictureBox.cs: Don't animate until handle is created. Start animation
13471           when handle is created.
13473 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
13475         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
13476           current codebase.
13477         * XEventQueue.cs: We don't need to provide the extra info
13479 2006-05-10  Jackson Harper  <jackson@ximian.com>
13481         * MdiClient.cs: If the mdi clients parent form has a background
13482         image set, we draw that background image for the mdi area's
13483         background.
13485 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
13487         * TextBoxBase.cs: Set IBeam cursor (#78347)
13489 2006-05-10  Mike Kestner  <mkestner@novell.com>
13491         * ToolBar.cs: fix some text padding issues with ButtonSize
13492         calculation. Update the default size to match MS documentation.
13493         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
13494         button size. Fixes #78296.
13496 2006-05-10  Mike Kestner  <mkestner@novell.com>
13498         * ListBox.cs: use is_visible for scrollbar positioning in case the
13499         control isn't on screen yet.  Fix off by one with Right vs Width
13500         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
13501         
13502 2006-05-10  Jackson Harper  <jackson@ximian.com>
13504         * X11Dnd.cs: Drop to a control with another control on top of it.
13505         * ToolBar.cs: Work on a copy of the buttons list, so that it can
13506         be modified in click handlers. TODO: Look for similar problems in
13507         other controls.
13509 2006-05-09  Jackson Harper  <jackson@ximian.com>
13511         * Form.cs: Window managers need the old window state when setting
13512         window state now.
13513         * InternalWindowManager.cs: Allow the base mdi window manager to
13514         handle more of the MDI only stuff (like maximize buttons).
13515         * MdiWindowManager.cs: Fix some snafus in changing the window
13516         state.  Add all the menu functionality, for both popup and
13517         maximized menus.
13518         * MdiClient.cs: When a new form is selected the currently
13519         activated form is sent to the back, this matches MS.
13520         - Implement a new method to activate the next mdi child window.
13522 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
13524         * Control.cs: 
13525           - Added new InternalCapture method to allow controls to prevent
13526             the capture behaviour on the click handlers
13527           - Switched to use InternalCapture
13528         * ComboBox.cs:
13529           - Using InternalCapture to prevent mouse captures from being released
13530             on mouse button release (Fixes #78100)
13531         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
13532           returns Form borders if a caption is present. (Fixes #78310)
13534 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
13536         * TreeNode.cs: Changed serialization .ctor to not require every field
13537           to be present. (#78265)
13538         * OwnerDrawPropertyBag.cs: Added serialization .ctor
13540 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
13542         * MimeIcon.cs: for is faster than foreach for strings.
13544 2006-05-05  Mike Kestner  <mkestner@novell.com>
13546         * CheckedListBox.cs: update check handling code to not use selected.
13547         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
13548         behavior for visual feedback, motion response, shift/ctrl handling,
13549         and properly deal with all 4 selection modes. Updates to bounds
13550         handling logic.  Add scroll wheel support. [Fixes #77842]
13552 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
13554         * ListView.cs:
13555           - Moved adding of Implicit controls into .ctor. That way, subsequent
13556             creation of the controls will not cause them to think they are 
13557             toplevel windows (fixes #78200 header problem)
13558           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
13559           - Switched visibility setting of header control to use internal field
13560             to avoid triggering handle creation
13561           - Now checking if handle is created before causing a refresh when items
13562             are added (This makes us now match handle creation time with MS)
13563         * Splitter.cs: Removed loading of private splitter cursor, switched to
13564           Cursors version now that that is loading the right ones
13565         * Cursors.cs: Load proper splitter cursors from resources
13566         * Cursor.cs: Added second method of loading resource cursors for the 
13567           VS.Net users amongst us
13569 2006-05-05  Mike Kestner  <mkestner@novell.com>
13571         * ListView.cs: give header_control a minimum size based on the
13572         ListView size.
13574 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
13576         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
13577           window seems to do that with metacity, so set that type. (#78120)
13579 2006-05-05  Mike Kestner  <mkestner@novell.com>
13581         * ListViewItem.cs: fix Details mode checkbox layout bug.
13582         * ThemeWin32Classic.cs: draw a ListView column header for unused space
13583         at the end of the header, if it exists. [Fixes for #78200]
13585 2006-05-04  Jackson Harper  <jackson@ximian.com>
13587         * MdiClient.cs: Add a helper property to get the container form.
13588         * MdiWindowManager.cs: We have to make sure to use the menu origin
13589         when drawing the icons and buttons, this fixes maximized window
13590         icons/buttons on win32.
13591         * InternalWindowManager.cs: Reset the restore captions when a
13592         window goes from Maximized to Minimized and vice versa. Move the
13593         DrawMaximizedButtons into the MdiWindowManager source, tool
13594         windows can't be maximized. NOTE: This could use a little
13595         refactoring if time ever permits.
13596         
13597 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
13599         * TextBox.cs: Add MWFCategoryAttributes
13600         * TextBoxBase.cs: Add MWFCategoryAttributes
13601         * Form.cs: Add MWFCategoryAttributes
13603 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
13605         * Control.cs: Add MWFCategoryAttributes
13606         * ScrollableControl.cs: Add MWFCategoryAttributes
13608 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
13610         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
13611           Divider is true. Fix a little glitch in PropertyToolBar
13612           drawing code
13614 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
13616         * Control.cs:
13617           - Dispose: Call base.Dispose, this causes the disposed event
13618             to be fired (and probably other, more important stuff)
13619           - SetVisibleCore: Set is_visible to true after creating the
13620             window so that the window still gets created invisible (if
13621             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
13622             to generate a WM_ACTIVE message
13623         * Form.cs: Call Dispose when we want to destroy the window, instead of
13624           just destroying the handle (Dispose will do that for us)
13625         * XplatUIX11.cs:
13626           - RootWindow also needs a queue, so we can properly process the
13627             property change events from RootWindow (like Activate)
13628           - Generatic synthetic WM_ACTIVE message when the active window is
13629             being destroyed
13631 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
13633         * LinkLabel.cs: Trigger a recalc of our label dimensions when
13634           bounds are changed
13636 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
13638         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
13639           for determining width and height (image might not be assigned if
13640           we're drawing an imagelist)
13642 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
13644         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
13645         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
13646           height from system
13647         * Theme.cs: No longer returns hardcoded menu height, instead calls
13648           new driver method
13649         * Form.cs (OnLoad): Scaling happens before triggering Load events 
13650           on MS (# 78257)
13652 2006-05-01  Mike Kestner  <mkestner@novell.com>
13654         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
13656 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
13658         * TextBoxBase.cs: Removed Fixme
13659         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
13661 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
13663         * XplatUIX11.cs:
13664           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
13665             the rectangle relative to the parent, considering borders. We
13666             don't really want that.
13667           - ScrollWindow: Fixed warning to be more understandable
13668         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
13669           scrollbars and scroll only the visible area
13670         * RichTextBox.cs: Removed debug output
13672 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
13674         * NumericUpDown.cs (Text): Just use base
13675         * UpDownBase.cs: Ensure txtView is created before using it
13677 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
13679         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
13680           casting to IntPtr to avoid 64bit overflow errors
13682 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
13684         * Control.cs:
13685           - AllowDrop: Don't force handle creation.
13686           - CreateHandle: Added call to tell driver if we're allowed to drop
13688 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
13690         * FileDialog.cs: Remember the last directory not only for the
13691           current instance but also for new FileDialog instances.
13693 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
13694         
13695         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
13696           broke sending async messages
13698 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
13700         * XplatUIX11.cs:
13701           - ScrollWindow: Fixed method. We finally generate expose events again
13702             for scrolled areas. This was causing 'garbage' when scrolling
13703             textbox and other controls that used ScrollWindow
13704           - Switched from using the regular queue for paint events to the MS 
13705             model of 'generating' paint events when the queue is empty.
13706             We use the new XQueueEvent.Paint subclass to store which windows
13707             need painting.
13708           - AddExpose now takes the x/y/width/height of the exposed area
13709             and inserts the window into the paint queue if not already there
13710           - InvalidateWholeWindow: Switched to use new AddExpose method
13711           - UpdateMessageQueue: Added which queue to monitor for paint events
13712           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
13713             the unlikely case nothing above handles it. We reset the expose
13714             pending states to get them off the queue.
13715           - GetMessage: Now pulls a paint event if no other events are in the
13716             queue
13717           - Invalidate: Switched to new AddExpose method
13718           - PeekMessage: Updated to understand pending paint events
13719           - UpdateWindow: Fixed logic bug. We were only updating if the window
13720             didn't need updating. Also switched to sending WM_PAINT directly,
13721             like MS does.
13722         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
13723           and random access Remove(). The random access is needed to handle
13724           UpdateWindow() where a WM_PAINT is sent directly without accessing
13725           the queue.
13726         * ScrollBar.cs: Added Update() calls to cause immediate updates to
13727           allow for better feedback when scrolling. Scrollbars are small and
13728           the immediate update should make it 'feel' more responsive without
13729           slowing things down. ScrollBar still needs it's invaliate logic
13730           updated to not always invalidate the whole bar on certain changes.
13732 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13734         * Control.cs:
13735         (BackColor): if the control does not support a transparent background,
13736         return the default backcolor when the parent backcolor is transparent.
13738 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
13740         * Application.cs: Updated to new StartLoop/GetMessage API
13741         * RichTextBox.cs: Provide some output on RTF parsing errors
13742         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
13743           new queue_id argument to GetMessage and PeekMessage to allow faster
13744           handling of per-thread queues in drivers.
13745         * Hwnd.cs: Added Queue tracking and property
13746         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
13747         * XEventQueue.cs: Added thread trackingA
13748         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
13749         * XplatUIX11.cs:
13750           - Implemented new per-thread queue
13751           - GetMessage: Fixed return/break behaviour on several cases. We were
13752             returning stale messages in some cases, instead of just processing
13753             the next message
13755 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
13757         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
13759 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
13761         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
13762           fixed off-by-one comparisons between Width/Height and Right/Bottom.
13764 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
13766         * PropertyGridView.cs: Fix drop down width.
13768 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
13770         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
13771           a mess in DrawToolBar, so I removed one of them.
13773 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
13775         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
13776           needed (clip). Otherwise we get artifacts.
13778 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
13780         * FixedSizeTextBox.cs: Added constructor to allow specifying which
13781           dimension is fixed
13782         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
13783           and switched FixedSizeTextBox to only be fixed vertical (#78116)
13784         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
13785           if it matches the scale base font (avoids unneeded scaling)
13787 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
13789         * X11DesktopColors.cs: One gtk_init_check should be enough
13791 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
13793         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
13794           match MS behaviour
13796 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
13798         * TextBoxBase.cs: 
13799           - Generate OnTextChanged for Backspace even if we're only deleting
13800             the current selection
13801           - When setting the Text property, only select all text if the
13802             control does not have focus when it is being set. Otherwise
13803             just place the cursor at the beginning of the control
13805 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
13807         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
13808           Added a little helper to draw PropertyGrid ToolBar with a different
13809           border and a different BackColor.
13810         * PropertyGrid.cs: Some background parts didn't get painted with the
13811           correct background color. Added a class that helps us to draw the
13812           correct border for PropertyGridView and a class that helps us to
13813           draw ToolBars with a different backcolor
13814         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
13816 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
13818         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
13819         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
13821 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
13823         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
13824           into the palette entries. Also, since we're working on a copy
13825           we needed to copy the palette back onto the bitmap.
13826         * Cursor.cs: Same fix as XplatUIWin32.cs.
13828 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
13830         * ImageListStreamer.cs: Need to read the var (or we're off)
13832 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
13834         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
13835           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
13836           TextBoxBase.cs: Unused var fixes
13837         * AxHost.cs: Small 2.0 fix
13838         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
13839           as it seems that is what at least Metacity expects. This will make
13840           icons show up on 64bit platforms. We still have some 64bit size
13841           issues, though, since the startup app window size still won't match.
13843 2006-04-25  Mike Kestner  <mkestner@novell.com>
13845         * *.cs: cleanup newly reported exception var unused warnings.
13847 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
13849         * ThemeWin32Classic.cs: Button image alignment now matches exactly
13850           ms
13852 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
13854         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
13855           image. The image position is always the same, no matter if the
13856           button is pressed or not.
13858 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
13860         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
13861           selection and set the correct filename for SaveFileDialog.
13862           Patch by Emery Conrad.
13864 2006-04-24  Mike Kestner  <mkestner@novell.com>
13866         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
13867         check for item.X outside the ClientRect instead of item.Y. Fixes
13868         #78151.
13870 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13872         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
13873         trust that value blindly and do some sanity check. Fixes bug #77814.
13875 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13877         * ImageListStreamer.cs: save the mask as a 1bpp image.
13879 2006-04-21  Mike Kestner  <mkestner@novell.com>
13881         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
13882         pass Checked and Indeterminate to the Theme Engine. Improve
13883         encapsulation with ListBox.
13884         * ListBox.cs: Keep a StringFormat instead of calculating it every item
13885         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
13886         nested types.  Move all CheckState functionality to CheckedListBox.
13887         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
13888         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
13889         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
13890         single base list. Fix scrollbar sizing and placement to mirror MS.
13891         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
13892         used.
13893         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
13894         for CheckedListBox by using new DrawItemState info.  Center the
13895         checkboxes on the items. Use new StringFormat property.
13897 2006-04-18  Jackson Harper  <jackson@ximian.com>
13899         * Form.cs: MdiChildren don't do default locations the same way as
13900         regular forms.  This prevents a crash when trying to position the
13901         mdi windows.
13903 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
13905         * PropertyGridTextBox.cs: Formatting, copyright
13906         * PropertiesTab.cs: Formatting
13907         * PropertyGrid.cs: Formatting
13908         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
13909           click toggling of values
13910           
13911 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
13913         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
13914         * Control.cs (.ctor): verify_thread_handle is static, don't reset
13915           every time a control is created
13916         * Application.cs: Removed obsolete EnableRTLMirroring method
13918 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
13920         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
13921         SelectedIndex to -1. Fixes bug #78121.
13923 2006-04-17  Jackson Harper  <jackson@ximian.com>
13925         * Binding.cs: Handle null values for Current and BindingContext.
13926         This occurs when binding is a little delayed.
13927         * CurrencyManager.cs: return null for Current when there are no
13928         items in the list.
13929         - Hookup to the listchanged event on the DataView and update
13930         bindings when the list is changed.  This fixes late binding of
13931         controls.
13933 2006-04-17  Jackson Harper  <jackson@ximian.com>
13935         * X11Dnd.cs:
13936         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
13937         Ringenbach.
13939 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
13941         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
13942           place
13943         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
13944           with the correct ButtonState
13946 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
13948         * XplatUIX11.cs: Improved distinguishing between window types to
13949           tell the WM a type closer to what the app wants (Fixes #78107)
13951 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
13953         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
13954           GrabHandle
13956 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
13958         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
13959           drawing code to reflect the size grip changes
13961 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13963         * ImageListStreamer.cs: fix handling of the mask that follows the main
13964         bitmap when deserializing and serialize it properly. The generated mask
13965         should better be a 1bpp image, but I'll do that later.
13967 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
13969         * FileDialog.cs: Show something in the DirComboBox on *nix if the
13970           path doesn't fit into some of our Current.Places
13972 2006-04-13  Jackson Harper  <jackson@ximian.com>
13974         * ComboBox.cs: Use borders instead of drawing our own decorations,
13975         try to obey correct rules for heights.
13976         * Theme.cs:
13977         * ThemeNice.cs:
13978         * ThemeClearLooks.cs:
13979         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
13980         this is now handled by borders.
13981         - Remove unused DrawListBoxDecorationSize method.
13982         
13983 2006-04-13  Mike Kestner  <mkestner@novell.com>
13985         * MenuAPI.cs: null guarding for the disbled click check fixes crash
13986         reported by Alex.
13988 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
13990         * ThemeWin32Classic.cs: 
13991           - Fixed CPDrawStringDisabled
13992           - Corrected drawing of disabled menu items
13993           - Fixed drawing of disabled radio buttons (bug #78095)
13994           - Draw check in a disabled CheckBox with color ControlDark 
13996 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
13998         * Form.cs: Use the provided width when calculating the menu size;
13999           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
14000           and ClientSize.Width won't be updated yet
14001         * Application.cs: Use Visible instead of Show() to make form visible,
14002           this way we create the handle later and menusize is considered
14004 2006-04-12  Mike Kestner  <mkestner@novell.com>
14006         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
14007         reporting.
14009 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
14011         * TextBox.cs: Implemented context menu
14013 2006-04-12  Mike Kestner  <mkestner@novell.com>
14015         * ListView.cs: implement box selection. fixes #77838.
14016         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
14018 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
14020         * XplatUIX11.cs: Added setting of window type when transient window
14021           is created (metacity would move it otherwise)
14022         * X11Structs.cs: Added WINDOW_TYPE atoms
14023         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
14024           background (the control is Opaque but still wants transparent
14025           backgrounds)
14027 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
14029         * Control.cs: Added OnPaintBackgroundInternal to allow controls
14030           that set Opaque but don't mean it (like all ButtonBase-derived
14031           controls) to still draw their background
14032         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
14033           the background
14035 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
14037         * Control.cs (PaintControlBackground): Set the graphics object
14038           on our PaintEvent to null to prevent it from being disposed
14039           when the PaintEvent gets disposed
14041 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
14043         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
14044         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
14046 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
14048         * Control.cs: 
14049           - Added transparency check to BackColor property. Transparent
14050             backgrounds are only allowed if the control styles permit it
14051           - Added recursive painting of parent control background and
14052             foreground if a control with a transparent backcolor is drawn
14053             (Thanks to Tim Ringenback for providing his 'hack' as a base
14054              for this patch) Fixes #77985 and #78026.
14055           - Added Opaque style check before calling OnPaintBackground, no
14056             need to draw the background if the control is opaque
14057           - Removed ControlAccessibleObject owner variable (inherited from
14058             base, no need to define again)
14059           - Added some documentation links explaining the drawing events
14060             and styles
14062 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
14064         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
14065           that the affected control is the located at the left border of our
14066           parent (Fixes #77936)
14068 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
14070         * TextBoxBase.cs: When rendering disabled or readonly controls,
14071           draw the background with 'Control' instead of 'Window' color as
14072           long as the user hasn't specifically set a color
14074 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
14076         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
14077           since that won't be updated if the user types text (only if it's
14078           programatically set)
14080 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
14082         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
14083           layout changes do to app-triggered resizes will have the proper
14084           display rectangle for layout
14086 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
14088         * ThemeWin32Classic.cs:
14089           - Make use of the SystemBrushes and SystemPens wherever possible
14090           - Corrected some highlight colors
14091           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
14092             drawing
14093         * Theme.cs: Added Empty field to CPColor struct
14095 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
14097         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
14098           is displayed when calculating the display rectangle. Thanks to Mike
14099           for teaching me the err of my ways.
14101 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
14103         * ScrollableControl.cs:
14104           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
14105             (instead of 0,0) and we now return the real width/height instead of
14106             just the clientrectangle, adjusted for padding. The rectangle is
14107             now cached and created by the new CalculateDisplayRectangle method.
14108           - Created new CalculateDisplayRectange method, which basically does
14109             what get_DisplayRectangle() did originally, but now using the 
14110             right edge instead of DisplayRectangle to determine the size of
14111             our scrollbars
14112           - get_Canvas(): Fixed it to properly calculate canvas for 
14113             right/bottom controls which seem to be placed to the right/bottom
14114             of any controls that have a fixed location
14115           - Removed TODO that's taken care of
14116           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
14117             and SetDisplayRectLocation according to new MSDN2 docs
14118           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
14119             event when that is called, this is added for compatibility
14120           - ScrollControlIntoView(): Implemented.
14121           - Switched scrollbars to be implicit, they shouldn't be selectable
14122         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
14123           call it when the active control is set/changed
14124         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
14125         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
14126           implicit_control variable (used for native Win32 message generation)
14127         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
14128           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
14129         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
14130         * XplatUIStructs.cs: Added ScrollBarCommands enum
14132 2006-04-10  Jackson Harper  <jackson@ximian.com>
14134         * ButtonBase.cs:
14135         * CheckedListBox.cs:
14136         * ComboBox.cs:
14137         * DataGrid.cs:
14138         * DataGridView.cs:
14139         * Form.cs:
14140         * GroupBox.cs:
14141         * ListBox.cs:
14142         * PrintPreviewControl.cs:
14143         * ProgressBar.cs:
14144         * PropertyGrid.cs:
14145         * Splitter.cs:
14146         * StatusBar.cs:
14147         * TrackBar.cs:
14148         * UpDownBase.cs: Fixup base event overrides.
14149         
14150 2006-04-06  Mike Kestner  <mkestner@novell.com>
14152         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
14153         all user-initiated value changes to min <= value <= max-thumbsz+1.
14154         (set_Value): check for vert/horiz when calculating new thumb position.
14155         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
14156         like MS does.
14157         (OnMouseMoveSB): refactor the thumb dragging code and refine
14158         invalidation logic to reduce flicker.
14159         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
14160         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
14161         (UpdateThumbPosition): small code readability cleanup
14163 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
14165         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
14166           different
14168 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
14170         * ThemeNice.cs: Use a better graphics effect when a button is pressed
14172 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
14174         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
14175         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
14176           This dramatically reduces the number of Pen.Dispose calls. 
14177           Where possible call ResPool methods only once instead of calling it
14178           over and over again (for example for the same color).
14180 2006-04-06  Mike Kestner  <mkestner@novell.com>
14182         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
14183         Also remove an unused private field on the collection. Fixes #77972.
14185 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
14187         * ThemeNice.cs: Added ToolBar drawing code
14189 2006-04-06  Mike Kestner  <mkestner@novell.com>
14191         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
14192         I'm assuming that means we need to look up the toplevel for the
14193         provided control. Fixes the crash trace in #77911 but exposes another
14194         crash in some strange reflection usage in NDocGui.
14196 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
14198         * ThemeNice.cs: Gave it a little silver touch and added Images
14199           method
14200         * FontDialog.cs: FontDialog is not resizable
14201         * FileDialg.cs: Added SizeGripStyle.Show
14203 2006-04-05  Jackson Harper  <jackson@ximian.com>
14205         * KeyboardLayouts.cs: Remove warning.
14207 2006-04-05  Jackson Harper  <jackson@ximian.com>
14209         * Control.cs: Enable OnPaintInternal so we can use it for drawing
14210         all of our controls instead of Paint +=.
14211         * ListBox.cs:
14212         * ListView.cs:
14213         * MenuAPI.cs:
14214         * MessageBox.cs:
14215         * NotifyIcon.cs:
14216         * ProgressBar.cs:
14217         * ScrollBar.cs:
14218         * Splitter.cs:
14219         * StatusBar.cs:
14220         * TabControl.cs:
14221         * TextBoxBase.cs:
14222         * ToolBar.cs:
14223         * TrackBar.cs:
14224         * UpDownBase.cs:
14225         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
14226         use OnPaintInternal. Remove Width/Height and Visible checks in
14227         paint handler, this is done at a higher level now.
14228         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
14229         * PaintEventArgs.cs: Add a handled flag so controls that don't
14230         want anymore painting after OnPaintInternal can make sure OnPaint
14231         isn't called.
14233 2006-04-05  Mike Kestner  <mkestner@novell.com>
14235         * Form.cs: fix the menu WndProc hacks to respect the native enabled
14236         state of the form, so that we don't process events when Modal dialogs
14237         are up. Fixes #77922.
14239 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
14241         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
14242           checking is done.
14244 2006-04-05  Mike Kestner  <mkestner@novell.com>
14246         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
14248 2006-04-05  Mike Kestner  <mkestner@novell.com>
14250         * ListView.cs (HeaderMouseMove): null guarding for the over column
14251         when setting up the drag_to_index.  Fixes #78015.
14253 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
14255         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
14256           in the taskbar. Transient windows seem to accomplish that.
14258 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
14260         * Form.cs:
14261           - Re-enabled CreateParams.X/Y code for FormStartPosition
14262           - Added code for manual placement when creating the Control
14263           - Incomplete patch to treat MDI forms differently when
14264             setting the ClientSizeCore. (Still need to figure out handling
14265             x/y coords there)
14266         * XplatUIX11.cs:
14267           - When we're explicitly setting the X/Y position of a non-Child
14268             window, let the WM know. Metacity really wants this.
14270 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
14272         * ThemeNice.cs: Added CPDrawButton
14274 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
14276         * ThemeNice.cs: Changed the color for focused buttons and activated
14277           the arrows for small scroll buttons.
14279 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
14281         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
14282           anymore. Changed some method modifiers to protected (virtual)
14283         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
14284           changes
14285         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
14286           Updated drawing of menus, buttons and progressbars; added
14287           CPDrawBorder3D 
14289 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14291         * ImageListStreamer.cs: implemented serialization/deserialization
14292         of the images.
14294 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
14296         * ThemeWin32Classic.cs:
14297           - Removed all the DrawFrameControl stuff; CPDrawButton,
14298             CPDrawCheckBox and CPDrawRadioButton are now handled directly
14299             inside the methods
14300           - Updated and corrected the drawing code of CPDrawButton,
14301             CPDrawCheckBox and CPDrawRadioButton to better match ms
14302           - Updated theme checkbox and radiobutton code to use the CP*
14303             methods
14305 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
14307         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
14308           bug is fixed
14310 2006-03-31  Jackson Harper  <jackson@ximian.com>
14312         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
14313         sometimes.
14314         * UpDownBase.cs: Don't CreateGraphics manually, use a
14315         Refresh. Ideally we would invalidate the correct areas here.
14317 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
14319         * XplatUIX11.cs: 
14320           - We now track the mapping state of windows. If a window (or 
14321             one of it's parents) is not mapped we no longer permit
14322             WM_PAINT messages to be generated since we'd otherwise get 
14323             lots of BadMatch X errors. Jackson did all the work figuring
14324             out the problem.
14325           - Destroying the caret if the window it's contained in is 
14326             destroyed. Can't use regular DestroyCaret method since it
14327             might fall into a drawing function (trying to remove the
14328             caret) and with that generate new BadMatch errors. Again,
14329             Jackson tracked this down.
14330           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
14331             make sure we send the messages to all windows. (The old code
14332             would send the WM_DESTROY to the window, and then all child
14333             windows would be 'gone' because the WM_DESTROY handle lookup
14334             would no longer find the destroyed window)
14335         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
14336         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
14338 2006-03-31  Jackson Harper  <jackson@ximian.com>
14340         * ScrollableControl.cs: Dont recalc if we are not visible.
14342 2006-03-31  Mike Kestner  <mkestner@novell.com>
14344         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
14345         the visibility branch.
14347 2006-03-31  Jackson Harper  <jackson@ximian.com>
14349         * ScrollBar.cs: Cap values when incrementing/decrementing.
14351 2006-03-31  Mike Kestner  <mkestner@novell.com>
14353         * MenuAPI.cs: setup menu.tracker for popup/context menus.
14354         * ToolTip.cs: guard against timer expirations with no active control.
14355         Not sure why it happened.
14357 2006-03-31  Mike Kestner  <mkestner@novell.com>
14359         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
14360         text.
14361         * ToolTip.cs: Position the tooltip based on where the cursor is at
14362         popup time, not at MouseEnter time.  Add a Down state so that we don't
14363         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
14364         positioning offset. Lookup DisplaySize at positioning time, since it
14365         can theoretically change during invocation.
14366         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
14367         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
14369 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
14371         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
14372           Fixes behaviour when the Text property of the box is String.Empty
14374 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
14376         * XplatUIX11.cs: Only send mouseleave for our client windows, not
14377           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
14378           a window)
14380 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
14382         * FileDialog.cs: Visual enhancement for the popup buttons in 
14383           PopupButtonPanel
14385 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
14387         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
14388           code
14390 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
14392         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
14393           highlighted menu items to match ms
14395 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
14397         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
14399 2006-03-30  Mike Kestner  <mkestner@novell.com>
14401         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
14402         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
14403         go active to account for HotLight to Selected transition.
14404         * MenuItem.cs: add internal Selected prop. Fill out the Status
14405         property by calculating it from item info. Add HotLight,
14406         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
14408 2006-03-30  Mike Kestner  <mkestner@novell.com>
14410         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
14412 2006-03-29  Jackson Harper  <jackson@ximian.com>
14414         * Form.cs: Implement TODO.
14416 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
14418         * PrintPreviewDialog.cs: Implemented missing methods and events; still
14419           missing proper dialog setup in the constructor
14421 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
14423         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
14424         * Control.cs:
14425           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
14426           - Fixed ResetBindings and removed TODO
14427           - Added check for cross-thread calls to get_Handle()
14428           - Added Marshaller attribute for set_Font to satisfy class status
14429         * FontDialog.cs: Removed TODOs that seemed implemented
14430         * UpDownBase.cs: Removed unneeded TODO and Fixme
14431         * MessageBox.cs: Implemented support for Default button and removed TODO
14432         * FileDialog.cs: Removed obsolete TODO
14433         * DomainUpDown.cs: Removed obsolete TODO
14434         * ButtonBase.cs: Removed obsolete TODO
14435         * XplatUIWin32.cs: Removed obsolete TODO
14436         * Form.cs:
14437           - Removed obsolete TODO
14438           - Calling CheckAcceptButton when the acceptbutton is changed to allow
14439             internal status updates
14440           - Making sure the active control is selected when the control is created
14441         * CurrencyManager.cs: Removed obsolete TODO
14443 2006-03-29  Mike Kestner  <mkestner@novell.com>
14445         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
14446         of PrintPreviewDialog and RichTextBox.
14448 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
14450         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
14451           DarkDark, Light and LightLight colors for a specific color
14452         * ThemeWin32Classic.cs:
14453           - Use Button drawing code to draw RadioButtons and CheckBoxes with
14454             Appearance = Button 
14455           - Make use of the new ResPool helper CPColor
14456           - Draw ProgressBar and StatusBar with correct 3D borders
14458 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
14460         * ColorDialog.cs: Return selected color. Fixes bug #77940.
14462 2006-03-28  Mike Kestner  <mkestner@novell.com>
14464         * ListView.cs: fix Icon layout to plan for scrollbar widths when
14465         calculating col/row counts.
14467 2006-03-28  Mike Kestner  <mkestner@novell.com>
14469         * ColumnHeader.cs:
14470         * ListView.cs:
14471         * ListViewItem.cs:
14472         * Menu.cs: 
14473         switch to explicit interface method implementation for some methods
14474         corcompare identifies as inconsistent with MS.
14476 2006-03-28  Mike Kestner  <mkestner@novell.com>
14478         * MainMenu.cs: 
14479         * Menu.cs:
14480         add a few missing methods from the class status output.
14482 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
14484         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
14485           correct.
14487 2006-03-28  Mike Kestner  <mkestner@novell.com>
14489         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
14491 2006-03-27  Mike Kestner  <mkestner@novell.com>
14493         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
14494         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
14496 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
14498         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
14500 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
14502         * ThemeWin32Classic.cs:
14503           - GroupBox: Inserted a little gap between the text and the lines
14504             on the right side
14505           - Made the code in CPDrawBorder3D more readable
14506           - Corrected the drawing location of the up and down arrows in 
14507             CPDrawScrollButton
14509 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
14511         * ControlPaint.cs: Corrected line widths in DrawBorder for
14512           ButtonBorderStyle Inset and Outset
14514 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
14516         * ThemeWin32Classic.cs:
14517           - Rewrote the totally broken CPDrawBorder3D method. That was
14518             one of the main problems for the terrific ThemeWin32Classic
14519             look
14520           - Updated and corrected Button drawing
14521           - Correct the dimensions of the SizeGrip to match ms ones
14522           - Removed a small drawing glitch in DrawComboBoxEditDecorations
14523         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
14524           Border3DStyle.Sunken to match ms.
14526 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
14528         * ThemeWin32Classic.cs: First small part of the "de-uglify
14529           ThemeWin32Classic" effort, SizeGrip
14531 2006-03-24  Jackson Harper  <jackson@ximian.com>
14533         * XplatUIX11.cs: Give a max idle time of one second, this matches
14534         MS and forces an Idle event every second when there are no other
14535         events in the queue.
14537 2006-03-24  Mike Kestner  <mkestner@novell.com>
14539         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
14540         * ListView.Item.cs: fix layout issues with null image lists and images
14541         smaller than checkbox size.
14542         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
14543         mode like MS does.  It's weird, but consistent.  ;-)
14544         Fixes #77890.
14546 2006-03-24  Mike Kestner  <mkestner@novell.com>
14548         * ListView.cs: Scroll wheel support for the item control.  Fixes
14549         #77839.
14551 2006-03-23  Jackson Harper  <jackson@ximian.com>
14553         * ScrollableControl.cs: Special case negative sized areas, not
14554         zero.
14555         * MonthCalendar.cs: Save the rect of the clicked date so we can
14556         use it for invalidation.
14557         - Try to cut down on the number of invalidates
14558         - Invalidate the rect the mouse is over and was over when moving
14559         the mouse, so we get the focus box following the cursor.
14561 2006-03-23  Mike Kestner  <mkestner@novell.com>
14563         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
14564         focus rectangle drawing. Fixes #77835.
14566 2006-03-23  Mike Kestner  <mkestner@novell.com>
14568         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
14569         the if and else if and reverting back to the original == check on the
14570         None conditional.
14572 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
14574         * FontDialog.cs: Update the example panel if the selected index of
14575           the fontListBox changes.
14577 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
14579         * FileDialog.cs: Make FileDialog remember which directory it was in
14580           last in the same execution.
14582 2006-03-22  Mike Kestner  <mkestner@novell.com>
14584         * FileDialog.cs: make the DropDownMenu on the toolbar display
14585         RadioChecks since they are mutually exclusive and that's what MS does.
14587 2006-03-22  Mike Kestner  <mkestner@novell.com>
14589         * Theme.cs: add Color param to CPDrawMenuGlyph.
14590         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
14591         checks and radio marks and arrows are visible on highlighted items.
14592         * ControlPaint.cs: update to use new Theme signature.
14594 2006-03-22  Mike Kestner  <mkestner@novell.com>
14596         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
14597         is active. Fixes #77870.
14599 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
14601         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
14602           to be focused/selected after startup
14604 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
14606         * ColorDialog.cs: 
14607           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
14608             CustomColors and ShowHelp properties
14609           - Some internal rewrites to get better results when using the
14610             ColorMatrix
14612 2006-03-22  Mike Kestner  <mkestner@novell.com>
14614         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
14615         HoverSelection.  Fixes #77836.
14617 2006-03-22  Mike Kestner  <mkestner@novell.com>
14619         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
14620         ToggleButtons.  (De)Sensitize the Back button around a stack count of
14621         1, not 0.  Update ButtonSize based on a pixel count of the win32
14622         control.  Adjust the toolbar size/location for new button size.
14624 2006-03-22  Jackson Harper  <jackson@ximian.com>
14626         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
14627         true.
14628         * ScrollBar.cs: When doing increments and decrements we need to
14629         set the Value property so that ValueChanged gets raised. A
14630         possible optimization here would be to make an internal SetValue
14631         that doesn't invalidate immediately.
14632         * ToolTip.cs: Tooltips get added to their container (when
14633         supplied) so they get disposed when the container is disposed.
14634         - Don't create tooltips for String.Empty. This prevents all these
14635         little 2-3 pixel windows from showing up when running nunit-gui
14636         and driving me mad.
14637         * Form.cs: Don't set topmost when setting the owner if the handles
14638         haven't been created yet.  The topmost set will happen when the
14639         handles are created.
14641 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
14643         * XplatUIX11.cs:
14644           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
14645           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
14646             visible (to allow them to recalculate their sizes)
14648 2006-03-21  Mike Kestner  <mkestner@novell.com>
14650         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
14651         methods. Removed a ton of redundant code.  Still not really happy with
14652         the border rendering, but I think that's mainly because of the
14653         ControlDarkDark being black instead of a dark grey. Depending on how 
14654         close we want to be, we might want to revisit those color choices.
14655         Among the new features added during the refactor were DropDownArrow
14656         pressed rendering, Disabled image rendering.  Proper flat appearance
14657         boundary rendering.  Removed the Divider and Wrapping dividers since I
14658         can't figure out any combination of themes and conditions to make the
14659         MS control draw a horizontal line on a toolbar despite what the
14660         Divider property docs indicate.
14661         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
14662         conditions and incorrect layout.  Updated to coding standard.
14663         * ToolBarButton.cs: refactored layout and positioning code from
14664         ToolBar to here.  Invalidate wherever possible instead of forcing
14665         redraws of the whole toolbar. 
14666         (Known remaining issues: explicit ButtonSize smaller than provided
14667         images.)
14669 2006-03-21  Mike Kestner  <mkestner@novell.com>
14671         * ContextMenu.cs (Show): use the position parameter instead of just
14672         showing at the MousePosition.
14674 2006-03-21  Jackson Harper  <jackson@ximian.com>
14676         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
14677         control handle this.
14678         * TreeNodeCollection.cs: If we are clearing the root node we need
14679         to reset top_node so calcs can still happen.
14680         * ThemeWin32Classic.cs: This is a Flags so we need to check
14681         properly.
14682         
14683 2006-03-21  Jackson Harper  <jackson@ximian.com>
14685         * DataGrid.cs: Create columns when the binding context has been
14686         changed.
14687         * X11Structs.cs: Keysyms are uints.
14688         - Add size to fix build.
14690 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
14692         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
14693           XplatUIOSX.cs: 
14694           - Added ResetMouseHover method to allow controls to retrigger
14695             hovering if they need it more than once
14696           - Implemented MouseHoverTime and MouseHoverSize properties
14697         * Timer.cs: Start() must reset the interval
14698         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
14699           properties
14701 2006-03-21  Jackson Harper  <jackson@ximian.com>
14703         * X11Keyboard.cs: improved layout detection. Move the nonchar
14704         tables into this file.
14705         * KeyboardLayouts.cs: Move the tables into resource files.
14707 2006-03-21  Mike Kestner  <mkestner@novell.com>
14709         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
14711 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
14713         * Mime.cs: Various speed optimizations. Looking up mime types
14714           is now 2 times faster than before
14716 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
14718         * CreateParams.cs: Added internal menu field
14719         * Control.cs: 
14720           - Switched call order for UpdateBounds; now we always call
14721             the one that also takes ClientSize, and we're calculating the 
14722             client size via driver method in the others. The previous
14723             method of tracking client size by difference wasn't working
14724             for forms where even the starting client size wouldn't match
14725             the overall form size (due to borders) (Part of fix for #77729)
14726           - CreateParams(): Do not use parent.Handle unless the handle is
14727             already created. Causes havoc with Nexxia and throws off our
14728             creation of controls
14729         * XplatUIX11.cs:
14730           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
14731           - Switched handling of ConfigureNotify over to new PerformNCCalc 
14732             method (consolidates code)
14733           - Changed RequestNCRecalc to use new PerformNCCalc method
14734           - Added calls to RequestNCRecalc when menus and borders are changed
14735             to allow app to set NC size. (Part of fix for #77729) This matches
14736             when MS send a WM_NCRECALC on Win32 windows.
14737           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
14738             (Part of fix for #77729). This matches what MS does, they also
14739             send that message when the form is made visible.
14740           - XException.GetMessage: Improved usability of X errors by including
14741             a translation of the window into Hwnd and Control class
14742           - Improved debug info for window creation, reparenting and destruction
14743           - Created helper method WindowIsMapped() [Currently not used]
14744         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
14745         * Form.cs:
14746           - CreateParams: Now setting our menu on the new internal menu field
14747           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
14748             avoid calculating the same property twice
14749         * Hwnd.cs:
14750           - Improved usability of ToString() for debugging purposes
14751           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
14752             determine the height of the menu, instead of just the font. This
14753             required to also create a graphics context and to keep a bmp 
14754             around (for performance reasons)
14756 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
14758         * MenuAPI.cs: Added OnMouseUp method
14759         * Form.cs:
14760           - Now remembering the requested client size, avoids size errors
14761           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
14762             instead of base if the menu is active. This is required due to
14763             control now capturing and releasing on down/up and it would
14764             prematurely release our menu capture
14766 2006-03-17  Jackson Harper  <jackson@ximian.com>
14768         * KeyboardLayouts.cs: Add the czech layouts.
14770 2006-03-16  Jackson Harper  <jackson@ximian.com>
14772         * Control.cs: Use the viewport space when sizing not the controls
14773         client size, so things like ScrollableControl that effect the
14774         viewport size (when scrollbars are added) are computed correctly.
14775         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
14776         of ManagerEntrys.
14777         - Handle creating BindingManagers for null data sources.
14778         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
14779         source, otherwise when rows are added they are added to the 'fake'
14780         datasource and we will crash when trying to set the position in
14781         those rows.
14782         - Use Implicit scrollbars on the datagrid so they arent
14783         selectable.
14784         
14785 2006-03-16  Jackson Harper  <jackson@ximian.com>
14787         * Binding.cs:
14788         * InternalWindowManager.cs:
14789         * MdiWindowManager.cs:
14790         * X11Keyboard.cs: I really want Mike to love me again (fix
14791         compiler warnings).
14793 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
14795         * DataGrid.cs:
14796           - OnMouseDown: Switch to editing mode when clicking on the cell
14797                          even if we're clicking on the cell that's currently 
14798                          selected
14799           - ProcessGridKey: Left/Right now wrap like MS.Net does
14800           - ProcessGridKey: Tab now knows to add a new row when tab is
14801                             pressed in the cell of the last column of the 
14802                             last row
14803           - ProcessGridKey: Enter now adds another row  if pressed in the last
14804                             row and selectes the new row, same column cell
14805           - ProcessGridKey: Home/End navigate columns, not rows, like 
14806                             originally implemented
14807           - Broke ProcessKeyPreview code out into an extra Internal method
14808             so it can be called from the edit code
14809         * DataGridTextBox.cs (ProcessKeyMessage):
14810           - Switched to accept Tab keypresses
14811           - Added F2 handling to allow jumping to the end of the edited cell
14812           - Added logic to allow moving caret left/right inside edited cell
14813             and making the edited cell jump when the caret hits cell borders
14814           - Tab and Enter are now passed to the datagrid after being handled
14815         * TextBoxBase.cs:
14816           - Removed capture code now that Control handles it
14817           - set_SelectionStart now ensures caret is visible
14819 2006-03-16  Jackson Harper  <jackson@ximian.com>
14821         * TrackBar.cs: Debackwards the increment/decrement for handling
14822         mouse clicks on the bar with vertical trackbars.
14823         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
14824         bottom to match MS.
14826 2006-03-16  Mike Kestner  <mkestner@novell.com>
14828         * ListView.cs: make shift/ctrl keyboard and mouse selection 
14829         consistent with the MS control. Fix a bug in
14830         SelectedListViewItemCollection.Clear that was pissing me off for the
14831         better part of a day because the collection was being altered
14832         underneath us as we walked the list.
14834 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
14836         * Control.cs: Not sure how we could miss this so long, but it seems
14837           that MS.Net has Capture set all the way from before calling 
14838           OnMouseDown through sending the mouse events until after
14839           OnMouseUp. This will fix DataGrid's selection being set to end
14840           at the location of the MouseUp.
14842 2006-03-15  Jackson Harper  <jackson@ximian.com>
14844         * BindingContext.cs: Check the binding after its added so that it
14845           can initialize the binding managers and hookup to events.
14846         * Binding.cs: Data members seem to sometimes include rows/cols in
14847           the format Row.Column we now take this into account.
14848           - Hookup to the position changed event so we can update the
14849           control when the position has changed in the data set.
14850         * CurrencyManager.cs: Take into account the row/col naming
14851           convention when creating dataset tables.
14852         * BindingContext.cs: Using a newer better way of storing
14853           datasource/datamember pairs.  Hopefully this better matches MS for
14854           looking up binding managers.
14857 2006-03-15  Jackson Harper  <jackson@ximian.com>
14859         * BindingContext.cs: The currency manager needs the data member
14860         name, if the member is a data set we use the name to find the
14861         correct table.
14862         * CurrencyManager.cs: When creating the list prefer an IList over
14863         an IListSource.
14864         - Attempt to create a DataTable from a DataSet (TODO: might need
14865         some better error checking here, although MS doesn't seem to have much)
14866         - If we have a DataTable create a view and use it as our list.
14868 2006-03-15  Mike Kestner  <mkestner@novell.com>
14870         * ListView.cs: keep a matrix of the icon mode layout to facilitate
14871         keyboard navigation. Support Up/Down/Left/Right selection correctly
14872         for all 4 View modes.
14873         * ListViewItem.cs: add internal row/col fields for icon layouts.
14875 2006-03-15  Jackson Harper  <jackson@ximian.com>
14877         * TabControl.cs: Redraw the tabs when we resize so their newly
14878         calculated sizes are drawn on screen.
14879         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
14880         composite characters.
14881         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
14882         - filter events so that composite characters can be created
14883         patches by peter
14884         * X11Structs.cs: Add XIMProperties enum.
14886 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
14888         * Control.cs (BringToFront, SendToBack): Don't use window or handle
14889           unless it's created
14891 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
14893         * Control.cs (PerformLayout): We don't need to consider visiblity
14894           for anchoring, only for docking. This fixes 'whacky' alignment
14895           in listbox and other controls that use implicit scrollbars after
14896           the previous PerformLayout patch
14897         * ListBox.cs: Switched to use implicit scrollbars
14898           
14899 2006-03-14  Mike Kestner  <mkestner@novell.com>
14901         * ToolBar.cs: 
14902         * VScrollBar.cs:
14903         - chain up the "new event" overrides to base and use
14904         OnEvent to raise them.  Part of fix for bug #76509.
14906 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
14908         * FileDialog.cs: Do not select an item in the parent directory
14909           on backspace
14911 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
14913         * Control.cs (PerformLayout): It would seem that we considered
14914           invisible windows for our layout. Not quite the right thing
14915           to do. Now we don't any longer, thereby fixing bug #76889.
14917 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
14919         * Control.cs (CanFocus): I goofed. A control can have focus 
14920           even though it's not selectable. Made it match MS docs.
14922 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
14924         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
14925           center by default (fixes #76895)
14926         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
14927           all uses of Border3DSides.All with the explicit ORd together
14928           Left|Right|Top|Bottom because I assume that nobody was aware 
14929           that All also implies a center fill. Most places I checked had
14930           a fill right above.
14931         * ProgressBarStyle.cs: Added
14933 2006-03-13  Mike Kestner  <mkestner@novell.com>
14935         * ListView.cs: fix breakage in drag shadow header positioning 
14936         from Peter's csc compilation fix.
14938 2006-03-13  Mike Kestner  <mkestner@novell.com>
14940         * ListView.cs: fix NRE produced by backspacing twice in a focused
14941         FileDialog.
14943 2006-03-13  Mike Kestner  <mkestner@novell.com>
14945         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
14947 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
14949         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
14950           be changed
14951         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
14952           the allowed size before making programmatic size changes
14954 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
14956         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
14957           set, metacity is broken and will still use the emty sizes in 
14958           the struct. (Fix for #77089)
14960 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
14962         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
14963           WindowExStyles and marked both enums as Flags
14964         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
14965           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
14966           to match WindowStyles split
14967         * XplatUIX11.cs:
14968           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
14969           - Updated to match WindowStyles split
14970         * XplatUIWin32.cs:
14971           - Fixed FosterParent creation, was using ExStyle on the Style field
14972             (This should help with Popup focus issues)
14973           - Updated to match WindowStyles split
14975 2006-03-13  Jackson Harper  <jackson@ximian.com>
14977         * MdiWindowManager.cs: Use the system menu height. Fixes some
14978         strange sizing issues.
14980 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
14982         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
14983         * TextBoxBase.cs:
14984           - Scroll to caret after inserting text (#77672)
14985           - Make scroll range one pixel higher, fixes off-by-one error (and
14986             makes underlines visible on the last line)
14988 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
14990         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
14991           the keyboard state from being stuck with keys in 'pressed' state when
14992           focus is switched away via keyboard
14993         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
14994           reset the keyboard if no X11 KeyUp events are expected to come
14995         * X11Structs.cs: Switched type of Visible to bool to match driver
14997 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
14999         * TextControl.cs:
15000           - Switched caret to be just 1 pixel wide, matches MS and looks less
15001             clunky
15002           - Moved caret display 1 pixel down from the top of the control
15003             to improve view
15004           - InsertCharAtCharet: Update the selection start if moving the caret
15005             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
15006           - No longer always creating the caret when the caret methods are
15007             called. Only the actual ShowCaret/HideCaret will do that now
15008           - Only setting caret visible if the owner control has focus
15009           - UpdateView: Added invalidation-shortcut logic for center and right 
15010             aligned text. Previously we'd update all according to the left
15011             logic which caused drawing errors. Also fixed height of invalidated
15012             areas, now properly invalidating the whole area (was off-by-one)
15013           - owner_HandleCreated: Always generate the document when the
15014             handle is created; this ensures that 
15015         * TextBoxBase.cs:
15016           - Fixed situation where caret would disappear under the right
15017             window border, also improved scrolling behaviour on left-
15018             aligned textboxes
15019           - Fixed right-aligned textboxes to have a border to the
15020             right instead of the caret being under the right border
15021         * XplatUIX11.cs:
15022           - Switched from 'nested' to simple visible/not visible tracking 
15023             for caret (part of fix for #77671)
15024           - No longer passing through translated FocusIn/FocusOut messages
15025             since we were notifying too often and the wrong windows. Instead
15026             we just notify our focussed window of receiving or loosing focus
15027         * XplatUIWin32.cs: Switched from 'nested' show/hide 
15028           counting for caret to simple visible yes/no behaviour (part of 
15029           fix for #77671)
15031 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
15033         * Mime.cs: Remove debug code...
15035 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
15037         * MimeGenerated.cs: Removed
15038         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
15039           and subclasses) from /usr/(local/)share/mime and
15040           $HOME/.local/share/mime.
15042 2006-03-10  Jackson Harper  <jackson@ximian.com>
15044         * MdiWindowManager.cs: Recalc the NC area when a window is
15045         maximized/restored so that the menu area is drawn on forms that
15046         don't have a menu.
15048 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
15050         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
15051           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
15052           us to force a WM_NCCALCRESIZE message being sent. This is needed
15053           for MDI maximizing.
15055 2006-03-10  Jackson Harper  <jackson@ximian.com>
15057         * Form.cs: We need to use the ActiveMenu when calculating menu
15058         height.
15059         - Fix nullref when the window manager hasn't been created yet.
15060         * Control.cs: Fix nullref when we try to bring a control to the
15061         front that has no parent.
15062         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
15063         height.
15064         - Add a dummy item to the maximized menu so it always has the
15065         correct height. Otherwise when there are no menus we don't get our
15066         icon and buttons.
15067         
15069 2006-03-10  Jackson Harper  <jackson@ximian.com>
15071         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
15072         stuff.
15073         * Form.cs: Make the window_state internal so the window managers
15074         can track it.
15075         - When an MDI child is maximized let its window manager create the
15076         main menu (so it can add its icon).
15077         - Notify the window managers of state changes
15078         - Let the window manager paint its buttons and handle button
15079         clicks on the menu when it is maximized.
15080         * InternalWindowManager.cs: Move the prev_bounds into the mdi
15081         window manager, since tool windows don't use it, only mdi windows.
15082         - Tell the main form that we don't want it to handle NCPAINT
15083         itself to avoid extra painting.
15084         - Handle clicks on a maximized windows menu.
15085         - Handle window state changes
15086         - Handle minimize/maximize clicks correctly by setting the window state.
15087         * MdiWindowManager.cs: Add an icon menu that (the menu you get
15088         when clicking on the forms icon).
15089         - New method to create a forms maximized menu. This is its normal
15090         menu + an icon.
15091         - Handle window state changes.
15092         - Handle sizing of maximized windows.  Maximized windows are just
15093         drawn bigger then the parent visible area. All controls are still
15094         there, they are just outside the visible area (this matches windows).
15095         * MdiClient.cs: No scrollbars when a child window is maximized.
15096         - Let the children windows figure out how big they should be when
15097         sizing maximized windows.
15098         - Implement a version of ArrangeIconicWindows somewhat similar to
15099         Windows version.  There are some little differences, but I don't
15100         think any app will rely on the layout of minimized mdi windows.
15102 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
15104         * Padding.cs: Several fixes to allow compiling with csc 2.0
15106 2006-03-09  Jackson Harper  <jackson@ximian.com>
15108         * Menu.cs:
15109         * MenuItem.cs: Cheap hack so we can add items to the list without
15110         the events being raised.  This allows adding mdi items during
15111         drawing. TODO: Should probably find a better time to add the items.
15113 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
15115         * ThemeWin32Classic.cs:
15116           - CheckBox_DrawText: Added logic to not wrap if not enough space
15117             is available (Fix for bug #77727)
15118           - RadioButton_DrawText: Added logic not to wrap if not enough
15119             space is available (Fix for bug #77727). Also removed some
15120             duplicate code, DrawString always drawing the regular text
15121             before hitting the if statement.
15123 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
15125         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
15127 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
15129         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
15130         * ContainerControl.cs: Partial implementation of some 2.0 scaling
15131           methods. Moved the new 2.0 properties into alphabetical order with
15132           other properties and added MonoTODO tags
15134 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
15136         * AutoScaleMode.cs: Added. Fix build.
15138 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
15140         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
15141           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
15142           and was requiring premature handle creation for calls from above
15143         * Form.cs, Control.cs: Removed handle arguments from calls to
15144           CalculateClientRect()
15146 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
15148         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
15149           drag_column.column_rect is MarshalByRef and can't be used that way
15151 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
15153         * AxHost.cs: Added deserialization constructor for 
15154           AxHost+State (fixes 77743)
15156 2006-03-09  Mike Kestner  <mkestner@novell.com>
15158         * ListView.cs: 
15159         - Added column drag reordering for details view.
15160         - fixed behavior when mouse is dragged off column and
15161         AllowColumnReorder is false.
15162         * ColumnHeader.cs: clone the format too in Clone.
15163         * Theme.cs: add DrawListViewHeaderDragDetails method.
15164         * ThemeWin32Classic.cs:
15165         - impl new method for drawing drag column shadows and targets.
15166         - support column offset for details mode in DrawListViewItem.
15168 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
15170         * TextControl.cs: Reset the char_count when the document is cleared
15171           (Fixes bug reported on mono-winforms mailing list)
15173 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
15175         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
15176           of calling base we simply process the key ourselves, since both
15177           DefWindowProc and the handled method would set m.Result. 
15178           (Fixes #77732)
15180 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
15182         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
15183           method also moves the window; instead implemented a copy of
15184           Control.ScaleCore (Part of fix for #77456)
15185         * TextBoxBase.cs: 
15186           - Created new CreateGraphicsInternal method to allow providing
15187             a graphics context when no handle is created without triggering
15188             handle creation. (Part of fix for #77456)
15189           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
15190         * TextControl.cs: 
15191           - Switched Constructor to require TextBoxBase instead of Control (to
15192             allow uncast access to CreateGraphicsInternal)
15193           - Safeguarded use of owner.Handle property. No longer accessing it
15194             unless the handle is already created.
15195           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
15196           - Now triggering a recalc when owning control becomes visible
15197         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
15198           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
15199           premature handle creation (Part of fix for #77456)
15200         * Control.cs:
15201           - We now only destroy our double-buffering buffers when the
15202             control is resized or disposed, but not when visibility
15203             changes. (The code even re-created them twice every time)
15204           - Now requiring a redraw of the buffer on visibility changes
15205             (fixes bug 77654 part 2)
15206           - Not passing OnParentVisibleChanged up unless the control
15207             is visible
15208           - CanFocus: Fixed to match MS documentation
15209           - Focus: Fixed to return actual focus state and to check if
15210             setting focus is legal before setting it
15212 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
15214         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
15215           when to draw focus rectangle by looking at parent focus and
15216           selected state instead. This fixes TabPages on Linux sometimes
15217           having none or multiple focus rectangles.
15218         * XplatUIX11.cs (SetFocus): 
15219           - Don't set the focus if the same window already has focus
15220           - Use SendMessage instead of PostMessage (like it's Win32
15221             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
15222             to match MS behaviour
15223         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
15224           are not selectable.
15226 2006-03-07  Jackson Harper  <jackson@ximian.com>
15228         * PictureBox.cs: Revert line I accidently committed last week.
15230 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
15232         * Control.cs: 
15233           - Added new IsRecreating and ParentIsRecreating properties to
15234             allow testing if RecreateHandle has been called on ourselves
15235             or one of our parents
15236           - WndProc(WM_DESTROY): If our control handle is being recreated
15237             we immediately need to create the handle when receiving the
15238             destroy, that way our child windows find a valid parent handle
15239             when they themselves are being recreated upon WM_DESTROY receipt
15240             (fix for bug #77654 part 1)
15241         * XplatUIX11.cs:
15242           - DestroyWindow: WM_DESTROY must be sent to our own window before
15243             notifying any child windows. MS documents that child windows
15244             are still valid when WM_DESTROY is received. (Control now relies on
15245             this behaviour)
15246           - Added some fine-grain debug options
15248 2006-03-06  Jackson Harper  <jackson@ximian.com>
15250         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
15251         box and base calculations off this.
15252         * MdiChildContext.cs:
15253         * MdiWindowManager.cs: Don't need to ensure scrollbars here
15254         anymore.
15255         
15256 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
15258         * Splitter.cs: In situations where the affected control is added
15259           to the parent's control list after the splitter, we would not
15260           populate affected. Now we try populating it on mousedown, if
15261           it's not already set, and force it to be re-set whenever our
15262           parent changes.
15264 2006-03-03  Matt Hargett  <matt@use.net>
15266         * Control.cs: implement Control.Padding
15267         * Padding.cs: -Padding.All returns -1 when constructing with the
15268         implicit default ctor
15269         -Padding.ToString() matches MS.NET
15270         * ContainerControl.cs: implement
15271         ContainerControl.AutoScaleDimensions
15272         * ListControl.cs: implement ListControl.FormattingEnabled
15273         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
15274         * ButtonBase.cs:
15275         * TabPage.cs: Implement UseVisualStyleBackColor.
15276         * PictureBox.cs: Implement PictureBox.InitialImage.
15278 2006-03-03  Mike Kestner  <mkestner@novell.com>
15280         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
15281         event declarations to proxy to base event.
15282         * ListViewItem.cs: update to use ItemControl.
15283         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
15284         * ThemeWin32Classic.cs: update to new ListView theme API and fix
15285         column header label rendering for 0 width columns.
15287 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
15289         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
15290           that causes the control to be created. Fixes #77476.
15292 2006-03-02  Jackson Harper  <jackson@ximian.com>
15294         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
15295         expose_pending.
15297 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
15299         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
15300           passed in for the EventArgs (fixes #77690)
15302 2006-03-01  Jackson Harper  <jackson@ximian.com>
15304         * ScrollBar.cs: Refresh afterbeing resized.
15306 2006-02-28  Mike Kestner  <mkestner@novell.com>
15308         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
15309         Clean up a tracker compile warning.
15310         * MenuItem.cs: add internal PerformPopup method.
15311         [Fixes #77457]
15313 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
15315         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
15316           implicit expose) when the text is set to null
15318 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
15320         * RichTextBox.cs (FlushText): When newline is true, we always
15321           need to split the line, even if no text is on it and we may
15322           never eat newlines. (Fixes #77669)
15324 2006-02-28  Mike Kestner  <mkestner@novell.com>
15326         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
15327         and set Selected instead.
15328         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
15329         collections.
15331 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
15333         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
15335 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
15337         * FontDialog.cs:
15338           - Got rid of the panel. All controls are now directly added to
15339             the dialog form
15340           - It is now possible to set a font with the Font property
15341           - MinSize and MaxSize property do now what they should
15342           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
15343           - Searching and selecting a font with the font textbox works now,
15344             the same applies to the style and size textbox
15345           - Draw the correct 3D border in the example panel
15346           - Fixed a little mem leak (unused fonts didn't get disposed)
15347           - Many other internal updates/rewrites...
15348           - Fix typo
15350 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
15352         * TextControl.cs: 
15353           - InsertRTFFromStream: Added 'number of characters inserted' argument
15354           - set_SelectedRTF: Now using the number of characters to calculate
15355             the new location for the selection and cursor (x/y cannot be used
15356             due to potentially already wrapped text)
15358 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
15360         * TextControl.cs: Added property and implemented means to allow 
15361           disabling recalculation of a document (can be used to speed up
15362           multiple inserts and is needed to make RTF inserts predictable, see
15363           bug #77659)
15364         * RichTextBox.cs: Using the new NoRecalc property of Document to
15365           keep x/y insert locations predictable. Also makes it faster inserting
15366           large chunks of RTF
15368 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
15370         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
15371           it's easier for a child control to handle the other messages without
15372           having to duplicate the special functionality
15373         * TextBoxBase.cs
15374           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
15375             code to handle processing the key ourselves, in order to get 
15376             access to the result of KeyEventArgs.Handled. We now only call 
15377             ProcessKey if they key hasn't been handled already. Fixes #77526.
15378           - set_Text: If null or empty string is given, just clear the 
15379             document. Fixes part of #77526
15381 2006-02-27  Jackson Harper  <jackson@ximian.com>
15383         * SizeGrip.cs: Paint the background color before painting the grip
15384         so things look right.
15385         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
15387 2006-02-27  Mike Kestner  <mkestner@novell.com>
15389         * ListView.cs:
15390           - Restructure layout and invalidation model to remove a ton of
15391           flicker from the control and speed up performance in general.
15392           - Add manual column resize, flickers like crazy, but I already have
15393           some ideas on how I'll fix that. (#76822)
15394           - Merge the three Icon-based views into a single layout method.
15395           - Move item selection interaction logic from the item since 
15396           interaction with the collections is more appropriate to the view.
15397           - Deselection on non-item clicks.
15398         * ListViewItem.cs:
15399           - Encapsulate most of the layout. Add some internal props to trigger
15400           layout.  Move to a model where Items invalidate themselves instead
15401           of just invalidating the whole control every time something changes.
15402           - Invalidate on Text/Caption changes.
15403           - switch to an offset based layout model to avoid having to absolute
15404           position every element on item moves.
15405           - correct checkbox layout to conform to MS layout.
15406         * ThemeWin32Classic.cs:
15407           - refactor some column header drawing code.
15408           - fix string justification for column headers (#76821)
15409           - make SmallIcon labels top justified for compat with MS impl.
15410         * ThemeClearlooks.cs:
15411           - adjust to new ListViewItem internal checkbox bounds api.
15413 2006-02-27  Jackson Harper  <jackson@ximian.com>
15415         * Control.cs:  Change where implicit controls fall in the zorder.
15416         They are now on top of all children.
15417         - Synced AddImplicit code with Add
15418         - Removed unused enumerator.
15419         * SizeGrip.cs: Remove the TODO as its been TODONE.
15421 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
15423         * TextControl.cs(Insert): Combine the last lines unless the insertion
15424           string ends with \n\n, otherwise we leave one line too many (Fixes
15425           something I noticed with the testapp for #77526; the bug itself was
15426           already fixed in the previous checkin)
15428 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
15430         * RichTextBox.cs:
15431           - SelectionColor and SelectionFont methods no longer set absolute
15432             styles. Instead, the keep font or color respectively (This 
15433             resolves a long-standing FIXME in the code)
15434           - When flushing RTF text, the insert code now considers text trailing
15435             behind the insertion point (Fixes the bug where when replacing
15436             the selected text via SelectedRTF the remainder of the line behind 
15437             the selection would stay on the first insertion line)
15438         * TextBoxBase.cs:
15439           - AppendText now updates the selection points after inserting text
15440           - AppendText now ensures that the last tag (sometimes 0-length) of
15441             the document is used for the style information (Fixes part of 
15442             bug #77220)
15443         * TextControl.cs:
15444           - Created new FontDefiniton class to allow describing partial style
15445             changes
15446           - StreamLine() now takes a lines argument, to allow it to decide
15447             whether an encountered zero-length tag is the last in the document
15448             (which must be kept to not loose the font/color contained in it,
15449             for later appends)
15450           - Created Combine() and Split() methods for Marker structs, to 
15451             support marker updates due to reformatted documents (soft line
15452             wraps)
15453           - Implemented Document.CaretTag setter
15454           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
15455             of the last line (Not the cause, but also exposed by bug #77220)
15456           - Added LineTag argument to InsertString method, to allow callers
15457             to force a certain tag to be used (required to force use of the
15458             trailing zero-length tag of a document)
15459           - Now updating markers in Combine(), to avoid stale tag markers
15460           - Added some method descriptions to aid maintenance
15461           - Implemented new FormatText concept, allowing additive/subtractive
15462             formatting by only specifying the components that are to be 
15463             changed. This was needed for resolving the RTB.SelectedColor/
15464             RTB.SelectedFont fixmes
15465           - Added Break() support method to allow breaking up linetags (used
15466             for partial formatting)
15467           - Added GenerateTextFormat() method. It is used for partial 
15468             formatting and allows to generate a full font/color from given
15469             attributes and an existing tag.
15471 2006-02-26  Jackson Harper  <jackson@ximian.com>
15473         * XplatUIX11.cs:  Use the correct caption height.
15474         - Translate hittest coordinates to screen coords to match MS.
15475         * XplatUIWin32.cs: When we create MDI windows we need to reset
15476         some of the style flags, so we get a nice blank window, and can
15477         draw all the decorations ourselves.
15478         - Set a clipping rectangle on the non client paint event, the
15479         window manager drawing code needs one.
15480         * Form.cs: The window manager needs to know when the window state
15481         has been updated.
15482         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
15483         don't need to factor in border and title sizes in these
15484         methods. TODO: Remove the args and fix the call points.
15485         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
15486         properly.
15487         - Let the driver set the cursors.
15488         - Improve active window handling
15489         - Correct sizes for title bars and buttons.
15490         - Match MS drawing better
15491         * MdiWindowManager.cs: We don't need to handle border style
15492         updates specially anymore.
15493         - Check for scrollbars when windows are done moving
15494         - Handle Active properly.
15495         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
15496         correctly. I am spewing the exception though, so we don't hide the
15497         bugs.
15498         
15499 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
15501         * DataGridViewRowPostPaintEventArgs.cs,
15502           DataGridViewCellPaintingEventArgs.cs,
15503           DataGridViewRowCollection.cs,
15504           DataGridViewRowPrePaintEventArgs.cs,
15505           DataGridViewCell.cs: Clear a few warnings and implement a few
15506           exceptions that should be thrown.
15508 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
15510         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
15511           'inheriting' our parent's (non-default) cursor. (Part of
15512            the fix for #77479)
15514 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
15516         * XplatUIX11.cs: Fixed cast to make csc happy
15518 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
15520         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
15521           it's for the client area (part of fix for #77479 and needed
15522           for MDI window cursor handling)
15523         * XplatUIX11.cs
15524           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
15525             the appropriate default cursors and also passing the message
15526             up the parent chain 
15527           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
15528             for non-client areas
15530 2006-02-15  Jackson Harper  <jackson@ximian.com>
15532         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
15533         is a real MDI window
15535 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
15537         * X11DesktopColors.cs: Instead of checking the desktop session
15538           string for "KDE" check if it starts with "KDE"
15540 2006-02-10  Jackson Harper  <jackson@ximian.com>
15542         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
15543         systems).
15545 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
15547         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
15548           errors
15549         * ColorDialog.cs:
15550           - Got rid of the panel. All controls are now directly added to
15551             the dialog form
15552           - Changed to mono coding style
15554 2006-02-10  Jackson Harper  <jackson@ximian.com>
15556         * InternalWindowManager.cs: We don't need the set visibility to
15557         false hack anymore now that peter has written beautiful shutdown
15558         code.
15560 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
15562         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
15563           where already explicitly destroyed
15565 2006-02-10  Jackson Harper  <jackson@ximian.com>
15567         * MdiClient.cs: Handle the case where windows are too high or to
15568         the left and we need scrollbars.
15570 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
15572         * MimeIcon.cs: Added some icons
15573         * FileDialog.cs:
15574           - Fixed bug #77477
15575           - Got rid of the panel. All controls are now directly added to
15576             the dialog form
15577           - Changed to mono coding style
15578           - On Linux "My Computer" and "My Network" will now show some
15579             more usefull information. A new class, MasterMount, gathers
15580             this information from /proc/mount. Updated MWFFileView to make
15581             use of this information
15582           - Fixed a bug that caused FileDialog to crash when
15583             ".recently_used" file had a zero size
15584           - FilterIndex does now what it should
15585           - Some Refactoring
15586         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
15587             FileDialog changes
15589 2006-02-09  Jackson Harper  <jackson@ximian.com>
15591         * ComboBox.cs: Don't touch if null.
15593 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
15595         * Cursor.cs: 64bit safeness fix
15596         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
15598 2006-02-09  Jackson Harper  <jackson@ximian.com>
15600         * Form.cs: If a form is made into an MDI form update the styles so
15601         all the props can get set correctly.
15602         - Kill the mdi_container when we dont need it anymore.
15603         * InternalWindowManager.cs: Add missing NOT
15605 2006-02-08  Jackson Harper  <jackson@ximian.com>
15607         * InternalWindowManager.cs: Respek clipping when drawing MDi
15608         decorations.
15610 2006-02-08  Jackson Harper  <jackson@ximian.com>
15612         * Hwnd.cs: Add bits to track non client expose events.
15613         * XplatUIX11.cs: Track non client expose events on the hwnd. This
15614         gives us a proper invalid rect and will allow for some nice
15615         optimizations with NC client drawing
15616         - MDI windows are children windows, so move their style handling
15617         into the child window block.
15618         * InternalWindowManager.cs: Remove a state reset that was
15619         getting invoked at the wrong time. Fixes managed windows getting
15620         into a 'stuck' captured state.
15622 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
15624         * TextControl.cs (Document.ctor): Now initializing 
15625           selection_anchor. Fixes #77493
15627 2006-02-07  Jackson Harper  <jackson@ximian.com>
15629         * TrackBar.cs: The increment/decrements were backwards.
15631 2006-02-07  Mike Kestner  <mkestner@novell.com>
15633         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
15634         to the instance itself.
15636 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
15638         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
15639           on ulongs and pointers, the size differs between 32bit and 64bit
15640           systems. 
15642 2006-02-07  Mike Kestner  <mkestner@novell.com>
15644         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
15645         for 64 bit platforms to work around a metacity bug. 
15647 2006-02-07  Jackson Harper  <jackson@ximian.com>
15649         * TrackBar.cs: Process the input keys we need, and hookup to
15650         KeyDown instead of using WndProc, so we get key messages.
15652 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
15654         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
15655           machine we're on. 
15656         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
15657           we need to translate the XdndVersion atoms array before sending it
15659 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
15661         * XplatUIX11.cs: 
15662           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
15663             number of bits for the property, not the number of bytes. The
15664             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
15665             but would not crash since it specified 8 bits instead of 4 bits)
15666           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
15667             defined as XID -> long in the C headers)
15668           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
15669             references since those are now IntPtr to begin with
15670           - Switched all Atom.XXX 'int' casts to IntPtr casts
15671           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
15672           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
15673           - Added XChangeActivePointerGrab DllImport (for X11DnD)
15674         * X11Structs.cs:
15675           - Changed 'int' type for Atoms in XEvent structures to IntPtr
15676           - Changed atom in HoverStruct to be IntPtr
15677         * X11DnD.cs:
15678           - Removed local DllImports, switched code to use those from XplatUIX11
15679           - Removed/fixed casts related to the switch of Atom to be a IntPtr
15681 2006-02-06  Mike Kestner  <mkestner@novell.com>
15683         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
15684         method signatures in the import region.  There may still be some
15685         lingering struct marshaling issues, as I didn't drill down into those.
15686         Yet.
15688 2006-02-06  Jackson Harper  <jackson@ximian.com>
15690         * ComboBox.cs: Dont manually set the top_item, this is computed
15691         when the scrollbar position is set.
15693 2006-02-06  Mike Kestner  <mkestner@novell.com>
15695         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
15696         startup crashes on amd64.  There's other fixes needed.  All pinvoke
15697         usage of Atom needs to be mapped to IntPtr for example.  And there are
15698         likely other int/long issues to be addressed.
15700 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
15702         * FileDialog.cs: One more...
15704 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
15706         * FileDialog.cs: Next try
15708 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
15710         * FileDialog.cs: First part of fix for #77464
15712 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
15714         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
15715           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
15716           AcceptButton border drawing.
15718 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
15720         * Form.cs: Moved positioning of form after auto scaling is applied,
15721           otherwise it would possibly use wrong form size.
15723 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
15725         * Control.cs (RecreateHandle): No need to re-create any child
15726           controls, the child windows will get destroyed automatically by
15727           the windowing system or driver, and re-created when the handle
15728           is being accessed the first time. Fixes #77456
15729         * Form.cs: No longer setting the form to closing if the handle is 
15730           being recreated. This seems like the right thing to do, don't
15731           have a bug or testcase for this, though.
15733 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
15735         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
15736           controls to avoid unwanted side effects
15738 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
15740         * Control.cs: 
15741           - ScaleCore needs to scale the bounds, not the ClientSize of the 
15742             control. Fixes #77416.
15743           - DefaultSize is 0,0 for control
15744         * TextBoxBase.cs: 
15745           - DefaultSize is 100, 20
15746           - SetBoundsCore: Now enforcing the height, no matter if the provided
15747             height is more or less than the preferred one, as long as AutoSize
15748             is on
15749         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
15751 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
15753         * Control.cs:
15754           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
15755             call unless both performLayout is true *and* we have a pending
15756             layout change
15757           - ResumeLayout: MS does not completely nest Suspend and Resume,
15758             they bottom out at 0, fixed our code to match that.
15759           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
15760             SetBoundsCore, we were updating even when we shouldn't. This fixes
15761             swf-anchors mis-anchoring when resizing the app fast and lots.
15762           - UpdateDistances: Now only setting the left and top distance if 
15763             we have a parent and are not suspended, this is based on
15764             a suggestion by Don Edvaldson in bug #77355.
15765           - OnVisibleChanged: Fixed logic when to create the control. We may
15766             not create the control if we have no parent or if it's not visible;
15767             switched to using Visible property instead of is_visible field 
15768             since the property also considers parent states. This fixes a bug
15769             when starting Paint.Net
15771 2006-02-02  Jackson Harper  <jackson@ximian.com>
15773         * Form.cs: If the forms handle hasn't been created yet don't call
15774         into xplatui to make it top most, just set the topmost flag on the
15775         form in CreateParams
15776         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
15778 2006-02-01  Jackson Harper  <jackson@ximian.com>
15780         * ScrollableControl.cs: Refactored the Recalculate method a
15781         little, this wasn't handling all the variants of bottom and right
15782         bars needed to be added and added/removed based on their
15783         counterparts being added/removed (which changes the drawable
15784         size). Also we special case client widths and heights of 0 and
15785         don't add the scrollbar for those.
15787 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
15789         * XplatUIX11.cs: 
15790           - Added method to get AbsoluteGeometry(); currently unused, but might
15791             be used in the future, if we try again to figure out toplevel
15792             coordinates with some more crappy window managers
15793           - Added FrameExtents() method to retrieve the WM set decoration size
15794           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
15795             to deal with at least KDE, FVWM and metacity (Fixes #77092)
15796         * Hwnd.cs: 
15797           - Added whacky_wm tracking var for metacity
15798           - Added logic to have default menu height if the actual menu height
15799             has not yet been calculated (part of fix for #77426)
15800         * Form.cs: Keep track whether client size has been set and re-set 
15801           it if a menu is added/removed afterwards (Fixes #77426)
15803 2006-01-31  Jackson Harper  <jackson@ximian.com>
15805         * Control.cs: When a new Site is set on the component attempt to
15806         pull the AmbientProperties from it.
15808 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
15810         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
15811           in the background of the owning form. Fixes #77332
15813 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
15815         * MimeIcon.cs: Fix for #77409
15817 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
15819         * XplatUIX11GTK.cs: Initial import
15821 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
15823         * FixedSizeTextBox: fixes class signature
15825 2006-01-30  Jackson Harper  <jackson@ximian.com>
15827         * FixedSizeTextBox.cs: New internal class that represents a
15828         textBox that will not be scaled.
15829         * TreeView.cs:
15830         * ComboBox.cs:
15831         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
15832         standard TextBox.
15833                 
15834 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
15836         * XplatUIX11.cs: Retrieve default screen number instead of
15837           assuming 0. Attempted fix for #77318
15839 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
15841         * XplatUIWin32.cs: 
15842           - GetWindowPos: When a window is parented by FosterParent, use 
15843             the desktop instead of FosterParent as the base to get coordinates
15844           - CreateWindow: Don't make FosterParent the parent window for Popups
15845             if we don't want a taskbar entry, Popups automatically don't get one
15846         * Hwnd.cs: Need to call remove to actually remove the key from the
15847           hash table
15849 2006-01-30  Mike Kestner  <mkestner@novell.com>
15851         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
15853 2006-01-30  Jackson Harper  <jackson@ximian.com>
15855         * TreeView.cs:
15856         * TreeNode.cs: Raise events no matter how the treenode is
15857         checked. Patch by Don Edvalson.
15859 2006-01-30  Jackson Harper  <jackson@ximian.com>
15861         * TreeNode.cs: Signature fix.
15863 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
15865         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
15867 2006-01-20  Mike Kestner  <mkestner@novell.com>
15869         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
15870         event forwarding when menus are active.
15871         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
15872         Most of the patch is pdb's with a little rework.
15874 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
15876         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
15877           Removed GetMenuDC and ReleaseMenuDC methods; replaced
15878           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
15879         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
15880         * InternalWindowManager.cs: Added use of PaintEventStart/End to
15881           handling of WM_NCPAINT message, now passing the PaintEventArgs to
15882           the PaintWindowDecorations method
15883         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
15884         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
15885         * MenuAPI.cs: Made tracker window invisible
15886         * XplatUIWin32.cs:
15887           - Removed GetMenuDC and ReleaseMenuDC methods
15888           - Implemented the client=false path for PaintEventStart and
15889             PaintEventEnd
15891 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
15893         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
15894         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
15895           styles
15896         * Form.cs: 
15897           - MaximizeBox, MinimizeBox: Recreate the handle when setting
15898             the style
15899           - CreateParams: Reworked the styles to match MS look'n'feel,
15900             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
15901             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
15903 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
15905         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
15906           window is not mapped, since otherwise every form that's being 
15907           created is considered minimized, which is wrong.
15908         * Form.cs: Catching the exception and returning our internal value
15909           instead
15911 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
15913         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
15914           SetWindowMinMax() to have means to tell the driver about the minimum,
15915           maximum and maximized state window sizes. (Part of the fix for #76485)
15916         * Form.cs:
15917           - Implemented tracking of minimum and maximum window size, now calling
15918             new SetWindowMinMax() driver method to tell the driver (Part of the
15919             fix for #76485)
15920           - Finished handling of WM_GETMINMAXINFO method, now setting all values
15921             (Completes fix for #76485)
15922           - Calling new SetWindowMinMax driver method when the handle for a 
15923             form is created, to make sure the driver knows about it even if
15924             the values have been set before the window was created
15925           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
15926             to avoid messing up our anchoring calculations (partial fix
15927             for #77355)
15928         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
15929         * XplatUIX11.cs:
15930           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
15931           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
15932             (and presumably other freedesktop.org compliant WMs). Left the
15933             assumption unmapped=minimized, needed for SetVisible to work.
15934           - Now setting the window state when creating windows
15935           - Fixed SetVisible to consider/set the window state when mapping
15936             a Form. We cannot set the state before it's mapped, and we cannot
15937             use Form.WindowState once it's mapped (since it would ask the
15938             driver and get 'normal'. Therefore, we grab the state before
15939             mapping, map, and then set state.
15940           - Implmemented SetWindowMinMax method; Metacity does not seem to
15941             honor the ZoomHints, though.
15942         * XplatUIWin32.cs:
15943           - Removed MINMAXINFO (moved to XplatUIStructs)
15944           - Added SetWindowMinMax stub (on Win32 the only way to set that
15945             information is in response to the WM_GETMINMAXINFO message, which
15946             is handled in Form.cs)
15947           - Added logic to SetVisible to set the proper window state when a 
15948             form is made visible (fixes #75720)
15950 2006-01-26  Jackson Harper  <jackson@ximian.com>
15952         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
15953         same way we handle them with Invoke.
15955 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
15957         * Form.cs:
15958           - Added tracking of window state so CreateParams can return
15959             the appropriate style
15960           - Moved setting of WS_CAPTION style in CreateParams to allow
15961             styles without caption
15962         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
15963           control if the TextBox property is accessed. Fixes #77345
15964         * Control.cs:
15965           - get_Created: now uses is_disposed and is_created to determine
15966             return value (suggested by Jackson)
15967           - CreateHandle: No longer exits if the handle is being recreated
15968           - RecreateHandle: If the handle is not yet created call the 
15969             appropriate method to create either control or handle. If the
15970             control is already created CreateHandle will simply exit instead
15971             of just creating the handle
15972         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
15973           now SendMessage WM_DESTROY directly to the control when DestroyWindow
15974           is called.
15975         * XplatUIX11.cs: 
15976           - When DestroyWindow is called, instead of waiting for the 
15977             DestroyNotification from X11, we directly post it to the WndProc
15978             and immediately dispose the hwnd object.
15979             Same applies to DestroyChildWindows, and this obsoletes the
15980             expose_pending tracking. Contrary to Win32 behaviour we destroy our
15981             child windows before our own, to avoid X11 errors.
15982           - Removed the direct sending of WM_PAINT on UpdateWindow
15983         * XplatUIWin32.cs:
15984           - Reworked DoEvents and GetMessage to allow access to internal queue
15985             even when trying non-blocking access to the queue.  Fixes #77335. 
15986             Based on a patch suggestion by Don Edvalson. The new private
15987             GetMessage can now also be used as a backend for a PeekMessage
15988             frontend version.
15989         * XplatUI.cs: Improved debug output for CreateWindow
15991 2006-01-25  Jackson Harper  <jackson@ximian.com>
15993         * Help.cs: Allow param to be null. Patch by Don Edvalson.
15995 2006-01-24  Jackson Harper  <jackson@ximian.com>
15997         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
15998         when we have a MaxDropItems lower then the selected index.
16000 2006-01-24  Jackson Harper  <jackson@ximian.com>
16002         * Control.cs: Don't allow selection of non visible controls, allow
16003         selection of controls without parents.
16005 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
16007         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
16008         * DataGridDrawingLogic.cs: Add editing row only when is necessary
16010 2006-01-23  Jackson Harper  <jackson@ximian.com>
16012         * UpDownBase.cs: Make the textbox handle all the selection and
16013         tabbing. This fixes tabing to updown controls.
16015 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
16017         * TextBoxBase.cs: fixes exception thown the object was null
16019 2006-01-23  Jackson Harper  <jackson@ximian.com>
16021         * ButtonBase.cs: Just use the base CreateParams. They set
16022         visibility and enabled correctly.
16023         * ComboBox.cs:
16024         * TrackBar.cs:
16025         * MonthCalendar.cs: Lets let the base set as much of the
16026         createparams as possible so we don't have duplicate code all over
16027         the place.
16029 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
16031         * ThemeGtk.cs: Added TrackBar and some experimental code to
16032           get double buffering back
16034 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
16036         * DataGrid.cs: Allows row number set internally higher than the last
16037         when creating a new row. Restores the editing functionality.
16039 2006-01-20  Mike Kestner  <mkestner@novell.com>
16041         * MimeIcon.cs: delay Image creation until the icons are accessed
16042         instead of creating 190 scaled images on GnomeHandler startup.
16044 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
16046         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
16047           first call base before processing the event. Fixes #77279
16049 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
16051         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
16052           that the stride for the GDI bitmap would match the stride of
16053           a DIB or a Cursor.
16055 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
16057         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
16059 2006-01-19  Jackson Harper  <jackson@ximian.com>
16061         * ComboBox.cs: Hookup the text controls keydown event so we get
16062         those when the text control has the focus.
16064 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
16066         * Label.cs: Now using the base events instead of defining new ones;
16067           this allows us to just call the base properties without having to
16068           duplicate all base property logic 
16070 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
16072         * Label.cs: A label by default is not a tabstop (Fixes one of our
16073           failing nunit tests)
16075 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
16077         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
16078         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
16080 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
16082         * Cursor.cs: Reimplemented creating cursor bitmaps without using
16083           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
16084           This fixes #77218
16085         * XplatUIWin32.cs: 
16086           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
16087             constructor creates images that can't be saved. Part of the fix
16088             for #76103
16089           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
16090           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
16091             bug fix for handling window state in forms properly)
16093 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
16095         * ThemeGtk.cs: Simplify ScrollBar drawing
16097 2006-01-18  Jackson Harper  <jackson@ximian.com>
16099         * Splitter.cs: Set the default dock style for the splitter control
16100         in the constructor.
16102 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
16104         * ThemeGtk.cs: Corrected StateType and ShadowType for
16105           gtk_paint_box
16107 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
16109         * Control.cs: Make use of Theme.DoubleBufferingSupported
16110         * ThemeGtk.cs:
16111           - Added drawing for flat style buttons
16112           - Added ScrollBar drawing
16114 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
16116         * ThemeClearlooks.cs: Removed some unneeded code.
16117         * ThemeGtk.cs: First part of ThemeGtk enhancements.
16119 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
16121         * LinkLabel.cs: We need to update the hover drawing when
16122           leaving the control as well.
16124 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
16126         * DataGrid.cs: Clicking on non empty areas in the columns
16127            area was giving an exception
16129 2006-01-17  Jackson Harper  <jackson@ximian.com>
16131         * ThemeWin32Classic.cs:
16132         * ListView.cs: Do not draw/clip the headers when the header style
16133         is None.
16135 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
16137         * DataGrid.cs: Fixes 77260
16138         
16139 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
16141         * DataGrid.cs: Clicking on a column on a empty grid was giving
16142           an exception
16144 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
16146         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
16147           or any keypress will crash the grid.
16149 2006-01-17  Mike Kestner  <mkestner@novell.com>
16151         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
16152         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
16153         invisible/previously-visible items.
16154         [Fixes #76909]
16156 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
16158         * ThemeClearlooks.cs:
16159         - Added CL_Draw_Button method; now other theme controls that are 
16160           not derived from button or do not have a button can draw buttons
16161           too
16162         - Updated ComboBox drawing
16163         - Beautified RadioButton drawing
16164         - Corrected drawing of bottom and left tabs
16165         - Beautified DateTimePicker and MonthCalendar
16166         - Added CPDrawButton and CPDrawRadioButton
16168 2006-01-16  Jackson Harper  <jackson@ximian.com>
16170         * ComboBox.cs: Set the initial value of the scrollbar to the
16171         current index. Reduce the numbers of refreshs and IndexOfs called.
16173 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
16175         * FileDialog.cs: When the file listview is focused hitting the
16176           backspace key moves the fileview to the parent directory
16178 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
16180         * Form.cs: 
16181           - Added RecreateHandle call when changing taskbar visibility to 
16182             trigger reparenting in Win32 driver (Fixes #75719)
16183           - If a window has minimize or maximize buttons, it cannot have
16184             a help button
16185         * XplatUIWin32.cs:
16186           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
16187             the toplevel form with FosterParent (A toolwindow not on the
16188             taskbar) (Fixes #75719)
16189           - Made FosterParent a toolwindow
16191 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
16193         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
16195 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
16197         * ToolTip.cs: If SetToolTip is called from a control and the mouse
16198           is currently over that control, make sure that tooltip_window.Text
16199           gets updated
16201 2006-01-13  Mike Kestner  <mkestner@novell.com>
16203         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
16205 2006-01-13  Jackson Harper  <jackson@ximian.com>
16207         * TreeView.cs: On MS GetNodeAt never actually factors in the X
16208         value passed.  Also redraw the selected node when we recieve
16209         focus, so tabbing between trees works correctly.
16211 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
16213         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
16214           ~/.gconf/%gconf-tree.xml, so use
16215           .gconf/desktop/gnome/interface/%gconf.xml
16217 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
16219         * TextControl.cs: Draw text in gray if control is disabled
16221 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
16223         * TreeView.cs: Draw the focus rectangle outside the highlight, to
16224           make sure it's always visible. Fixes #76680.
16226 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
16228         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
16230 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
16232         * PageSetupDialog.cs: Added.
16233         * PrintDialog.cs: Attributes.
16234         * PrintPreviewControl.cs: Updates.
16235         * PrintPreviewDialog.cs: Updates.
16236         
16237 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
16239         * Control.cs: Undid my selection check fix, since it's not needed
16240         * TextBoxBase.cs:
16241           - Now considering the presence of hscroll/vscroll when sizing
16242             vscroll/hscroll respectively. Fixed bug #77077
16243           - Added Left/Up/Down/Right to IsInputKey list to prevent
16244             ContainerControl from stealing them. This fixes what I broke
16245             with my last checkin.
16247 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
16249         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
16250           I finally understand how the property can be set without a setter :-)
16252 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
16254         * Application.cs:
16255           - Switched RunLoop to use static Message.Create to create a 
16256             Message object
16257           - Added PreProcessMessage call in runloop for keyboard events; this
16258             is part of the fix for #77219, I overlooked this originally in the
16259             MSDN doc for PreProcessMessage
16260         * Control.cs:
16261           - Removed call to PreProcessMessage from handling of keyboard 
16262             messages; it's supposed to be done in the message pump
16263           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
16264             per MSDN documentation.
16265           - IsInputChar: All chars are input chars by default; removed the 
16266             parent calling chain, MS does not document that
16267           - PreProcessMessage: If IsInputChar is true, we want to return false
16268             to allow dispatching of the message
16269           - When selecting the next control, now also check that we're not
16270             selecting ourselves again and therefore return a false positive.
16271         * TextBoxBase.cs:
16272           - Tried to match return values for IsInputKey and ProcessDialogKey
16273             to what MS returns; moved processing of our special keys outside
16274             ProcessDialogKey since MS does not seem to return true on those.
16275           - Moved code that previously was in ProcessDialogKey into new private
16276             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
16277           - Reworked handling of WM_CHAR to not have to duplicate code from
16278             Control.cs anymore, instead we simply call down to base.
16279            
16280 2006-01-12  Jackson Harper  <jackson@ximian.com>
16282         * ComboBox.cs: We always need to refresh the text area when
16283         EndUpdate is called. Fixes the combobox in the file dialog.
16284         * Control.cs: Don't create the creator_thread until the controls
16285         handle is created.  Also in InvokeRequired we check if the
16286         creator_thread is null. This gives the effect of InvokeRequired
16287         returning true if the controls handle is not created yet, and
16288         matches MS.
16290 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
16292         * XplatUI.cs:
16293           - Added StartLoop() driver method. This is used to allow drivers to
16294             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
16295             loop for a particular thread
16296           - Added EndLoop() driver method. This is called once the message
16297             pump for the thread is shut down
16298           - Added SupportsTransparency method to allow the driver to indicate
16299             opacity support for windows
16300         * Form.cs:
16301           - Removed TODO attribute, completed AllowTransparency property
16302           - Added documented logic to Opacity
16303         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
16304           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
16305           versions of CompatibleTextRendering
16306         * X11Structs.cs: Added opacity atom to our atom enumeration
16307         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
16308           of a form might be set before it's reparented by the WM, and we need
16309           the opacity value without calling up to Form)
16310         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
16311           SupportsTransparency() driver methods
16312         * Application.cs: Now calling StartLoop and EndLoop driver methods
16313         * XplatUIX11.cs:
16314           - Added opacity atom registration
16315           - Added StartLoop()/EndLoop() methods. They're empty right now but
16316             will need to get implemented when we switch to a per-thread queue
16317           - Implemented SupportsTransparency() method
16318           - Implemented SetWindowTransparency() method
16319           - Added support for setting the opacity value when a window is
16320             reparented (since the opacity needs to be set on the WM frame)
16321         * XplatUIOSX.cs, XplatUIWin32.cs:
16322           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
16324 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
16326         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
16328 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
16330         * FileDialog.cs: Added ToolTip for MWFFileView
16331         * MimeIcon.cs: Rewrote GnomeHandler.
16332           - Get currently used gnome icon theme from
16333             ($HOME)/.gconf/%gconf-tree.xml
16334           - Make use of inherited icon themes
16335           - Support SVG icon themes like Tango via librsvg
16337 2006-01-12  Miguel de Icaza  <miguel@novell.com>
16339         Revert's Jackson's revert which broke 2.0 builds.   Fix both
16340         builds. 
16341         
16342         * Application.cs: Move the use_compatible_text_rendering outside
16343         the NET_2_0 define.  If we ever need to use the
16344         use_compatible_text_rendering on the individual controls they will
16345         access the variable from the common shared code paths.
16347 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
16349         * XplatUI.cs:
16350           - Added more granular debug options
16351           - Added method to print both window text and id
16352           - Switched debug output to use new Window() debug method
16353           - Added IsEnabled() driver method
16354           - Added EnableWindow() driver method
16355         * Form.cs:
16356           - Removed end_modal; no longer needed, new loop handles termination
16357             via 'closing' variable
16358           - If form is modal, setting DialogResult will now initiate loop
16359             termination via 'closing' variable
16360           - Added support for is_enabled/WS_DISABLED to CreateParams
16361           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
16362             does all the work
16363           - Removed code that's now in RunLoop from ShowDialog()
16364           - Added various documented sanity checks to ShowDialog()
16365           - Added handling of WM_DESTROY message; we set 'closing' on getting
16366             the message to indicate the message pump to terminate
16367           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
16368             send by the Application.ExitThread method. (We send the message
16369             to destroy the window after all other events have been
16370             processed through the queue, instead of destroying the handle 
16371             directly)
16372           - Moved code from Close() method to WM_CLOSE handler; added logic
16373             to only send close-related events if the form is not displayed
16374             modal
16375         * Splitter.cs (..ctor): Fixed typo in resource name
16376         * Control.cs:
16377           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
16378             brush now
16379           - set_Cursor: Now only setting calling into XplatUI if the handle for
16380             the control is already created; this avoids implict handle creation
16381             or crashes if it's not created
16382           - set_Enabled: Now setting the enabled state via the new driver method
16383             instead of just tracking it
16384           - CreateParams: Added logic to set WS_DISABLED based on enabled state
16385           - CreateControl: Reordered event firing and method calls to more
16386             closely fire events in the order MS does. Now setting the
16387             enabled state in the driver when creating the control.
16388           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
16389             match MS order
16390         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
16391           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
16392         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
16393         * Hwnd.cs:
16394           - Added tracking of window enabled state (get_Enabled/set_Enabled)
16395           - Added EnabledHwnd property to easily allow a driver to find the
16396             handle of the first enabled window in the parent chain (this is
16397             used by drivers to pass up input events of disabled windows)
16398         * XplatUIDriver.cs: Added IsEnabled() method
16399         * Application.cs:
16400           - Removed crude and obsolete exiting tracking variable
16401           - Removed internal ModalRun(); replaced by RunLoop()
16402           - Implemented private CloseForms() method to allow closing all 
16403             windows owned by a particular (or all) threads
16404           - Exit() now properly closes all windows without forcing the message
16405             pump to quit
16406           - Removed obsolete InternalExit() method
16407           - Changed Run() methods to use new RunLoop() message pump
16408           - Implemented new RunLoop() method for both modal and non-modal forms
16409         * CommonDialog.cs:
16410           - get_CreateParams: Added setting of WS_DISABLED
16411           - Simplified ShowDialog(); now all the work is done in RunLoop(),
16412             invoked via Form.ShowDialog()
16413         * NativeWindow.cs: We don't remove the window from the collection when
16414           the handle is destroyed; there might still be messages for it in the
16415           queue (mainly the resulting WM_DESTROY); instead it will be removed
16416           when Control calls InvalidateHandle in the WM_DESTROY handler
16417         * XplatUIX11.cs:
16418           - CreateWindow: Added logic to handle the WS_DISABLED window style
16419           - EnableWindow: Implemented based on Hwnd.Enabled
16420           - GetMessage: Reset PostQuitState so the method can be called again
16421           - Implemented support for disabled windows (passing messages to the
16422             first enabled parent) in handling all input messages
16423           - Added optimizations for handling Expose events
16424           - Implemeted new driver method IsEnabled()
16425           - Now always resetting paint pending tracking vars when we start paint
16426           - Re-implemented UpdateWindow via just sending a WM_PAINT message
16427         * XplatUIOSX.cs: Added IsEnabled method stub
16428         * XplatUIWin32.cs: Implemented new IsEnabled() method
16430 2006-01-11  Jackson Harper  <jackson@ximian.com>
16432         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
16433         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
16434         variables a little.
16435         * ColorDialog.cs: Clear out the old form before adding the new
16436         panel.  
16438 2006-01-11  Jackson Harper  <jackson@ximian.com>
16440         * X11Dnd.cs: Make sure to add all the text formats when adding
16441         strings to the data object.
16442         * TreeNodeCollection.cs: When adding to a sorted tree we need to
16443         do some redrawing too.  Also change the UpdateNode to an
16444         UpdateBelow so the newly added node gets painted.
16445         
16446 2006-01-11  Miguel de Icaza  <miguel@novell.com>
16448         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
16449         LinkLabel.cs, PropertyGrid.cs: Implement the
16450         UseCompatibleTextRendering property for 2.x
16452         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
16454 2006-01-11  Jackson Harper  <jackson@ximian.com>
16456         * TreeView.cs: Use the property for setting the selected node so
16457         the correct events get raised.
16458         * TreeNode.cs: Update the tree when the fore/back colours of a
16459         node are set.
16461 2006-01-10  Jackson Harper  <jackson@ximian.com>
16463         * TreeView.cs: Allow setting SelectedNode to null.
16465 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
16467         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
16469 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
16471         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
16473 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
16475         * PrintDialog.cs: Added attributes and set default property values.
16477 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
16479         * PrintControllerWithStatusDialog.cs: 
16480         Added PrintControllerWithStatusDialog.
16482 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
16484         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
16485         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
16487 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
16489         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
16491 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16493         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
16494         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
16496 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
16498         * MimeIcon.cs: Added internal class SVGUtil.
16500 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
16502         * FileDialog.cs: Don't crash if there are two files with the
16503           same name but different locations.
16505 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
16507         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
16508         dates across multiple month grids. Used to not highlight entire 
16509         month, but does now.
16510         
16511 2006-01-06  Jackson Harper  <jackson@ximian.com>
16513         * MonthCalendar.cs: Removed DoEvents call to prevent a running
16514         message loop. Change timer intervals to numbers that seem more
16515         natural.
16517 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
16519         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
16520           object for location info since screen object is now implemented.
16522 2006-01-05  Jackson Harper  <jackson@ximian.com>
16524         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
16525         * AsyncMethodResult.cs: We no longer use a WeakReference for the
16526         AsyncMethodResult, this is because we ALWAYS want the
16527         ManualResetEvent to get set.
16528         * Control.cs: When disposing use an async invoke to call shutdown
16529         code, so that thigns don't block on the finalizer thread.  Also
16530         check if we even have a message loop before trying to send
16531         messages, if we don't then don't bother sending messages.
16532         - No more weak references for async methods
16533         * XplatUIDriver.cs: No more weak references for async methods.
16535 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
16537         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
16538           returns two FontFamily with the same name
16540 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
16542         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
16543           drawing disabled text. Instead using the ColorGrayText color
16545 2006-01-04  Jackson Harper  <jackson@ximian.com>
16547         * TreeNode.cs: redraw the node when its image index is changed.
16549 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
16551         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
16552           time I checked there are no others like it.
16554 2006-01-04  Jackson Harper  <jackson@ximian.com>
16556         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
16557         this gives the behavoir I was looking for.
16558         * Control.cs: Special case Invoking EventHandlers, this matches MS
16559         and fixes part of bug #76326.
16561 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
16563         * ThemeClearlooks.cs, FileDialog.cs:
16564           - Reflect the latest Theme class changes
16565           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
16566             with DateTime
16567             
16568 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
16570         * Theme.cs: Cache UI resource images and resize them if needed
16572 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
16574         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
16575           is called. This fixes the crash in Nexxia when setting the font
16576           attributes in the chat. [However, RTF needs a look-over to make sure
16577           that all SelectionXXX methods handle the special case that selection
16578           is empty and therefore the change must be applied to all text starting
16579           at the cursor/selection start]
16581 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
16583         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
16584           XplatUIOSX.cs: Added SendMessage and PostMessage methods
16585         * X11Keyboard.cs: Switched to new way of calling PostMessage
16587 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
16589         * Theme.cs: Added theme interface for images to allow the theme to
16590           control what images are used for things like FileDialog, MessageBox
16591           icons, etc.
16592         * MessageBox.cs: Now uses the new Theme icon/image interfaces
16594 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
16596         * FileDialog.cs:
16597           - Removed some dead code
16598           - Opening a recently used file does work now
16599           - Small UI enhancements
16600           - Refactoring
16602 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
16604         * FileDialog.cs: Forgot too add __MonoCS__
16606 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
16608         * FileDialog.cs: We are able to read recently used files now let's
16609           go on and write them.
16611 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
16613         * FileDialog.cs: Breathe some life into "last open"/"recently used"
16614           button
16615         * MimeIcon.cs: Do a check for the top level media type also
16617 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
16619         * ThemeClearlooks.cs:
16620           - Added CPDrawStringDisabled
16621           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
16622             some chars if the text doesn't fit into text_rect
16623           - DrawListViewItem: If View = View.LargeIcon center the image;
16624             rewrote the drawing of ListViewItem.Text if View = 
16625             View.LargeIcon
16627 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
16629         * MimeIcon.cs: Use default KDE icon theme if there is no
16630           "48x48" directory for the current icon theme, fixes #77114
16631         * Mime.cs: Disable not working and actually not used code. 
16632         * ThemeWin32Classic.cs:
16633           - Replace "new SolidBrush" in GetControlBackBrush and
16634             GetControlForeBrush with ResPool.GetSolidBrush
16635           - Changed DrawListViewItem from private to protected virtual
16636         * FileDialog.cs:
16637           - Added form.MaximizeBox = true
16638           - Don't throw an exception if there is a broken symbolic link
16640 2005-12-23  Jackson Harper  <jackson@ximian.com>
16642         * TabControl.cs: Give the panels focus, keyboard navigation is
16643         fixed so this works correctly now.
16644         - We need these key events also.
16645         * ToolBar.cs: Remove some of the poor mans double buffering.
16646         
16647 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
16649         * ComboBox.cs: The internal TextBox now returns the focus.
16651 2005-12-23  Jackson Harper  <jackson@ximian.com>
16653         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
16655 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
16657         * Control.cs: Removed debug code
16658         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
16659           implicit children
16661 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
16663         * Control.cs: When creating the control, update the Z-order after
16664           all it's children are created, too. (Fixes nexxia not showing
16665           picturebox bug)
16667 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
16669         * Control.cs: Do not update the anchoring distances if layout is
16670           suspended, instead do it once layout is resumed
16672 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
16674         * Control.cs: 
16675           - After many hours of debugging, for both Jackson and
16676             myself, it turns out that it helps to set the parent of a control
16677             if you want to actually see it onscreen. In the spirit of that
16678             discovery, we're now setting the parent of the control and
16679             it's children when the control's handle is created. This fix
16680             will make Lutz Roeder's Reflector run happily. 
16681           - now just creating the handle instead of the whole control when
16682             getting a graphics context for the control.
16684 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
16686         * ScrollableControl.cs: When calculating the canvas, don't consider
16687           the scrollbar widths. Instead, predict if horizontal scrollbar
16688           will affect canvas when deciding on vertical display and vice versa.
16690 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
16692         * RichTextBox.cs: Set default RTF font for documents that don't
16693           have a font table (Fixes #77076)
16695 2005-12-22  Jackson Harper  <jackson@ximian.com>
16697         * TextBoxBase.cs: It's difficult to do, but you can have an empty
16698         clipboard. This prevents a NullRef in that case.
16699         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
16700         clipboard. PRIMARY is for the currently selected text only. (We
16701         should implement PRIMARY at some point.
16703 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
16705         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
16706           a Unicode function with a structure that was defined in Ansi way.
16707           This fixes #76942.
16709 2005-12-21  Jackson Harper  <jackson@ximian.com>
16711         * StatusBar.cs: Statusbar handles its fore/back colours on it's
16712         on. Because thats how it rolls. (and this avoids it using ambient
16713         colours).
16714         * ThemeWin32Classic.cs: Use the proper back color for filling.
16715         * Menu.cs: Use the system menu bar color for drawing menu
16716         bars. Using the window back color will bring ambient colours into
16717         the picture.
16719 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
16721         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
16722           Bitmaps were created and not disposed.
16724 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
16726         * Control.cs (CreateControl): Don't do anything if the control is
16727           already created, otherwise we'd fire the OnCreated event more than
16728           once
16730 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
16732         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
16733           will always match. Instead return -1. Fixes #76464.
16735 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
16737         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
16738           neither the beginning nor the end of the line (Fixes bug #76479)
16740 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
16742         * Control.cs:
16743           - ControlNativeWindow.ControlFromHandle(): Now handling situation
16744             where handle is invalid
16745           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
16746             instead of slower linear search
16747         * NativeWindow.cs: Don't remove the window from the hashtable until
16748           after the driver has destroyed it (since the driver might use
16749           Control.FromHandle to lookup the control object
16750         * Hwnd.cs: Added DestroyPending property to track if a window is 
16751           already destroyed as far as the driver is concerned and only hasn't
16752           yet notified the control
16753         * XplatUIX11.cs:
16754           - Activate(): Check if the window is still valid before using the 
16755             handle
16756           - Implemented DestroyChildWindow() method to mark child windows as
16757             destroyed when a window is destroyed. This prevents situations 
16758             where we might call an X method based on queued events for a
16759             window that already has been destroyed but we haven't yet pulled
16760             the destroy method from the queue.
16761           - Added a call to the new DestroyChildWindow() method to the drivers
16762             DestroyWindow code. Also now marking the destroyed window itself
16763             as pending
16765 2005-12-20  Jackson Harper  <jackson@ximian.com>
16767         * StatusBar.cs:
16768         * StatusBarPanel.cs: Don't calculate panel sizes on draw
16769         anymore. Just do them when needed, also track the rects of panels
16770         so that we can optimize refreshing more in the future.
16772 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
16774         * ColorDialog.cs: Fixed focus drawing in small color controls
16776 2005-12-19  Jackson Harper  <jackson@ximian.com>
16778         * InternalWindowManager.cs:
16779         * MdiWindowManager.cs: Cleanup some coordinate system changes so
16780         moving windows works properly.
16782 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
16784         * Control.cs: 
16785           - Removed call to InitLayout() from SetBoundsCore(); doc says
16786             it's only called when a control is added to a container
16787           - Split InitLayout logic, moved to separate UpdateDistances() method
16788             since we need to perform those calculations more often than just
16789             when adding the control to a container. (Needed to fix #77022)
16790           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
16791           - Reduced the OnBindingContextChanged events count, don't send them
16792             unless the control is created, we still aren't totally matching
16793             MS, but I can't quite figure out some of their rules
16795 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
16797         * ThemeClearlooks.cs: Corrected distance between ProgressBar
16798           stripes
16800 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
16802         * ThemeClearlooks.cs:
16803           - Updated ProgressBar drawing
16804           - Corrected drawing of ScrollBars and scroll buttons
16805           - Some temporary fixes for minor pixel artefacts
16807 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
16809         * Control.cs:
16810           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
16811             cause events to be sent in the same order as MS does.
16812           - Added ChangeParent() method to trigger various OnXXXChanged events
16813             that need to be fired when a parent changes (This is a reworking
16814             of the patch from r54254, with the X11 errors fixed)
16815           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
16816             since on MS we get OnLayoutChanged events when calling Clear()
16817           - Changed Enabled property to consider parent state as well, if a
16818             parent is not enabled, the control will not be either
16819           - Changed Parent property to simply call Controls.Add() since that
16820             now does all the work required, this way we avoid code duplication
16821           - Threw in a few OnBindingsContextChanged calls to try and match
16822             when MS sends them. We seem to send a few too many, though.
16823           - Added call to CreateControl when adding the control to a parent.
16824             We were never calling CreateControl. Still needs some work, in
16825             some places we treat HandleCreated and ControlCreated as equal, 
16826             which is wrong
16827           - Removed obsolete commented out code from UpdateZOrder()
16829 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
16831         * ThemeClearlooks.cs: Updated TrackBar drawing.
16833 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
16835         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
16837 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
16839         * FileDialog.cs: Add the Help button and the open readonly
16840           checkbox only if needed
16842 2005-12-16  Jackson Harper  <jackson@ximian.com>
16844         * Control.cs: Make sure we have an active menu before trying to
16845         process commands on it. Prevents menu-less forms from crashing
16846         when Alt is pressed.
16847         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
16848         Dieter Bremes.
16849         * RichTextBox.cs: Expand statement to help out gmcs and fix the
16850         2.0 build.
16852 2005-12-16  Jackson Harper  <jackson@ximian.com>
16854         * InternalWindowManager.cs: Don't translate tool windows screen
16855         coordinates. This fixes windows 'bouncing' around when being moved.
16857 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
16859         * TextBoxBase.cs:
16860           - MaxLength now treats 2^31-1 equal to unlimited length (this is
16861             not quite MS compatible, MS uses that number only for single line
16862             and 2^32-1 for multi-line, but I figure it won't hurt keeping
16863             the limit at 2GB)
16864           - Now enforcing the MaxLength limit when entering characters
16865           - Added argument to internal Paste() method to track if it's called
16866             from programatically or via keyboard, since keyboard driven pastes
16867             need to enforce max-length
16868           - Added logic to Paste to only paste as many chars as MaxLength 
16869             allows
16870         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
16871         * TextControl.cs:
16872           - Added Length property to return number of characters in document
16873           - Added private CharCount property which only tracks actual chars
16874             in the document (no linefeeds) and fires event when CharCount
16875             changes
16876           - Added tracking of character count to all methods that alter it
16877           - Added LengthChanged event to allow applications to subscribe
16878             to any changes to the document
16880 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
16882         * TextBox.cs: 
16883           - Removed local password_char field (moved to TextBoxBase)
16884           - Now setting the document's password var when password is
16885             set
16886         * TextBoxBase.cs:
16887           - Added password_char field (needed here so MultiLine can
16888             access it)
16889           - Added logic to MultiLine property setter to set the document's
16890             variable when password display is allowed
16891           - Removed debug code and made some debug code conditional
16892         * TextControl.cs:
16893           - Added RecalculatePasswordLine() method to handle special password
16894             char only lines
16895           - Added PasswordChar property, also added related tracking vars
16896           - Draw() method now uses local text var for grabbing text to draw,
16897             this var is set to line.text unless we're doing password display,
16898             then it is set to the pre-generated all-password-chars line
16899           - Added calling RecalculatePasswordLine() method for password lines
16901 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
16903         * Hwnd.cs: 
16904           - Added Reparented property to allow tracking of Window Manager
16905             reparenting actions (which affect X/Y calculations of toplevel 
16906             windows)
16907           - Made ToString() print window handles in hex
16908         * XplatUIX11.cs:
16909           - AddConfigureNotify(): Now uses reparented state off Hwnd to
16910             determine if X/Y needs offsetting
16911           - AddConfigureNotify(): Fixed offset calculations
16912           - Now adds ReparentNotify messages into the queue
16913           - Now processes ReparentNotify messages and causes a 
16914             WM_WINDOWPOSCHANGED message to be sent upstream if a window
16915             is reparented (as most likely it's X/Y coordinates are changed
16916             due to that)
16918 2005-12-14  Jackson Harper  <jackson@ximian.com>
16920         * XplatUIX11.cs: Tool windows still need to respek focus.
16922 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
16924         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
16925           have a working release
16927 2005-12-13  Jackson Harper  <jackson@ximian.com>
16929         * Form.cs: Update styles after setting the border style regardless
16930         of whether or not the window is using a window manager.
16932 2005-12-13  Jackson Harper  <jackson@ximian.com>
16934         * Form.cs: We now hook into an internal window manager instead of just an
16935         MDI subsystem, this is so we can have properly behaving tool windows.
16936         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
16937         * InternalWindowManager.cs: New internal class that acts as a
16938         window manager for tool windows and as a base for mdi windows.
16939         * MdiWindowManager.cs: New class that acts as a window manager for
16940         mdi windows.
16942 2005-12-12  Jackson Harper  <jackson@ximian.com>
16944         * Control.cs: Updates so we match behavoir for for implicit
16945         controls. Fixes explosions in MDI.
16947 2005-12-12  Jackson Harper  <jackson@ximian.com>
16949         * Control.cs: Implement Invalidate (Region).
16951 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
16953         * Control.cs: 
16954           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
16955             the same events as MS does. MS fires events for each property 
16956             except, for unknown reasons, Cursor, when the control is reparented. 
16957             I can't seem to totally match add/remove since MS also fires some 
16958             VisibleChanged events, which makes no sense. Consolidated the
16959             parenting code into a separate method so it can be called from
16960             both Add and Remove. set_Parent no longer needs any special logic
16961             as it calls the parent's add method which implicitly fires
16962             all events
16963           - Removed some obsolete code and debug output
16964           - Enabled state is inherited from parents, if this is enabled
16966 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
16968         * Form.cs: Removed commented out code
16970 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
16972         * Control.cs:
16973           - Added internal version of Invoke, with additional argument 
16974             indicating if we're calling it from a Dispose() handler. That
16975             way we can avoid BeginInvoke throwing an exception if we're
16976             calling for an already destroyed window.
16977           - Added a dispose argument to BeginInvokeInternal, and made the
16978             check if a valid window handle chain exists conditional on
16979             it not being a dispose call
16980           - Removed code in DestroyHandle to destroy our children. Since we
16981             now handle the WM_DESTROY message we will catch all our children
16982             being destroyed.
16983           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
16984         * Form.cs:
16985           - Added a field to track the application context of the form.
16986           - No need to set closing variable as response to WM_CLOSE, instead
16987             we destroy the window. We also call PostQuitMessage if the form
16988             has an application context (which makes it the main app form,
16989             which, when closed terminates the app)
16990         * XplatUI.cs:
16991           - Dropped Exit() method, it's naming was confusing
16992           - Added PostQuitMessage() which causes GetMessage to return false
16993             once the message queue is empty
16994         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
16995           PostQuitMessage()
16996         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
16997           no longer a valid XplatUI method, but left it in since it's used
16998           internally. Added empty PostQuitMessage() method.
16999         * MenuAPI.cs: Replaced call to Exit() with call to
17000           PostQuitMessage, even though this is probably no longer needed.
17001         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
17002         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
17003         * Application.cs:
17004           - Replaced call to XplatUI.Exit() with PostQuitMessage()
17005           - Removed old debug code that would call XplatUI for exception
17006             display, enabled standard exception handling (Still not enabled
17007             though, until NativeWindow's ExternalExceptionHandler define
17008             is removed
17009         * NativeWindow.cs:
17010           - Added internal method to allow control to update NativeWindow
17011             after a window has been destroyed
17012           - Added handling of already destroyed windows when calling i
17013             DestroyWindow
17014           - Added removal of handle from list on ReleaseHandle
17015         * XplatUIX11.cs:
17016           - Dropped GetMessageResult var and related code
17017           - Added PostQuitState to field to track if PostQuitMessage has been
17018             called
17019           - Dropped Exit() method
17020           - Added PostQuitMessage() method
17021           - GetMessage now will return false if PostQuitState is set and no
17022             more messages are in the queue.
17023           - Expose handler will no longer generate WM_PAINT messages if we are
17024             in PostQuitState since it's very likely any windows have already
17025             been destroyed, and since Hwnd won't get updated until we have
17026             processed the DestroyNotify we'd be causing X errors.
17027         
17028 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
17030         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
17031           Thanks to Mike for pointing out the err of my ways.
17033 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
17035         * Control.cs(PreProcessMessage): Moved menu handling back, but
17036           after all other key handling, to match MS (who handles Menu in
17037           DefWndProc)
17038         * Menu.cs (WndProc): Removed my brainfart
17040 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
17042         * Control.cs(PreProcessMessage): Removed special menu handling 
17043         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
17045 2005-12-07  Mike Kestner  <mkestner@novell.com>
17047         * Control.cs : special case SYSKEYUP so that we can adjust keynav
17048         state according in tracker.
17049         * Menu.cs : promote tracker field to base class and provide a tracker
17050         lookup capability.  Add/Remove shortcuts dynamically if the top menu
17051         has a tracker. Unparent items that are removed from the collection.
17052         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
17053         * Theme*.cs: add always_show_hotkeys field to support configurability
17054         of mnemonic display.  win32 doesn't show mnemonics until Alt is
17055         pressed.
17057 2005-12-07  Jackson Harper  <jackson@ximian.com>
17059         * MdiChildContext.cs: Use Control.ResetCursor.
17060         * Control.cs: ResetCursor needs to set the property so that the
17061         correct XplatUI call gets made.
17063 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
17065         * Control.cs: More fixes to make our key events match MS. We
17066           were not setting the modifier state on KeyData, and we were
17067           not generating any events when Alt was pressed with a key
17068           since handling of WM_SYSxxx was missing for the OnKey methods.
17070 2005-12-07  Jackson Harper  <jackson@ximian.com>
17072         * MdiChildContext.cs: reenable the sizing code.
17073         - When the mouse leaves a window reset its cursor.
17075 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
17077         * ThemeClearlooks.cs: Reflect latest Hwnd changes
17079 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
17081         * Hwnd.cs: Now using the theme 3d bordersize to calculate
17082           widths of Fixed3D borders
17084 2005-12-07  Jackson Harper  <jackson@ximian.com>
17086         * MdiClient.cs: Fix warnings. Earn Mike's love.
17088 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
17090         * ThemeClearlooks.cs:
17091           - Adjusted mouse over button color
17092           - Added first parts of CheckBox drawing
17093           - Added correct color for selected text background
17094           - Fixed ComboBox drawing
17095           - Added CPDrawBorder3D and CPDrawBorder
17097 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
17099         * XplatUIX11.cs: Added call to XBell for AudibleAlert
17101 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
17103         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
17104           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
17105           alert users via sound. We could add an enum arg with different
17106           types of alerts in the future
17108 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
17110         * Control.cs: Fix behaviour problems pointed out by Mike
17112 2005-12-05  Mike Kestner  <mkestner@novell.com>
17114         * StatusBarPanel.cs: add Invalidate method and hook it into all the
17115         prop setters.  Calls parent.Refresh for now, but could be maybe be
17116         optimized with an internal method on StatusBar at some point.
17117         [Fixes #76513]
17119 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
17121         * RichTextBox.cs: Implemented get_SelectionColor
17123 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
17125         * ThemeClearlooks.cs:
17126           - Removed dead code
17127           - Draw black button border only if button is Form.AcceptButton
17128           - Draw correct button color for pressed RadioButton if the mouse 
17129             has entered the button
17130           - Updated ProgressBar drawing!
17131           - Updated CPDrawSizeGrip drawing
17132           - Updated StatusBarPanel drawing
17134 2005-12-05  Mike Kestner  <mkestner@novell.com>
17136         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
17137         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
17139 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
17141         * ThemeClearlooks.cs: Initial check-in, activate with
17142           export MONO_THEME=clearlooks
17143         * ThemeEngine.cs: Added ThemeClearlooks
17145 2005-12-03  Mike Kestner  <mkestner@novell.com>
17147         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
17148         [Fixes #76897]
17150 2005-12-02  Jackson Harper  <jackson@ximian.com>
17152         * Form.cs: If the child form has no menu the default main menu is
17153         used as the active menu.
17155 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
17157         * ListBox.cs: Check if any items exist before trying to resolve 
17158           coordinates into items
17160 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
17162         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
17163           as the second color for the background hatch
17165 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
17167         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
17168         * RichTextBox.cs: FormatText position arguments are 1-based, now making
17169           sure that what we pass to FormatText is always 1-based. Fixes #76885
17171 2005-11-29  Miguel de Icaza  <miguel@novell.com>
17173         * NumericUpDown.cs (EndInit): When we are done initializing,
17174         reflect any updates on the UI.
17176 2005-12-02  Jackson Harper  <jackson@ximian.com>
17178         * ImplicitHScrollBar.cs:
17179         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
17180         their container controls.
17181         * TreeView.cs: Use the new implicit scrollbars.
17183 2005-12-02  Jackson Harper  <jackson@ximian.com>
17185         * TreeView.cs: Make top_node internal so the TreeNodeCollections
17186         can play with it.
17187         * TreeNodeCollection.cs: If we remove the topnode we need to
17188         update topnode to the next node in line.
17189         - When clearing nodes go through the same process as removing
17190         them, so they get depareneted and checked if they are top node.
17192 2005-12-01  Jackson Harper  <jackson@ximian.com>
17194         * TreeView.cs: When imagelists are used the image area is
17195         selectable as well as the text.
17196         - If there are no selected nodes select the first one.
17197         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
17198         so don't do it more then we need to.
17200 2005-12-01  Jackson Harper  <jackson@ximian.com>
17202         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
17203         that arrows can be scaled.
17205 2005-12-01  Jackson Harper  <jackson@ximian.com>
17207         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
17208         fail. Patch by Dieter Bremes
17210 2005-11-30  Jackson Harper  <jackson@ximian.com>
17212         * Form.cs: Property is 2.0 only
17213         * PrintDialog.cs: Signature fix.
17215 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
17217         * TextControl.cs: 
17218           - No longer artificially moves text 2 pixels down (now that we have
17219             borders this is no longer needed)
17220           - Added calcs for left, hanging and right indent
17222 2005-11-23  Mike Kestner  <mkestner@novell.com>
17224         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
17226 2005-11-30  Jackson Harper  <jackson@ximian.com>
17228         * MdiChildContext.cs: Set the cloned menus forms, as these don't
17229         get cloned as part of CloneMenu ().
17230         * Menu.cs: Make sure the parent of the items get set correctly
17231         when they are added.  And the owners are notified of the changes.
17232         * Form.cs: Create an ActiveMenu property, so that when MDI is used
17233         we can change the menu being displayed/handled by the form without
17234         changing the menu assosciated with the form.
17235         - Don't let Mdi children draw/handle menus.
17236         
17237 2005-11-30  Jackson Harper  <jackson@ximian.com>
17239         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
17240         a MenuChanged event. Just to make the API a little more
17241         consistent.
17242         * MainMenu.cs:
17243         * MenuItem.cs: Use the new OnMenuChanged
17244         * MdiChildContext.cs: Handle menu merging.
17245         * Form.cs: Implement MergedMenu.
17246         
17247 2005-11-30  Jackson Harper  <jackson@ximian.com>
17249         * Menu.cs: We were misusing Add. Add goes behind the specified
17250         index according to the docs, and does not replace the specified
17251         index. So I added an Insert method.
17253 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
17255         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
17256           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
17257           is for Jackson
17258         * RichTextBox.cs: Added calls to base for DnD events
17260 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
17262         * TextControl.cs:
17263           - Fixed drag-selection related crash; style fixes
17264           - Implemented undo class
17265             o Implemented method to capture document state for specified
17266               range in document tree
17267             o Implemented method to restore captured document state
17268             o Implemented cursor tracking
17269             o Implemented basic undo stack
17270           - Added undo cursor tracking to methods altering cursor location
17271           - Added undo tracking to selection deletion (still missing
17272             other text-altering hookups)
17273         * RichTextBox.cs:
17274           - Added SelectionLength property
17275           - Implemented CanPaste()
17276           - Implemented Paste()
17277           - Added missing protected methods
17278           - Fixed RTF->Document conversion; now uses font index 0 and color 
17279             index 0 as the default font for the parsed text
17280           - Fixed RTF<->Document font size translation
17281           - Fixed RTF generation, now properly handles cross-tag boundaries
17282             for single line selection
17283           - No longer always appends blank line to generated RTF
17284           - Removed TODOs
17285           - Added missing attributes
17286           - Hooked up undo-related methods
17287         * TextBoxBase.cs:
17288           - Implemented Copy()
17289           - Implemented Paste()
17290           - Implemented Cut()
17291           - Fixed caret mis-behaviour on backspace across line-boundaries
17293 2005-11-29  Jackson Harper  <jackson@ximian.com>
17295         * MdiClient.cs: Add a method for activating mdi children. Very
17296         basic right now. I imagine someday it might need more girth.
17297         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
17298         children windows names are added to the menu item.
17299         * ThemeWin32Classic.cs: Draw the arrow if the item is an
17300         mdilist. This happens regardless of whether or not there are any
17301         mdi windows to see in the list, and according to my tests happens
17302         before the items are even added. Also happens if there isn't even
17303         an mdi client to get windows from.
17305 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
17307         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
17308         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
17310 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
17312         * DataGridTableStyle.cs:
17313           - Create always the styles for the missing columns even if they are
17314             provided by the user (not default table style)
17315         * DataGrid.cs:
17316           - Fixes bug 76770
17317           - Fixes SetDataBinding (always re-attach source)
17318           - Fixes SetNewDataSource (only clear styles if they are not for 
17319             this source)
17320          -  Expands OnTableStylesCollectionChanged to handle style refresh 
17321             and remove properly
17323 2005-11-29  Jackson Harper  <jackson@ximian.com>
17325         * FileDialog.cs: Implement missing bits, remove some dead
17326         code.
17327         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
17328         creation of the panel so that the options set on the dialog are
17329         seen when the panel is created.
17330         * TreeView.cs: raise a click when items are clicked.
17331         
17332 2005-11-29  Jackson Harper  <jackson@ximian.com>
17334         * MdiClient.cs: Pass some signature methods through to base.
17336 2005-11-28  Jackson Harper  <jackson@ximian.com>
17338         * ListView.cs: Raise the click event when items are clicked.
17340 2005-11-28  Jackson Harper  <jackson@ximian.com>
17342         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
17343         a nullref.
17345 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
17347         * ThemeNice.cs: - Removed 1 pixel bitmaps
17348           - Use SmoothingMode.AntiAlias where it makes sense
17349             (ScrollButton arrow for example)
17350           - Enhanced Button focus drawing
17351           - Fixed ComboBox drawing (no artefacts anymore, focus
17352             rectangle is back again, reduced size of ComboButton, etc.)
17353           - Fixed RadioButton focus drawing for Appearence.Button
17354           - Slight ScrollButton redesign
17355           - Some LinearGradientBrush size fixes
17356           - GroupBoxes have now rounded edges
17357           - Fixed StatusBar drawing
17359 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
17361         * ThemeNice.cs: - Remove dead code
17362           - use correct background colors for menus, etc.
17363           - Fake pixel drawing with 1 pixel bitmaps
17365 2005-11-24  Jackson Harper  <jackson@ximian.com>
17367         * MdiClient.cs: Size the scrollbars when resizing the window.
17368         - Resize the maximized windows when the client is resized
17369         * Form.cs: Make the child context available
17370         
17371 2005-11-23  Jackson Harper  <jackson@ximian.com>
17373         * MdiChildContext.cs: Don't size windows if they are maximized.
17375 2005-11-23  Mike Kestner  <mkestner@novell.com>
17377         * ContextMenu.cs: use MenuTracker.
17378         * Control.cs: remove menu handle usage.
17379         * Form.cs: remove menu handle usage.
17380         * Hwnd.cs: remove menu handle usage.
17381         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
17382         motion and clicks to the new Tracker handlers.
17383         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
17384         and handle usage.
17385         * MenuAPI.cs: refactored to combine popup and menubar event handling.
17386         Killed the MENU and MENUITEM data types and associated collections
17387         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
17388         MenuTracker class that exposes the leftovers from the old MenuAPI
17389         static methods. Restructured Capture handling so that only one grab is
17390         done for the entire menu hierarchy instead of handing off grabs to
17391         submenus. Tracker now has an invisible control to Capture when active.
17392         * MenuItem.cs: add sizing accessors, kill Create
17393         and handle usage.
17394         * Theme.cs: remove menu handle and MENU(ITEM) usage.
17395         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
17396         MENU(ITEM). remove menu handle usage, use Menu directly.
17397         * XplatUIDriver.cs: remove menu handle usage.
17398         * XplatUIOSX.cs: remove menu handle usage.
17399         * XplatUIWin32.cs: remove menu handle usage.
17400         * XplatUIX11.cs: remove menu handle usage.
17402 2005-11-22  Jackson Harper  <jackson@ximian.com>
17404         * Hwnd.cs: Don't compute the menu size for
17405         DefaultClientRectangle.
17406         - Reenable menu sizes being computed for GetClienRectangle.
17407         * Form.cs: Remove comment of trechery
17408         
17409 2005-11-22  Jackson Harper  <jackson@ximian.com>
17411         * Hwnd.cs: The adjustments for the menu bar are made when it is
17412         attached to the form.
17414 2005-11-19  Jackson Harper  <jackson@ximian.com>
17416         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
17417         (just like on windows).
17419 2005-11-19  Jackson Harper  <jackson@ximian.com>
17421         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
17422         use real buttons anymore because they are in non client area. The
17423         one TODO here is that I need to somehow invalidate a section of
17424         the non client area.
17426 2005-11-18  Jackson Harper  <jackson@ximian.com>
17428         * Control.cs: Put the enum check back in now that MDI doesnt have
17429         to use this to set border styles.
17430         * Form.cs: Only set mdi child windows borders if the handle has
17431         been created.
17432         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
17433         this directly on to the driver.
17434         - Get the move start position before adjusting for the titlebar
17435         height, this fixes the windows "skipping" when they are first
17436         moved.
17438 2005-11-18  Jackson Harper  <jackson@ximian.com>
17440         * XplatUIX11.cs: Just compute the mdi borders separately as they
17441         don't totally match up with normal form borders.
17443 2005-11-18  Jackson Harper  <jackson@ximian.com>
17445         * Control.cs: Set WS_ styles for borders, so that the driver does
17446         not have to retrieve the control instance to figure out what kind
17447         of borders it should have.
17448         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
17449         driver can know its an mdi child easily.
17450         * XplatUIX11.cs: Get the border styles and whether the window is
17451         MDI from the Styles and ExStyles params instead of having to get a
17452         control. This prevents a chicken and egg problem.       
17454 2005-11-18  Jackson Harper  <jackson@ximian.com>
17456         * MdiClient.cs: Fix typo so scrollbars show up correctly.
17458 2005-11-18  Jackson Harper  <jackson@ximian.com>
17460         * MdiClient.cs: Calculate when to add and remove scrollbars
17461         correctly.
17462         * MdiChildContext.cs: Adjust the y position to take the titlebar
17463         into account.
17464         - No height for FormBorderStyle.None
17466 2005-11-18  Jackson Harper  <jackson@ximian.com>
17468         * Control.cs: Allow non enum values to be used for
17469         InternalBorderStyle.  MDI does this to set a special border style.
17470         - New utility methods for converting points to/from client coords
17471         - Add the newly created control to the Controls collection before
17472         updating its style. This way UpdateStyle can walk the control
17473         heirarchy to find the control if needed.
17474         so I don't need to create a new Point object all the time.
17475         * Form.cs: Let MDI windows handle their border styles.
17476         - Set styles on MDI windows so the correct title style is derived.
17477         * MdiChildContext.cs: Move all the painting and window handling
17478         into the non client area.
17479         - Use correct sizing and put correct buttons on frames based on
17480         the FormBorderStyle.
17481         - Notify the mdi client about scrolling
17482         - Need to handle the buttons ourselves now, because they are all
17483         in non client areas and we can't add controls there.
17484         * MdiClient.cs: Halfway to scrolling, this implementation is
17485         somewhat broken though, we need to check to make sure other
17486         windows aren't causing scrolling before removing the bars. Also
17487         the bars need to be drawn on top, maybe I can switch implicit
17488         controls to be on top.
17489         * Hwnd.cs: caption_height and tool_caption_height are now
17490         properties of an hwnd, this way they can be set by the driver
17491         based on the type of window they are.  In X11 the window manager
17492         handles the decorations so caption_height is zero unless its an
17493         MDI window.
17494         - Add 3 pixel borders for MDI windows (0xFFFF).
17495         - Get rid of some code duplication, have DefaultClientRectanle
17496         just call GetClientRectangle.
17497         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
17498         Hwnd now.
17499         - Set border styles differently for mdi windows.
17500         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
17501         Hwnd now.
17502         
17503 2005-11-15  Mike Kestner  <mkestner@novell.com>
17505         * Menu.cs: when adding an item to the collection, if item is already 
17506         parented, remove it from the parent.
17508 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
17510         * X11DesktopColors.cs: Added KDE support
17512 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
17514         * XplatUIWin32.cs: 
17515           - Clipboard methods now can translate Rtf format
17516           - No longer removes clipboard contents whenever a new format is added
17517             to allow placing multiple formats on the clipboard
17518         * Clipboard.cs: Clipboard now supports getting a IDataObject and
17519           will place all formats contained in it onto the clipboard. Also
17520           now cleans the clipboard before placing a new object onto it
17521         * RichTextBox.cs:
17522           - Implemented set_Rtf
17523           - Implemented set_SelectedRtf
17524           - Created InsertRTFFromStream() method to allow single code base
17525             for all properties and methods that insert RTF into document
17526           - Removed debug output
17527         * TextControl.cs:
17528           - Fixed Delete(int) to fix up line numbers
17529           - Fixed ReplaceSelection to combine start and end line
17530           - Fixed serious DeleteChars bug that would leave the document tree
17531             broken
17532           - Improved DumpTree with several logic checks to detect broken
17533             document trees
17534           - Removed debug lines
17535           - Fixed Caret.WordForward/WordBack moving code, now always also 
17536             updates caret.tag (fixes crash when word-selecting across tag
17537             boundaries via keyboard)
17538           - Added Insert() method for inserting multiline text into documents
17539           - Fixed DeleteChars() calculation errors that would cause a broken
17540             tag chain with multiple tag lines
17541           - DeleteChars() no longer crashes on multi-tag lines if not all tags
17542           - Split() no longer moves caret if split is at caret location
17543           - ReplaceSelection() now updates the cursor and re-displays it
17544           - ReplaceSelection() now uses new Insert() method to avoid code
17545             duplication
17546           - FormatText() can now handle formatting partial lines
17547         * TextBoxBase.cs:
17548           - Append now uses new TextControl.Insert() method (this avoids 
17549             duplicate code)
17550           - Implemented Ctrl-X (Cut) (
17551           - Implemented Ctrl-C (Copy)
17552           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
17553             regeneration when pasting text; roundtripping Copy&Paste within
17554             edit control still fails due to some calculation bugs in GenerateRTF)
17555           - The Delete key will now remove the current selection if it is visible
17556         * TextBox.cs: Removed debug lines
17557         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
17558           driver to be initialized and can't therefore be done via a static ctor)
17560 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
17562         * TextControl.cs: Added backend code for finding char arrays and strings
17563         * TextBoxBase.cs:
17564           - Added mouse wheel scroll support
17565           - Added support for VScroll and HScroll events
17566         * RichTextBox.cs:
17567           - Implemented all seven Find() variants
17568           - Implemented GetCharFromPosition()
17569           - Implemented GetCharIndexFromPosition()
17570           - Implemented GetLineFromIndex()
17571           - Implemented GetPositionFromCharIndex();
17572           - Implemented SaveFile for PlainText and UnicodeText
17573           - Fixed set_Font, now setting a new font applies that font to
17574             the whole document
17575           - Implemented generic Document to RTF converter
17576           - Implemented SaveFile for RichText format (still missing unicode
17577             conversion for non-ansi chars)
17578           - Implemented get_Rtf
17579           - Implemented get_SelectedRtf
17581 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
17583         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
17584           to allow any captures to be released before triggering OnClick. This
17585           way a click handler may capture the mouse without interference.
17586         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
17587           This way we send them even though X may not allow a grab (if the window
17588           isn't visible, for example)
17590 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
17592         * DataGridViewRowEventArgs.cs: DataGridView implementation
17593         * DataGridViewElement.cs: DataGridView implementation
17594         * DataGridViewComboBoxCell.cs: DataGridView implementation
17595         * DataGridViewDataErrorContexts.cs: DataGridView implementation
17596         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
17597         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
17598         * ImageLayout.cs: DataGridView implementation
17599         * DataGridViewComboBoxColumn.cs: DataGridView implementation
17600         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
17601         * DataGridViewSelectionMode.cs: DataGridView implementation
17602         * IDataGridViewEditingControl.cs: DataGridView implementation
17603         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
17604         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
17605         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
17606         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
17607         * DataGridViewColumnSortMode.cs: DataGridView implementation
17608         * DataGridView.cs: DataGridView implementation
17609         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
17610         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
17611         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
17612         * Padding.cs: DataGridView implementation
17613         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
17614         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
17615         * DataGridViewRowEventHandler.cs: DataGridView implementation
17616         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
17617         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
17618         * DataGridViewButtonCell.cs: DataGridView implementation
17619         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
17620         * DataGridViewEditMode.cs: DataGridView implementation
17621         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
17622         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
17623         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
17624         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
17625         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
17626         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
17627         * DataGridViewCellEventHandler.cs: DataGridView implementation
17628         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
17629         * DataGridViewCellStyleConverter.cs: DataGridView implementation
17630         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
17631         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
17632         * DataGridViewColumnEventArgs.cs: DataGridView implementation
17633         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
17634         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
17635         * QuestionEventArgs.cs: DataGridView implementation
17636         * IDataGridViewEditingCell.cs: DataGridView implementation
17637         * DataGridViewTriState.cs: DataGridView implementation
17638         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
17639         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
17640         * DataGridViewColumnCollection.cs: DataGridView implementation
17641         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
17642         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
17643         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
17644         * DataGridViewColumn.cs: DataGridView implementation
17645         * DataGridViewCellBorderStyle.cs: DataGridView implementation
17646         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
17647         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
17648         * DataGridViewRow.cs: DataGridView implementation
17649         * DataGridViewImageCellLayout.cs: DataGridView implementation
17650         * DataGridViewImageCell.cs: DataGridView implementation
17651         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
17652         * DataGridViewCheckBoxCell.cs: DataGridView implementation
17653         * DataGridViewHeaderCell.cs: DataGridView implementation
17654         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
17655         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
17656         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
17657         * DataGridViewTextBoxColumn.cs: DataGridView implementation
17658         * QuestionEventHandler.cs: DataGridView implementation
17659         * DataGridViewCellStyleScopes.cs: DataGridView implementation
17660         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
17661         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
17662         * DataGridViewCell.cs: DataGridView implementation
17663         * DataGridViewCellEventArgs.cs: DataGridView implementation
17664         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
17665         * DataGridViewCellStyle.cs: DataGridView implementation
17666         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
17667         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
17668         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
17669         * TextFormatFlags.cs: DataGridView implementation
17670         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
17671         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
17672         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
17673         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
17674         * DataGridViewButtonColumn.cs: DataGridView implementation
17675         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
17676         * HandledMouseEventArgs.cs: DataGridView implementation
17677         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
17678         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
17679         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
17680         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
17681         * DataGridViewRowCollection.cs: DataGridView implementation
17682         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
17683         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
17684         * DataGridViewHitTestType.cs: DataGridView implementation
17685         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
17686         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
17687         * DataGridViewColumnEventHandler.cs: DataGridView implementation
17688         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
17689         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
17690         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
17691         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
17692         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
17693         * DataGridViewContentAlignment.cs: DataGridView implementation
17694         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
17695         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
17696         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
17697         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
17698         * DataGridViewPaintParts.cs: DataGridView implementation
17699         * DataGridViewCellCollection.cs: DataGridView implementation
17700         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
17701         * DataGridViewImageColumn.cs: DataGridView implementation
17702         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
17703         * DataGridViewElementStates.cs: DataGridView implementation
17704         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
17705         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
17706         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
17707         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
17708         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
17709         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
17710         * DataGridViewRowHeaderCell.cs: DataGridView implementation
17711         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
17712         * DataGridViewTextBoxCell.cs: DataGridView implementation
17713         * DataGridViewBand.cs: DataGridView implementation
17714         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
17715         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
17716         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
17717         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
17718         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
17719         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
17720         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
17721         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
17722         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
17723         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
17724         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
17726 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
17728         * ThemeWin32Classic.cs: 
17729           - Draw the outside focus rectangle around buttons
17730           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
17731             doesn't use end caps for every dash of a line anymore. This
17732             workaround ignores the forecolor.
17734 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
17736         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
17737           endian safe.
17739 2005-11-07  Jackson Harper  <jackson@ximian.com>
17741         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
17743 2005-11-07  Jackson Harper  <jackson@ximian.com>
17745         * ScrollableControl.cs: Calculate the maximum and change vars
17746         (more) correctly so that scrollbars appear as a sensible size.
17748 2005-11-04  Jackson Harper  <jackson@ximian.com>
17750         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
17751         collection.
17752         * TreeView.cs: When the tree is sorted null out the top_node so
17753         that it is recalculated.
17754         - Use dotted lines instead of dashed lines to match MS better.
17756 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
17758         * ListView.cs: 
17759           - Implements key search for items. Useful when browsing files with FileDialog
17760           - When changing view mode or when clear the items reset scrollbar positions
17762 2005-11-04  Jackson Harper  <jackson@ximian.com>
17764         * CurrencyManager.cs: Implement the MetaDataChanged event, the
17765         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
17766         as to what the method may do as there is no real way of creating a
17767         derived CurrencyManager and calling the method. 
17769 2005-11-03  Jackson Harper  <jackson@ximian.com>
17771         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
17772         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
17773         method which seems to just be used internally to refresh the tabs.
17775 2005-11-03  Jackson Harper  <jackson@ximian.com>
17777         * TabControl.cs: Implement the remove method. Fix some broken
17778         comments.
17780 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
17782         * DateTimePicker.cs:
17783           - Added missing DateTimePickerAccessibleObject class
17784           - Added missing events
17785           - Added OnFontChanged method
17786         * Form.cs: Added missing attributes
17787         * TreeView.cs: Added missing attributes
17789 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
17791         * GridItemCollection.cs: Fix signatures
17793 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
17795         * XplatUI.cs: Updated build rev/date
17796         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
17797           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
17798         * Application.cs: Trigger context-specific ExitThread events
17800 2005-11-03  Jackson Harper  <jackson@ximian.com>
17802         * Menu.cs:
17803         * MainMenu.cs:
17804         * GridTableStylesCollection.cs:
17805         * Timer.cs:
17806         * TabPage.cs:
17807         * HelpProvider.cs:
17808         * StatusBar.cs:
17809         * MonthCalendar.cs: Signature fixes
17811 2005-11-03  Jackson Harper  <jackson@ximian.com>
17813         * TreeNodeCollection.cs: Remove should not be virtual.
17814         * TreeView.cs: Implement the last of the missing methods.
17816 2005-11-03  Jackson Harper  <jackson@ximian.com>
17818         * TreeNodeConverter.cs: Implement to get off my class-status back.
17820 2005-11-03  Jackson Harper  <jackson@ximian.com>
17822         * TreeView.cs: Hookup the bits for drag and drop.
17823         * TreeNode.cs: Don't cache the tree_view or index anymore, now
17824         that nodes can be moved from tree to tree easily this just causes
17825         all sorts of problems.
17826         * TreeNodeCollection: Don't need to give treenodes an index and
17827         treeview anymore when they are added, these are computed on the
17828         fly. Also make sure to remove a node before its added.
17830 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
17832         * TextControl.cs:
17833           - Added CaretSelection enum
17834           - Added comparison methods to Marker struct, makes selection code
17835             more readable
17836           - Added SelectionStart and SelectionEnd as 'moveable' location for
17837             the CaretDirection enum and handler
17838           - Added selection_prev variable to track optimized invalidation for
17839             word and line selection
17840           - Added SelectionVisible property (returns true if there is a valid 
17841             selection)
17842           - Switched CaretHasFocus to only display the caret if there is no
17843             visible selection
17844           - Avoiding StringBuilder.ToString to retrieve a single char, instead
17845             using the direct character index; should be much faster
17846           - Added various conditional debug statements
17847           - Fixed invalidation calculation for selection ranges
17848           - Added ExpandSelection() method to support word and line selection
17849           - Switched SetSelectionToCaret to use new Marker compare overloads
17850           - Added central IsWordSeparator() method to determine word 
17851             separators/whitespace and FindWordSeparator() to streamline common
17852             usage of IsWordSeparator()
17853         * TextBoxBase.cs:
17854           - Removed unneeded grabbed variable, it was just mirroring
17855             Control.Capture
17856           - No longer firing OnTextChanged event when Text setter is called,
17857             since the base will fire the event for us
17858           - Added handling of Ctrl-Up/Down selection
17859           - Added handling of Shift-Cursorkey selection
17860           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
17861             words
17862           - Added handling of Shift and Ctrl-Shift-Home/End selection
17863           - Removed some debug output
17864           - Added handling for single/double/tripple-click to place caret/
17865             select word/select line respectively (Fixes bug #76031)
17866           - Added support for drag expansion of word/line selection
17867         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
17868           current selection
17870 2005-11-02  Jackson Harper  <jackson@ximian.com>
17872         * X11Dnd.cs: If the drag is going to and from a MWF window just
17873         copy the data instead of sending it out through the X Selection
17874         mechanism.
17876 2005-11-02  Jackson Harper  <jackson@ximian.com>
17878         * X11Dnd.cs:
17879         * XplatUIX11.cs: When in a drag we don't want motion notify
17880         messages to get passed on to the other controls. This prevents
17881         mouse move messages from showing up in the drag source.
17883 2005-11-02  Jackson Harper  <jackson@ximian.com>
17885         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
17886         the correct button is release to end a drag.
17887         * XplatUIX11.cs: Make the button state internal so the drag system
17888         can access it.  Dragging needs to know about all button releases,
17889         not just left button.
17891 2005-11-02  Miguel de Icaza  <miguel@novell.com>
17893         * Form.cs (Icon): If the icon is null, reset the icon to the
17894         default value. 
17896         * Cursor.cs: When writing the AND-mask bitmap do not include the
17897         number of colors, but hardcode those to two (black and white),
17898         fixes the loading of color cursors (Paint Dot Net).
17900         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
17901         turn off autoscaling.
17903         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
17905 2005-11-02  Jackson Harper  <jackson@ximian.com>
17907         * X11Dnd.cs: Make sure to send a status message if the pointer
17908         enters a control that can not accept a drop, otherwise the cursor
17909         isn't updated correctly. Also tried to compress the lines of code
17910         a bit.
17912 2005-11-02  Jackson Harper  <jackson@ximian.com>
17914         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
17915         set actions correctly.  This isn't perfect as XDND and win32 have
17916         some differences on how you allow actions. I'll clear this up by
17917         adding a path for drag from MWF to MWF windows.
17918         * XplatUIX11.cs: Hook into the dnd system.
17920 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
17922         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
17923         previously shown but they are no longer need it. Very obvious when 
17924         browsing files with FileDialog.
17926 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
17928         * Control.cs: We always need to call OnPaintBackground. We pretty much
17929           ignore AllPaintingInWmPaint and always do the painting there, whether 
17930           it's set or not, since we always ignore the WM_ERASEBKGND message 
17931           (which we don't generate on X11). This fixes #76616.
17932         * Panel.cs: Removed unneeded background painting. This happens properly
17933           in Control.cs already
17935 2005-10-31  Mike Kestner  <mkestner@novell.com>
17937         * Menu.cs: Add items to collection before setting their index.
17938         * MenuItem.cs : add range checking with ArgumentException like MS.
17939         [Fixes #76510]
17941 2005-10-31  Jackson Harper  <jackson@ximian.com>
17943         * ListBox.cs: Invalidate if the area is visible at all not just
17944         contained in the visible rect. Fixes unselection of semi visible
17945         items.
17947 2005-10-31  Jackson Harper  <jackson@ximian.com>
17949         * Control.cs: Consistently name the dnd methods. Make them
17950         internal so we can override them to match some MS behavoir
17951         internally.
17952         * Win32DnD.cs: Use the new consistent names.
17954 2005-10-31  Jackson Harper  <jackson@ximian.com>
17956         * TreeView.cs: Don't draw the selected node when we lose focus.
17958 2005-10-31  Jackson Harper  <jackson@ximian.com>
17960         * X11Dnd.cs: We still need to reset the state even though a full
17961         reset isn't being done, otherwise status's still get sent all over
17962         the place.
17964 2005-10-31  Jackson Harper  <jackson@ximian.com>
17966         * Control.cs: Make the dnd_aware flag internal so the dnd
17967         subsystem can check it. Catch exceptions thrown in dnd handlers to
17968         match MS behavoir.
17969         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
17970         * X11Dnd.cs: Handle null data in the converters. Set the XDND
17971         version when sending a XdndEnter. Use the control/hwnd dnd_aware
17972         flags to reduce the number of dnd enters/status's sent.
17974 2005-10-31  Jackson Harper  <jackson@ximian.com>
17976         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
17978 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
17980         * PictureBox.cs: Fixes 76512
17982 2005-10-28  Jackson Harper  <jackson@ximian.com>
17984         * X11Dnd.cs: Early implementation to support winforms being a drag
17985         source for data on X11. Also restructured the converters so they
17986         can go both ways now.
17987         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
17988         
17989 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
17991         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
17992           clipboard requests
17994 2005-10-27  Jackson Harper  <jackson@ximian.com>
17996         * TreeNode.cs: Implement serialization so my DnD examples will work.
17998 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
18000         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
18001           TreeView.cs: Don't dispose objects that are not owned.
18002           
18003 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
18005         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
18006           should retrieve the current cursor and report that, but XplatUI
18007           doesn't (yet) have an interface for that (and I'm not sure I even
18008           can, on X11)
18009         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
18010           until any message loop processing is done (and the WM_SETCURSOR
18011           replaces the cursor to the proper one)
18012         * XplatUIX11.cs: 
18013           - Fixed override behaviour, we can't set the cursor globally on X11, 
18014             just for our windows.
18015           - Invalidating the System.Drawing X11 display handle when we are
18016             shutting down
18017         * Control.cs: Fix to make csc happy
18019 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
18021         * TextBoxBase.cs: 
18022           - get_Text: Add last line (without trailing newline) to returned
18023             value (Fixes 76212)
18024           - get_TextLength: Count last line in returned length
18025           - ToString: Call Text property instead of duplicating code
18027 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
18029         * ImageList.cs: Dispose ImageAttributes objects.
18031 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
18033         * ImageList.cs: Use attribute constructors with less arguments where
18034           possible.
18036 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
18038         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
18039           Use typeof instead of strings when assembly is referenced. Added
18040           some more comments.
18042 2005-10-21  Jackson Harper  <jackson@ximian.com>
18044         * ListView.cs: Raise a double click event. Also tried to somewhat
18045         fix when the selectedindexchanged event is raised. Its still
18046         broken though.
18048 2005-10-21  Jackson Harper  <jackson@ximian.com>
18050         * TreeView.cs: New method to invalidate the plus minus area of a
18051         node without invalidating the whole node (maybe this can be used
18052         in some more places).
18053         * TreeNodeCollection.cs: When adding to an empty node we need to
18054         invalidate its plus minus area so the little block shows up.
18055         
18056 2005-10-21  Jackson Harper  <jackson@ximian.com>
18058         * TreeView.cs: Make sure that when we invalidate a node the bounds
18059         are big enough to cover the selected box and the focus
18060         rectangle. Use a different colour for the lines connecting nodes
18061         so they show up with all themes.
18063 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
18065         * NativeWindow.cs: Don't call anything that could call into the driver,
18066           we might be on a different thread.
18068 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
18070         * Control.cs(Dispose): Since Dispose might run on a different thread,
18071           make sure that we call methods that could call into the driver via
18072           invoke, to avoid thread issues
18074 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
18076         * XplatUI.cs: Removed finalizer
18077         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
18078           not allowing to be called on the finalizer thread.
18080 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
18082         * ImageList.cs:
18083           - Reverted r51889 and r51891.
18084           - Added ImageListItem class that stores unmodified image items and image
18085             properties required to create list images until handle is created.
18086           - Added AddItem and moved image creation logic to AddItemInternal.
18087           - Added CreateHandle method that creates images based on unmodified items.
18088           - Added DestroyHandle that changes state to store unmodified items.
18089           - Add and AddStrip methods no more create handle.
18090           - ReduceColorDepth has no return value.
18091           - Dispose destroys handle.
18092           - Modified other methods to reflect the above changes.
18093           - Implemented key support.
18094           - Added profile 2.0 members and attributes.
18095           - Added private Reset and ShouldSerialize methods that provide the same
18096             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
18097             them as they are private.
18098           - Added some more comments about implementation details.
18100 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
18102         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
18104 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
18106         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
18108 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
18110         * DataGridDrawingLogic.cs: Fixes column hit calcultation
18111         * DataGridColumnStyle.cs: Remove debug message
18113 2005-10-20  Jackson Harper  <jackson@ximian.com>
18115         * TreeView.cs: We can always get input keys regardless of whether
18116         or not editing is enabled. They are used for navigation.
18118 2005-10-20  Jackson Harper  <jackson@ximian.com>
18120         * TreeNode.cs: Use the viewport rect for determining if a node
18121         needs to be moved for visibility. Don't use Begin/End edit. This
18122         calls a full refresh when its done.
18123         * TreeView.cs: New SetBottom works correctly.  Make the viewport
18124         rect property internal so the treenodes can see it. When clicking
18125         on a node we need to ensure that its visible because it might just
18126         be partly visible when clicked.
18128 2005-10-20  Jackson Harper  <jackson@ximian.com>
18130         * TreeNodeCollection.cs: Remove debug code.
18132 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
18134         * Datagrid.cs: Implements column sorting in Datagrid
18135         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
18137 2005-10-20  Jackson Harper  <jackson@ximian.com>
18139         * TreeNodeCollection.cs: Remove items properly. Update the correct
18140         area after removing them.
18142 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
18144         * Datagrid.cs: Should not call base.OnPaintBackground
18146 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
18148         * XplatUIX11.cs (GetMessage):
18149           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
18150             window instead of client window
18151           - Now properly calculates NC_xBUTTONUP message coordinates
18152           - ScreenToMenu now properly calculates it's coordinates of whole 
18153             window, since menus are in the whole window, not in the client
18154             window
18155           - Added WholeToScreen coordinate translation method
18157 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
18159         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
18160           want to return a message, loop back to the beginning of the function
18161           and grab the next real message to process instead.
18163 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
18165         * Splitter.cs: Properly set limits if no filler control is used
18167 2005-10-19  Jackson Harper  <jackson@ximian.com>
18169         * ColorDialog.cs: Don't show the help button if it is not enabled
18170         instead of disabling it (this is what MS does). Don't create the
18171         panel until the dialog is run, otherwise the vars (such as
18172         ShowHelp) are not set yet.
18174 2005-10-19  Jackson Harper  <jackson@ximian.com>
18176         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
18177         are reduced when adding nodes.
18178         * TreeNode.cs:
18179         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
18180         tree.
18181         
18182 2005-10-19  Jackson Harper  <jackson@ximian.com>
18184         * FolderBrowserDialog.cs: End editing our treeview so the window
18185         actually gets refreshed.
18187 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
18189         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
18190           Obsoleted handling of WM_ERASEBKGND, now always draws our background
18191           inside of WM_PAINT
18193 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
18195         * MenuAPI.cs: Returns after Hidding window
18196         * XplatUIX11.cs: Added TODO found while debugging menu issues
18198 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
18200         * XplatUIX11.cs: Do not re-map the whole window when it's size
18201           becomes non-zero unless it's supposed to be actually visible
18203 2005-10-18  Jackson Harper  <jackson@ximian.com>
18205         * TreeView.cs: We don't need to keep a count anymore.
18206         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
18207         use the Grow method.
18209 2005-10-18  Jackson Harper  <jackson@ximian.com>
18211         * TreeNodeCollection.cs: Insert is not supported on arrays, so
18212         implement it manually here.
18214 2005-10-18  Jackson Harper  <jackson@ximian.com>
18216         * ImageList.cs: Dont kill the list when the colour depth is
18217         changed, just change the colour depth of all the images.
18218         - Same goes for setting the image size. Just resize them all
18219         instead of killing the list softly.
18221 2005-10-18  Jackson Harper  <jackson@ximian.com>
18223         * Control.cs: Don't invalidate empty rectangles.
18225 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
18227         * ListViewItem.cs:
18228           - Adds checked item to the Checked/Item lists (where empty before)
18229           - Do not add items to the Selected lists if they are already present
18230         * ListView.cs:
18231           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
18232           - When deleting items make sure that we delete them for the Selected
18233           and Checked list also.
18235 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
18237         * Label.cs: Dispose objects no longer used
18238         * ThemeWin32Classic.cs: Dispose objects no longer used
18240 2005-10-18  Jackson Harper  <jackson@ximian.com>
18242         * TabControl.cs: Don't refresh the whole control when the tabs are
18243         scrolled, we just need to refresh the tab area.
18245 2005-10-17  Jackson Harper  <jackson@ximian.com>
18247         * XplatUIX11.cs: Compress code a little bit. Only calculate the
18248         after handle when we need it.
18250 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
18252         * Control.cs: When the parent size changes, recalculate anchor 
18253           positions. Partial fix for #76462
18255 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
18257         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
18258           drawn. Fixes #76462
18260 2005-10-17  Jackson Harper  <jackson@ximian.com>
18262         * MonthCalendar.cs: Don't create the numeric up down until our
18263         handle is created. Otherwise our handle is created in the
18264         constructor and we don't know if we are a WS_CHILD or WS_POPUP
18265         yet.
18267 2005-10-17  Jackson Harper  <jackson@ximian.com>
18269         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
18270         correctly.
18272 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
18273         * TreeNode.cs : small logical fix (was using local var instead of field)
18274         
18275 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
18277         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
18279 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
18281         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
18283 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
18285         * Control.cs: 
18286           - Re-implemented anchoring code. My first version was really broken.
18287             This fixes bug #76033. Unlike the previous implementation we will
18288             no longer have round errors since all numbers are calculated from
18289             scratch every time. Removed various anchor-related obsolete vars.
18290           - InitLayout no longer causes layout event firing and layout to be 
18291             performed
18293 2005-10-16  Jackson Harper  <jackson@ximian.com>
18295         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
18296         which was broken).
18298 2005-10-16  Jackson Harper  <jackson@ximian.com>
18300         * TabControl.cs: Remove debug code.
18302 2005-10-16  Jackson Harper  <jackson@ximian.com>
18304         * XEventQueue.cs: Increase the default queue size (very simple
18305         apps needed to grow the queue).
18306         * Hwnd.cs: No finalizer so we don't need to suppress
18307         finalization. Compute the invalid area manually so a new rectangle
18308         does not newto be created.
18309         * ScrollableControl.cs: Don't set any params (otherwise visibility
18310         isn't set correctly).
18311         * MdiChildContext.cs: New constructor takes the mdi parent so it
18312         doesn't have to be computed and avoids a crash on windows. Draw
18313         the window icon properly, and allow the text to be seen.
18314         * Form.cs: Use new MdiChildContext constructor. Make sure the
18315         child context isn't null in wndproc.
18316         * TabControl.cs: Don't set focus, this is muddling keyboard
18317         behavoir. Expand the tab rows when a window size increase will
18318         allow extra tabs to be seen. Don't allow tabs smaller than the
18319         width of a window to be scrolled out of view.
18320         * TreeNode.cs:
18321         * TreeView.cs: Use measure string to calculate a nodes width, the
18322         width is cached and only updated when the text or the font is
18323         changed. Don't check for expand/collapse clicks on the first level
18324         nodes if root lines are disabled.
18325         
18326 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
18328         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
18330 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
18332         * DataGridBoolColumn.cs: fixes warning
18334 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
18336         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
18337         to match more to match more precisely the MS Net behavior
18339 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
18341         * Hwnd.cs: Added field to track if window is mapped
18342         * XplatUIX11.cs: 
18343           - Unmap windows if they become 0-size, re-map when 
18344             they are >0 again; fixes #76035
18345           - Re-set our error handler after initializing X11Desktop
18346             to override any error handlers Gtk or whatever was called
18347             may have set.
18349 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
18351         * CheckedListBox.cs: Removed unused vars
18352         * ListView.cs: Fixed signatures
18353         * RichTextBox.cs: Removed unused vars
18354         * TextBoxBase.cs: Removed unused vars
18355         * XplatUIWin32.cs: Removed unused vars
18356         * XplatUIX11.cs: Removed unused vars
18357         * XplatUI.cs: Updated version and date to latest published
18359 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
18361         * Cursor.cs: Added private .ctor to work around a bug in
18362           resourceset (Thanks to Geoff Norton for the help on this)
18363         * SplitterEventArgs.cs: Made fields accessible so we don't
18364           waste boatloads of objects and can reuse the same one
18365           in Splitter
18366         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
18367           any captions and borders when generating screen coordinates
18368         * Splitter.cs: Reimplemented control, now fully complete, uses
18369           rubberband drawing, supports and obeys all properties, has
18370           proper cursors
18372 2005-10-13  Miguel de Icaza  <miguel@novell.com>
18374         * Form.cs (Form): Setup default values for autoscale and
18375         autoscale_base_size;  Make these instance variables, not static
18376         variables. 
18378         (OnLoad): on the first load, adjust the size of the form.
18380 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
18382         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
18383           width argument to DrawReversibleRectangle()
18384         * XplatUIWin32.cs, XplatUIX11.cs: 
18385           - Implemented width for DrawReversibleRectangle()
18386           - Added logic to DrawReversibleRectangle that recognizes a zero
18387             width or height and only draws a line in that situation
18388         
18389 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
18391         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
18392         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
18393         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
18394           method (it uses our FosterParent window to get a graphics context)
18396 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
18398         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
18399           and SetWindowBackground methods
18400         * Control.cs:
18401           - Setting proper ControlStyles
18402           - We no longer call XplatUI.SetWindowBackground and XplatUI.
18403             EraseWindowBackground, instead we draw the window background
18404             ourselves in PaintControlBackground. This behaviour is
18405             required to match MS, where, when OnPaintBackground is not
18406             called, the background is not drawn.
18407           - Removed unneeded Refresh() in set_Text
18408         * Hwnd.cs: Dropped the ErasePending support. No longer needed
18409         * XplatUIX11.cs:
18410           - Created DeriveStyles method to translate from CreateParams to
18411             FormBorderStyle and TitleStyle, also handles BorderStyle (which
18412             matches FormBorderStyle enum values)
18413           - Consolidated SetHwndStyles and CalculateWindowRect border/title
18414             style calculations into single DeriveStyles method
18415           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
18416             from redrawing the whole window on any resize or expose.
18417           - Fixed CreateWindow usage of SetWindowValuemask. Before not
18418             all styles were applied to our whole/client window appropriately
18419           - Removed EraseWindowBackground() and SetWindowBackground() methods
18420           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
18421             no longer clear/redraw the background through X
18422           - Removed handling of erase_pending bit, we have no use for it (or
18423             so it seems)
18424         * XplatUIOSX.cs:
18425           - Removed generation and handling of WM_ERASEBKGND message
18426           - Removed EraseWindowBackground() and SetWindowBackground() methods
18427           - Removed handling of hwnd.ErasePending flag
18428         * XplatUIWin32.cs:
18429           - Removed EraseWindowBackground() and SetWindowBackground() methods
18430           - We no longer call EraseWindowBackground on PaintEventStart, we 
18431             ignore the fErase flag, erasing is handled in Control in the
18432             background handler
18433         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
18434           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
18435           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
18436           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
18437           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
18438           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
18439           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
18441 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
18443         * PropertyGrids.cs: Get sub properties
18444         * PropertyGridView.cs: Fix drawing code
18446 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
18448         * ListBox.cs: Fixes 76383
18450 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
18452         * DataGridTextBoxColumn.cs: Sets location and size before attachment
18453         * ThemeWin32Classic.cs: Fixes border drawing and calculations
18454         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
18457 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
18459         * ComboBox.cs: Fixes border drawing
18461 2005-10-10  Miguel de Icaza  <miguel@novell.com>
18463         * MimeIcon.cs: Ignore errors if the file can not be read.
18465 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
18467         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
18468          - Fixed border calculations
18469          - Fixed horizontal scrolling in single column listboxes
18470          - Fixed drawing issues
18472 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
18474         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
18475           FormBorderStyle enum
18476         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
18477           code to determine FormBorderStyles from CreateParams
18478         * Form.cs:
18479           - Fixed bug where we'd set the wrong window styles if we were
18480             not creating an MDI window
18481           - Added call to XplatUI.SetBorderStyle when form borders are set
18482         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
18483         * Hwnd.cs:
18484           - Removed obsolete edge style
18485           - Switched from BorderStyle to FormBorderStyle
18486         
18487 2005-10-10  Jackson Harper  <jackson@ximian.com>
18489         * Form.cs: Use the property to get the window handle instead of
18490         accessing it directly. Prevents a null reference exception.
18492 2005-10-10  Jackson Harper  <jackson@ximian.com>
18494         * TreeView.cs: Don't adjust the rect given to DrawString now that
18495         our libgdiplus draws correctly.
18497 2005-10-08  Jackson Harper  <jackson@ximian.com>
18499         * TreeView.cs: Don't try to find the clicked on node if there are
18500         no nodes in the tree.
18502 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
18504         * RichTextBox.cs:
18506           restore
18508 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
18510         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
18511           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
18512           ErrorProvider.cs:
18513           Use ResPool for brushes and dispose System.Drawing objects that
18514           are not used anymore.
18516 2005-10-07  Jackson Harper  <jackson@ximian.com>
18518         * MdiChildContext.cs: Use the new borders instead of drawing them
18519         ourselves.
18521 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
18523         * Calling UpdateBounds after changing the window's BorderStyle 
18524         since the style can change the ClientSize
18526 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
18528         * Control.cs: Made PaintControlBackground virtual
18529         * Panel.cs: Overriding PaintControlBackground instead of using paint
18530           event; paint event method was interfering with 'real' users of the
18531           event.
18533 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
18535         * ThemeWin32Classic.cs: remove border drawing since it is handled
18536         by the base control class now and was causing double border drawing.
18538 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
18540         * Panel.cs: Redraw our background on paint. Not a pretty solution,
18541           but it does seem to match MS behaviour. This fixes bug #75324
18543 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
18545         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
18546           somewhat hackish looking
18548 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
18550         * TextBoxBase.cs:
18551           - We now accept Enter even if AcceptEnter is false, if the containing
18552             form does not have an AcceptButton configured (fixes bug #76355)
18553           - Calculations are now fixed to no longer use Width/Height, but
18554             ClientSize.Width/Height, since we now support borders (this was
18555             a result of fixing borders and therefore bug #76166)
18556           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
18557             true (fixes bug #76354)
18558         
18559 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
18561         * Control.cs: 
18562           - Defaulting BorderStyle and setting it in XplatUI when our window 
18563             is created
18564           - Added enum check to InternalBorderStyle setter
18565         * XplatUIX11.cs: 
18566           - Added drawing of window borders
18567           - Now properly calculates WM decorations offset for toplevel 
18568             windows (fixes bug #74763)
18569         * XplatUIWin32.cs: 
18570           - Implemented BorderStyles for windows (we're letting win32 draw 
18571             the border for us)
18572           - Fixed the signature for SetWindowLong
18573         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
18574           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
18575           setting borders
18576         * UpDownBase.cs: Remove drawing of borders, this is handled by
18577           the driver, outside the client area
18578         * ListView.cs: Removed bogus border calculations. The control should
18579           be oblivious to borders, since those are not part of the client
18580           area. 
18581         * X11DesktopColors.cs: Commented out (currently) unneeded variables
18582         * ThemeWin32Classic.cs: Removed border calculations from ListView 
18583           drawing code
18585 2005-10-06  Jackson Harper  <jackson@ximian.com>
18587         * MdiChildContext.cs: Clear out the old virtual position remove
18588         all the unneeded calls to CreateGraphics.
18590 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
18592         * TextControl.cs: Use proper color for highlighted text; fixes #76350
18594 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
18596         * Form.cs: 
18597           - Added loading and setting of our new default icon
18598           - Only set icon if window is already created
18600 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
18602         * Label.cs:
18603           - Do not explicitly set the foreground and background colors, to
18604             allow inheriting from parents (fixes #76302)
18605           - Use Control's InternalBorderStyle property to deal with borders
18607 2005-10-06  Jackson Harper  <jackson@ximian.com>
18609         * MdiChildContext.cs: Use the new xplatui function to draw a
18610         reversible rect.
18612 2005-10-06  Jackson Harper  <jackson@ximian.com>
18614         * Form.cs: Add the parent before creating the child context cause
18615         we need the parent when setting up the child.
18617 2005-10-06  Jackson Harper  <jackson@ximian.com>
18619         * FolderBrowserDialog.cs: redo the tree population code so a
18620         second thread isn't used. Should be a lot faster and more stable
18621         now.
18623 2005-10-05  Jackson Harper  <jackson@ximian.com>
18625         * TreeView.cs: There are no expand/collapse boxes if the node has
18626         no children.
18628 2005-10-05  Jackson Harper  <jackson@ximian.com>
18630         * X11DesktopColors.cs: Get menu colours for the gtk theme.
18632 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
18634         * FileDialog.cs: Fix InitialDirectory
18636 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
18638         * ComboBox.cs:
18639                 - Fixes changing between styles
18640                 - Fixes simple mode
18641                 - Fixes last item crashing when navigating with keyboard
18643 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
18645         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
18647 2005-10-05  Jackson Harper  <jackson@ximian.com>
18649         * TreeView.cs: If updating the root node do a full refresh.
18650         * TreeNode.cs: The root node should be expanded by default. Also
18651         added a utility prop to tell if we are the root node.
18652         * TreeNodeCollection.cs: Only refresh if the node we are being
18653         added to is expanded. Also added a comment on a potential
18654         optimization.
18655         
18656 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
18658         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
18659           in dispose method. Fixes #76330
18661 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
18663         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
18665                 - Implements vertical and horizontal scrolling using XplatUI
18666                 - Fixes keyboard navagation
18667                 - Fixes EnsureVisible
18668                 - Drawing fixes
18669                 - Handles and draws focus properly
18672 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
18674         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
18675           Create handle. NET_2_0: Destroy handle when value is null.
18677 2005-10-03  Jackson Harper  <jackson@ximian.com>
18679         * ScrollBar.cs: My last scrollbar patch was broken. This is a
18680         revert and a new patch to prevent the thumb from refreshing so
18681         much.
18683 2005-10-02  Jackson Harper  <jackson@ximian.com>
18685         * ScrollBar.cs: Don't update position if it hasn't actually
18686         changed. This occurs when you hold down the increment/decrement
18687         buttons and the thumb gets to the max/min.
18689 2005-10-01  Jackson Harper  <jackson@ximian.com>
18691         * Form.cs:
18692         * MdiChildContext.cs:
18693         * MdiClient.cs: Implement ActiveMdiChild in Form.
18695 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
18697         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
18699 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
18701         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
18702           be found
18704 2005-09-30  Jackson Harper  <jackson@ximian.com>
18706         * ListBox.cs: Don't do a full refresh unless some data has
18707         actually changed.
18709 2005-09-30  Jackson Harper  <jackson@ximian.com>
18711         * TreeView.cs: Make sure that the checkboxes size is factored in
18712         even when not visible.
18714 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
18716         * FileDialog.cs: Fix Jordi's build break
18718 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
18720         * FileDialog.cs: 
18721                 - Use standard the Windows colours for the combobox as espected
18722                 - Dispose objects that use resouces when no longer need them
18724 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
18726         * X11DesktopColors.cs: Initial incomplete implementation
18727         * XplatUIX11.cs: Added call to initialize X11DesktopColors
18729 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
18731         * Theme.cs: 
18732           - Switched Theme color names to match the names defined in 
18733             System.Drawing.KnownColors. Life's hard enough, no need to make 
18734             it harder.
18735           - Added setters to all theme color properties so themes can set
18736             their color schemes. The setters also propagate the color changes
18737             to System.Drawing.KnownColors via reflection
18738         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
18739           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
18740           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
18741           use the new, more logical theme color names
18742         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
18743           post-NT colors
18744         * ThemeWin32Classic.cs:
18745           - Removed code to set the old classic Windows colors. Instead it
18746             now relies on the colors returned by System.Drawing.KnownColors
18747             which will be either modern static colors (Unix) or colors
18748             read from the user's configuration (Win32)
18749           - Updated to use the new, more logical theme color names
18750           - Switched DataGrid drawing code to use only Theme colors instead of
18751             a mix of System.Drawing.KnownColors and Theme colors
18752           - DrawFrameControl(): Removed code that fills the button area, the
18753             fill would overwrite any previous fill done by a control. This
18754             fixes bug #75338 
18755           - Added DrawReversibleRectangle() stub
18756         * ScrollableControl.cs: Set visible state to false when scrollbars
18757           are removed (pdn fix)
18758         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
18759           DrawReversibleRectangle() method to allow drawing primitive 
18760           'rubber bands'
18761         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
18763 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
18765         * ImageList.cs: Add(Icon): Create handle.
18767 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
18769         * ListView.cs:
18770         * ThemeWin32Classic.cs:
18771                 - Fixes detail mode
18772                 - Sets clippings
18773                 - Issues with drawing
18775 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
18777         * ImageList.cs: Moved RecreateHandle back to ImageList as event
18778           source has to be the ImageList.
18780 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
18782         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
18784 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
18786         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
18788 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
18790         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
18792 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
18793         * GridItem.cs: Fixed TODOs
18794         * GridItemCollection.cs: Added ICollection interface
18796 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
18798         * ImageList.cs: Resize icons when needed.
18800 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
18802         * ListViewItem.cs
18803                 - Fixes GetBounds and returns on screen rects
18804         * ListView.cs:
18805                 - Fixes vertical and horzintal scrolling of items
18806         * ThemeWin32Classic.cs:
18807                 - Fixes drawing
18808                 
18809 2005-09-29  Raja R Harinath  <harinath@gmail.com>
18811         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
18813 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
18815         * ImageList.cs: Added comments about handle creation. Moved Handle,
18816           HandleCreated and OnRecreateHandle implementations to ImageCollection.
18817           Handle is created in Add methods.
18819 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
18820          
18821         * DataGridDrawingLogic.cs: 
18822                 - Takes rows into account on Colum calculations
18823                 - Returns the column when clickig
18824         * DataGrid.cs:
18825                 - Fixes default HitTestInfo values
18826                 - Fixes HitTestInfo.ToString
18827                 - Fixes ResetBackColor          
18828         
18829 2005-09-28  Jackson Harper  <jackson@ximian.com>
18831         * MdiChildContext.cs: Obey rules for fixed sized windows (no
18832         sizing or cursor changes). Also added some temp code to draw the
18833         titlebars text (Makes dev a little easier).
18835 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
18837         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
18839 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
18840          
18841         * ListBox.cs: Fixes bug 76253
18843 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
18845         * ImageList.cs: Added comments about the current implementation. Added
18846           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
18847           Format32bppArgb to preserve transparency and can use Graphics.FromImage
18848           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
18849           with Bitmap.LockBits for better performance. Revised the whole file to
18850           match MS.NET behaviour and provide better performance. Non-public
18851           interface members are calling public members even when they throw
18852           NotSupportedException for better maintainability. Moved ColorDepth,
18853           ImageSize, ImageStream and TransparentColor implementations to
18854           ImageCollection for better performance as these properties are not used
18855           by ImageList.
18856         * ImageListStreamer.cs: Added a new internal constructor that takes an
18857           ImageList.ImageCollection and serializes Images based on
18858           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
18859           match ImageList property name.
18861 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
18863         * ListBox.cs: Fixes IndexFromPoint for last item
18865 2005-09-27  Jackson Harper  <jackson@ximian.com>
18867         * Form.cs: Set the position of new mdi children correctly.
18869 2005-09-27  Jackson Harper  <jackson@ximian.com>
18871         * MdiClient.cs: New mdi children need to be added to the back of
18872         the controls collection so the zorder is set correctly. Also add a
18873         count of all the child windows that have been created.
18875 2005-09-27  Jackson Harper  <jackson@ximian.com>
18877         * Form.cs (CreateParams): Setup MDI forms correctly.
18879 2005-09-27  Jackson Harper  <jackson@ximian.com>
18881         * MdiChildContext.cs:
18882         * MonthCalendar.cs:
18883         * UpDownBase.cs:
18884         * ListBox.cs:
18885         * ListView.cs:
18886         * TextBoxBase.cs:
18887         * TreeView.cs:
18888         * ScrollableControl.cs:
18889         * ComboBox.cs: Add implicit controls using the new implict control
18890         functionality in ControlCollection. Also try to block multiple
18891         control add in a suspend/resume layout to save some cycles.
18892         
18893 2005-09-27  Jackson Harper  <jackson@ximian.com>
18895         * Control.cs: Add functionality to the controls collection to add
18896         'implicit controls' these are controls that are created by the
18897         containing control but should not be exposed to the user. Such as
18898         scrollbars in the treeview.
18899         * Form.cs: The list var of the ControlsCollection is no longer
18900         available because of the potential of implicit controls getting
18901         ignored by someone accessing the list directly.
18903 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
18905         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
18906           loose it's parent. (Fixed bug introduced in r49103 when we added
18907           setting the child parent to null on Remove)
18909 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
18911         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
18912         * Splitter.cs: Added missing attributes for BorderStyle property.
18913         * TextBoxBase.cs: Marked Calculate* methods internal.
18914         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
18915         MS.NET.
18917 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
18918          
18919         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
18921 2005-09-25  Jackson Harper  <jackson@ximian.com>
18923         * TreeView.cs: Update the node bounds correctly regardless of
18924         whether the node is visible.
18926 2005-09-25  Jackson Harper  <jackson@ximian.com>
18928         * ImageList.cs: Don't dispose the image after it is added to the
18929         image list. Only reformat images that need to be resized.
18931 2005-09-25  Jackson Harper  <jackson@ximian.com>
18933         * ImageList.cs: Don't set the format when changing the image.
18935 2005-09-25  Jackson Harper  <jackson@ximian.com>
18937         * TreeView.cs: We can't just assume the node has a font. Use the
18938         treeviews font if no node font is available.
18940 2005-09-25  Jackson Harper  <jackson@ximian.com>
18942         * TreeView.cs: Allow the scrollbars to be reset with negative
18943         values.
18944         - Don't add scrollbars to negative sized windows.
18946 2005-09-23  Jackson Harper  <jackson@ximian.com>
18948         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
18949         old Mono.Posix. Also remove some stray code that shouldn't have
18950         been committed.
18952 2005-09-23  Jackson Harper  <jackson@ximian.com>
18954         * TreeView.cs: Attempt at proper sizing of the horizontal
18955         scrollbar. Also don't resize the scrollbars unless they are
18956         visible.
18958 2005-09-23  Jackson Harper  <jackson@ximian.com>
18960         * TreeView.cs: We don't need to expand the invalid area when the
18961         selection changes, as this is all drawn in the node's bounding
18962         box. The area needs to be expanded (previous typo was contracting
18963         it) when the focus rect moves.
18965 2005-09-23  Jackson Harper  <jackson@ximian.com>
18967         * TreeView.cs: Display the selection box under the correct
18968         circumstances. We were rendering white text with no selection box
18969         before.
18971 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
18973         * TextControl.cs(Split): Now updates selection start/end if it points 
18974           into a line that's being split. Fixes a FIXME and bug #75258
18976 2005-09-23  Jackson Harper  <jackson@ximian.com>
18978         * Binding.cs:
18979         * ListControl.cs: Don't use the path when retrieving binding
18980         managers from the binding context. My bat sense tells me that the
18981         path is only used on insertion.
18983 2005-09-22  Jackson Harper  <jackson@ximian.com>
18985         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
18987 2005-09-22  Jackson Harper  <jackson@ximian.com>
18989         * Splitter.cs: There are special cursors used for splitting.
18990         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
18992 2005-09-22  Jackson Harper  <jackson@ximian.com>
18994         * Splitter.cs: Change the cursor appropriately when the splitter
18995         is moused over, so the user actually knows there is a splitter
18996         there.
18998 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
19000        * Label.cs : Fix ToString method to give same output as MS.NET
19002 2005-09-22  Jackson Harper  <jackson@ximian.com>
19004         * TreeView.cs: Create the scrollbars when the handle is created
19005         and add them right away, just make them invisble. Also account for
19006         the window being shrunk vertically to the point that the vert
19007         scrollbar needs to be added.
19008         - Remove some 0.5 adjustments to get around anti aliasing issues.
19009         
19010 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
19011          
19012         * MainMenu.cs: Fixes default value
19013         * MenuItem.cs: Fixes default value
19015 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
19017         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
19019 2005-09-21  Jackson Harper  <jackson@ximian.com>
19021         * Control.cs: Don't try to set the border style on the window if
19022         it hasn't been created. When the window is created the border
19023         style will be used.
19025 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
19027         * Control.cs (Update): Don't call XplatUI if we don't have a
19028           window handle yet
19030 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
19032         * ContainerControl.cs: Instead of throwing an exception, print
19033           a one-time warning about Validate not being implemented
19034         * XplatUIWin32.cs: Removed debug output
19036 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
19038         * Control.cs: Only set XplatUI background if we expect the windowing
19039           system to handle the background. This stops controls that draw their
19040           own background from flickering
19042         * XplatUIX11.cs: Support custom visuals and colormaps for window 
19043           creation. This allows, amongst other things, using MWF X11 windows 
19044           with OpenGL.
19046 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
19048         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
19049           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
19050           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
19051           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
19052           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
19053           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
19054           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
19055           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
19056           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
19057           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
19058           GridColumnStylesCollection.cs, 
19059           IDataGridColumnStyleEditingNotificationService.cs,
19060           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
19061           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
19062           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
19063           TreeNodeCollection.cs, AmbientProperties.cs, 
19064           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
19065           DataObject.cs, ErrorProvider.cs, Splitter.cs,
19066           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
19067           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
19068           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
19069           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
19070           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
19071           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
19072           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
19073           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
19074           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
19075           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
19076           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
19077           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
19078           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
19079           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
19080           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
19081           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
19082           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
19083           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
19084           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
19085           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
19086           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
19087           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
19088           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
19089           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
19090           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
19091           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
19092           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
19093           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
19094           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
19095           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
19096           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
19097           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
19098           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
19099           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
19100           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
19102 2005-09-21  Jackson Harper  <jackson@ximian.com>
19104         * TreeNode.cs: Call Before/After Expand not Collapse when
19105         expanding.
19107 2005-09-20  Jackson Harper  <jackson@ximian.com>
19108         
19109         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
19111 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
19112          
19113         * ListViewItem.cs:
19114                 - Fixes bug 76120
19115                 - Fixes proper storing of subitems
19116                 - Fixes not updated items
19118 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
19120         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
19121           things if our window handle isn't created yet. Also disabled 
19122           debug for TextBoxBase
19124 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
19126         * MenuAPI.cs: Remove filtering of events to allow menu usage
19128 2005-09-20  Miguel de Icaza  <miguel@novell.com>
19130         * Cursor.cs: Allow null to be passed to Cursor.Current.
19132 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
19134         * ThemeWin32Classic.cs:
19135           - Change some private methods/fields to protected virtual so that 
19136             they can be accessed and overriden in derived classes
19137           - First refactoring of some methods. Derived themes now don't 
19138             need to duplicate the complete code from ThemeWin32Classic
19139         * ThemeNice.cs:
19140           - Added nice StatusBar
19141           - Derive from ThemeWin32Classic and not Theme
19142           - Removed duplicate ThemeWin32Classic code
19144 2005-09-20  Miguel de Icaza  <miguel@novell.com>
19146         * Control.cs (ControlCollection.Add): If the value null is passed
19147         the control is ignored. 
19149         Optimize this loop.
19151 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
19153         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
19154           PostQuitMessage state.
19155         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
19157 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
19159         * Application.cs: Our constructor will never get called, move 
19160           initialization to fields; fixes bug #75933
19162 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
19164         * FileDialog.cs :
19165                 - Allow files to be selected properly using file name
19166                 combo box.
19167                 - Add ability to change diretory (absolute / relative)
19168                 using file name combo box.
19170 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
19171          
19172         * ListBox.cs: 
19173                 - Fixes Multicolumn listboxes item wrong calculations
19174                 - Allows to click when only one item is in the listbox
19175                 - Fixes crash when no items using keyboard navigation
19177 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
19179         * ComboBox.cs: Reverted almost everything from the latest patch which
19180           broke ComboBox
19182 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
19183         
19184         * ToolTip.cs:
19185                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
19186         * ComboBox.cs:
19187                 - When DropDownStyle is Simple, it does not show scrollbar 
19188                 to the last item of the list.
19189                 - When DropDownStyle is Simple, it crashed when the list was 
19190                 scrolled down with the down cursor key.
19191                 - Fixed a bug that when DropDownStyle is DropDownList, the 
19192                 selected item was not shown.
19193                 - The position of the selected item was not preserved when 
19194                 the next dropdown happened.
19195         * ThemeWin32Classic.cs:
19196                 - Items were wrapped at the right end.
19197         * CheckedListBox.cs:
19198                 - Fixed Add method
19199         * ListBox.cs:
19200                 - Items should be fully shown.
19201                 - When resizing and vertical scrollbar disappeared, the item 
19202                 of index 0 should be on the top of the list.
19203                 - GetItemRectangle should consider the size of ver. scrollbar
19204         * StatusBar.cs:
19205                 - SizingGrip area should not be allocated when it is not 
19206                 displayed.
19207                 - Now it reflects MinWidth of the containing panel and 
19208                 fixed a crash that happens when its width becomes so small.
19210 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
19212         * CheckedListBox.cs: Fixes bug 76028
19213         * ListBox.cs: Fixes bug 76028
19215 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
19217         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
19218         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
19220 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
19222         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
19224 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
19226         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
19228 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
19230         * IRootGridEntry.cs: Added
19231         * PropertyGridCommands.cs: Added
19232         * PropertiesTab.cs: Added missing methods and property
19233         * PropertyGridView.cs: Made class internal
19234         * PropertyGridTextBox.cs: Made class internal
19236 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
19238         * MimeIcon.cs: Try to check some other environment variables
19239           if "DESKTOP_SESSION" returns "default"
19241 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
19243         * ThemeNice.cs: Corrected background colors (e.g. menus)
19244         * ColorDialog.cs: Use correct background colors for controls
19246 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
19248         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
19250 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
19252         * RichTextBox.cs: Added initial implementation
19253         * lang.cs: Removed. Was accidentally checked in long time ago
19254         * TODO: Removed. Contents were obsolete
19256 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
19257                                                                                 
19258         * PropertiesTab.cs : Added
19260 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
19261                                                                                 
19262         * PropertyGrid.cs : Update
19263         * PropertyGridView.cs : Update
19264         * System.Windows.Forms.resx : Added images and strings
19266 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
19268         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
19270 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
19272         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
19273           a busy loop right after the Ungrab the X11 display is otherwise 
19274           blocked
19276 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
19278         * ThemeWin32Classic.cs: Optimise the use of clipping
19280 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
19282         * DataGrid.cs: fixes recursion bug
19284 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
19286         * ThemeNice.cs: 
19287           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
19288           - Cleanup
19290 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
19292         * ThemeNice.cs: Draw nice ProgressBars
19294 2005-09-01  Miguel de Icaza  <miguel@novell.com>
19296         * VScrollBar.cs: Another buglet found by Aaron's tool. 
19298         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
19299         bug finder.
19301 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
19303         * ThemeNice.cs:
19304           - Added nicer menu drawing
19305           - Updated DrawTab
19306           - some refactoring
19308 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
19310         * CreateParams.cs (ToString): Made output match MS
19311         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
19312             handle is already created (to avoid forcing window creation)
19313         * XplatUIX11.cs: Set window text to caption after creating window,
19314           in case Text was set before window was created
19315         * Form.cs: Use this.Text instead of a static string as caption
19317 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
19319         * NotifyIcon.cs: Don't set the window to visible; this screws
19320           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
19321           OnPaint without a bitmap)
19322         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
19323           happen very often anyway; we could add the check to the WM_PAINT 
19324           event generation code
19326 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
19328         * NotifyIcon.cs: Fill the icon area with a background color, to 
19329           avoid 'residue' when transparent icons are drawn
19330         * XplatUIX11.cs:
19331           - Handle whole_window == client_window when destroying windows
19332           - SystrayAdd(): Set client_window to whole_window value to
19333             get mouse and other events passed to NotifyIcon
19335 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
19337         * Form.cs: Set proper default for Opacity property
19338         * NotifyIcon.cs:
19339           - ShowSystray(): Don't bother creating telling the OS
19340             about the systray item if no icon is provided
19341           - Now handles WM_NCPAINT message to deal with whole/client window
19342             split
19343           - Create window as visible to not get caught by Expose optimization
19344         * Hwnd.cs: Removed debug message
19345         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
19346           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
19347             PaintEventStart/End to use new client argument
19348         * TextBoxBase.cs:
19349           - Commented out debug messages
19350           - Switched PaintEventStart/End to use new client argument
19351         * XplatUI.cs: Added client window bool to PaintEventStart()/
19352           PaintEventEnd() calls, to support drawing in non-client areas
19353         * XplatUIDriver.cs: 
19354           - Added client window bool to PaintEventStart()/PaintEventEnd() 
19355             calls, to support drawing in non-client areas
19356           - Added conditional compile to allow using MWF BeginInvoke 
19357             on MS runtime
19358         * XplatUIX11.cs:
19359           - Added some conditional debug output
19360           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
19361             whole/client window split
19362           - Implemented handling of client argument to PaintEventStart()/End()
19363         * Control.cs:
19364           - Throw exception if BeginInvoke() is called and the window handle
19365             or one of the window's parent handles is not created
19366           - Added conditional compile to allow using MWF BeginInvoke on
19367             MS runtime
19368           - get_Parent(): Only sets parent if handle is created. This avoids
19369             forcing window handle creation when parent is set.
19370           - Now fires Layout and Parent changed events in proper order
19371           - Switched to use Handle instead of window.Handle for Z-Order setting,
19372             the get_Parent() patch above causes us to possibly get null for 'window'
19373           - Implemented handling of client argument to PaintEventStart()/End()
19374           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
19375             default handling)
19376           - Now sends a Refresh() to all child windows when Refresh() is called
19378 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
19380         * Form.cs: Added (non-functional) Opacity property
19381         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
19383 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
19384         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
19385           use export MONO_THEME=nice to activate it.
19386           Currently supported controls:
19387           - Button
19388           - ComboBox
19389           - ScrollBar
19390           - TabControl (TabAlignment.Top only, other will follow)
19391         * ThemeEngine.cs: Add theme nice
19392         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
19393           if enabled
19395 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
19397         * Splitter.cs: Resize docked control and its neighbor.
19399 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
19400         -- Making Windows with Menus layout correctly --
19401         * Form.cs : The first leg of the fix
19402                 Menu setter - adjust Client Size as needed to make space for the menu
19403                 SetClientSizeCore - doesn't call base version to be able to pass the 
19404                         menu handle to XplatUI.CalculateWindowRect
19405         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
19406         * XplatUIX11.cs: The critical second leg of the fix
19407                 GetWindowPos needs to use a recalculated client_rect
19408                 so that resizing the window doesn't break layout of child controls. 
19409                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
19410                 Lots of \t\n killed
19412 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
19414         * Label.cs: Now properly recalculates width and height on Font and Text
19415           changes if AutoSize is set
19417 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
19418         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
19420 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
19422         * ImageList.cs: Makes ToString method compatible with MS
19424 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
19426         * MenuAPI.cs: fixes bug 75716
19428 2005-08-11 Umadevi S <sumadevi@novell.com>
19429         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
19431 2005-08-11 Umadevi S <sumadevi@novell.com>
19432         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
19434 2005-08-10  Umadevi S <sumadevi@novell.com>
19435         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
19437 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
19439         * Menu.cs: fixes bug 75700
19440         * MenuAPI.cs: fixes navigation issues
19442 2005-08-09  Umadevi S <sumadevi@novell.com>
19443         * CheckedListBox.cs - simple fix for GetItemChecked.
19445 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
19447         * ComboBox.cs: Serveral fixes
19448         * ListBox.cs: Serveral fixes
19450 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
19452         * ComboBox.cs: Fixes FindString methods and GetItemHeight
19453         * ListBox.cs: Fixes FindString methods
19455 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
19457         * DataGrid.cs: fixes bugs exposed by new tests
19459 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
19461         * Mime.cs: Compile Mono assembly references only if compiling
19462           with Mono (Allows to build with VS.Net again)
19464 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
19466         * Control.cs (PaintControlBackground): Draw background image
19467         corrrectly.
19468         (CheckForIllegalCrossThreadCalls): Stubbed.
19469         
19470         * Form.cs (OnCreateControl): Center when should be centered.
19471         
19472         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
19474 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
19476         * Binding.cs: Binding to properties should be case unsensitive
19478 2005-07-18 vlindos@nucleusys.com
19480         * DataGrid.cs: fixes setmember order
19482 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
19484         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
19485         * FileDialog.cs: FileDialog is now resizable and uses the new
19486           MimeIconEngine
19488 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
19490         * DataGridTextBoxColumn.cs: default value
19491         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
19492         * GridTableStylesCollection.cs: fixes checking MappingName
19493         * DataGridDrawingLogic.cs: fixes drawing logic issues
19494         * DataSourceHelper.cs: rewritten to make compatible with more data sources
19495         * DataGrid.cs: fixes    
19497 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
19499         * MimeGenerated.cs: Use case sensitive comparer for
19500           NameValueCollections
19502 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
19504         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
19505         * ThemeWin32Classic.cs: bug fixes, code refactoring
19506         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
19507         * DataGrid.cs: bug fixes, code refactoring
19508         * DataGridTextBox.cs: bug fixes, code refactoring
19509         * DataGridColumnStyle.cs:  bug fixes, code refactoring
19510         * Theme.cs:  bug fixes, code refactoring
19512 2005-07-01  Peter Bartok  <pbartok@novell.com> 
19514         * TextControl.cs: Quick fix for the reported crash on ColorDialog
19515           and other text box usage
19517 2005-07-01  Jackson Harper  <jackson@ximian.com>
19519         * TabControl.cs: Make sure the bottom of the tab covers the pages
19520         border.
19522 2005-06-30  Peter Bartok  <pbartok@novell.com> 
19524         * Form.cs (ShowDialog): Assign owner of the dialog
19525         * TextBoxBase.cs: Always refresh caret size when deleting, caret
19526           might have been moved to a tag with different height
19528 2005-06-30  Jackson Harper  <jackson@ximian.com>
19530         * Form.cs: Don't create an infinite loop when setting focus
19531         * MenuItem.cs: Don't dirty the parents if we don't have any
19533 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
19535         * LibSupport.cs: Rename
19537 2005-06-29  Peter Bartok  <pbartok@novell.com>
19539         * TextBoxBase.cs: Re-align caret after deleting a character
19540         * TextControl.cs:
19541           - DeleteChars(): Ensure that tag covers the provided position
19542           - StreamLine(): Drop reference for dropped tag
19544 2005-06-29  Peter Bartok  <pbartok@novell.com> 
19546         * TextControl.cs: 
19547           - Selections now work properly, anchoring at the initial location
19548             and properly extending in either direction (SetSelectionToCaret(),
19549             SetSelectionStart() and SetSelectionEnd())
19550           - No longer redraws the whole control on selection change, now
19551             calculates delta between previous and new selection and only
19552             invalidates/redraws that area
19553           - Fixed FindPos() math off-by-one errors
19554           - Changed DeleteChars() to verify the provided tag covers the
19555             provided position, selections may have a tag that doesn't cover
19556             the position if the selection is at a tag border
19557           - Fixed off-by-one errors in DeleteChars()
19558           - Added missing streamlining check in DeleteChars() to remove
19559             zero-length tags
19560           - Implemented Invalidate() method, now properly calculates exposures
19561             between two given lines/positions
19562           - Implemented SetSelection()
19563           - Obsoleted and removed FixupSelection()
19564           - Improved RecalculateDocument() logic, removing code duplication
19566 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19568         * LibSupport.cs: changes to match different input/output arguments.
19570 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19572         * LibSupport.cs: added libsupport.so init routine.
19574 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
19575         
19576         * ControlBindingsCollection.cs
19577                 - Throws an exception on null datasource when adding
19578                 - Checks for duplicated bindings when adding
19580 2005-06-28  Jackson Harper  <jackson@ximian.com>
19582         * TreeView.cs (OnKeyDown): Support left and right properly
19583         (navigates as well as expanding and collapsing.
19584         - Add support for Multiply, this expands all the selected nodes
19585         children.
19586         - Fix some tabbing.
19588 2005-06-28  Jackson Harper  <jackson@ximian.com>
19590         * TreeView.cs: Implement keyboard navigation, currently supports,
19591         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
19592         support for toggling checkboxes with the space bar.
19594 2005-06-28  Jackson Harper  <jackson@ximian.com>
19596         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
19597         tree.
19599 2005-06-28  Jackson Harper  <jackson@ximian.com>
19601         * TreeView.cs: Add missing event.
19603 2005-06-27  Peter Bartok  <pbartok@novell.com> 
19605         * TextControl.cs:
19606           - Made line ending size configurable (now allows for counting 
19607             lineendings as \n or \r\n)
19608           - Added margin to viewport to keep caret visible on right side
19609           - Fixed translation routines for line/pos to documentpos to consider
19610             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
19611           - Fixed some line-endings to be unix style
19612           - Fixed Document.FormatText to perform it's calculations 1-based
19613           - Added descriptions for a few methods that might otherwise get 
19614             used wrong
19615           - Added NOTE section with some basic conventions to remember at 
19616             the top of the file
19617           - Major fixup for RichTextBox selection drawing:
19618             * Fixed crashes when multiple tags on a single line were selected
19619             * fixed selection box drawing not overlaying text
19620             * fixed bogus offset calculation for tags not starting at index 1
19621             * Switched behaviour from using multiple Substrings of a 
19622               StringBuilder.ToString() to using multiple 
19623               StringBuilder.ToString(start, length) statements, hoping this is
19624               faster (kept original version commented out in the code, in case
19625               original version was faster)
19626         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
19627           alignment != Left
19628         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
19629           call it as well
19631 2005-06-27  Jackson Harper  <jackson@ximian.com>
19633         * TabControl.cs: Move to the left and right with the arrow
19634         keys. These keys don't cycle beyond first and last like
19635         tab. Refresh all the tabs when scrolling them to the left or
19636         right.
19638 2005-06-27  Jackson Harper  <jackson@ximian.com>
19640         * TabControl.cs:
19641           - ToString: Added method
19642           - CreateParams: Remove TODO and comment
19643           - OnKeyDown: Cycle through bounds properly.
19644           - SelectedIndex: Scroll to the right or left if we need to
19645           display the newly selected tab.
19647 2005-06-23  Jackson Harper  <jackson@ximian.com>
19649         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
19650         set.
19652 2005-06-23  Jackson Harper  <jackson@ximian.com>
19654         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
19655         CTRL-SHIFT-TAB, and HOME, END are there any others?
19657 2005-06-23  Jackson Harper  <jackson@ximian.com>
19659         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
19661 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
19662         
19663         * DataGridTextBoxColumn.cs: fixes and enhancements
19664         * ThemeWin32Classic.cs: fixes and enhancements
19665         * DataGridBoolColumn.cs:  fixes and enhancements
19666         * DataGridDrawingLogic.cs:  fixes and enhancements
19667         * CurrencyManager.cs: fixes and enhancements
19668         * DataGrid.cs: fixes and enhancements
19669         * DataGridColumnStyle.cs:  fixes and enhancements
19671 2005-06-22  Jackson Harper  <jackson@ximian.com>
19673         * TabControl.cs: Add some missing methods that just call into the
19674         base. Make the TabPageCollection's IList interface behave in the
19675         same manner as the MS implementation.
19677 2005-06-22  Peter Bartok  <pbartok@novell.com> 
19679         * TextControl.cs: Added sanity check
19680         * TextBoxBase.cs: 
19681           - Fixed wrapping behaviour, don't set wrap on single line controls
19682             (this fixes the breakage of colordialog introduced in an earlier
19683              checkin)
19684           - Added rudimentary support for autoscrolling right-aligned controls
19685             (still needs fixing, also, center alignment scroll is missing)
19687 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
19688         
19689         * ScrollBar.cs: Fixes thumbpos on Maximum values
19691 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
19692         
19693         * PropertyGridView.cs: Pass context information to UITypeEditors 
19695 2005-06-21  Peter Bartok  <pbartok@novell.com> 
19697         * TextBoxBase.cs:
19698           - Now calling PositionCaret with absolute space coordinates
19699           - Enabled vertical scrolling
19700           - Better tracking of scrollbar changes, tied into WidthChange
19701             event
19702           - Improved cursor tracking
19703           - Removed debug output
19704         * TextControl.cs:
19705           - PositionCaret coordinates are now works in absolute space, not 
19706             the canvas
19707           - Improved tracking of document size
19708           - Added events for width and height changes
19710 2005-06-21  Peter Bartok  <pbartok@novell.com>
19712         * Form.cs: Set focus to active control when form is activated
19713         * TextControl.cs: 
19714           - Added word-wrap functionality to RecalculateLine() 
19715           - Added some short function descriptions for VS.Net to aid in
19716             writing dependent controls
19717           - Added Caret property, returning the current coords of the caret
19718           - Added ViewPortWidth and ViewPortHeight properties
19719           - Added Wrap property
19720           - Added CaretMoved event
19721           - Removed some old debug code
19722           - Split() can now create soft splits
19723           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
19724           - Added method to format existing text
19725           - Fixed size/alignment calculations to use viewport
19726           - RecalculateDocument now can handle changing line-numbers while
19727             calculating lines
19729         * TextBox.cs:
19730           - Added some wrap logic, we don't wrap if alignment is not left
19731           - Added casts for scrollbar var, base class switched types to
19732             also support RichTextBoxA
19733           - Implemented handling of scrollbar visibility flags
19735         * TextBoxBase.cs:
19736           - Switched scrollbars type to RichTextBoxScrollBars to support
19737             RichTextBox
19738           - Added tracking of canvas width/height
19739           - Switched scrollbars to be not selectable (to keep focus on text)
19740           - Added central CalculateDocument() method to handle all redraw
19741             requirements
19742           - Added ReadOnly support
19743           - Added WordWrap support
19744           - Fixed handling of Enter key (we now treat it as a DialogKey)
19745           - Fixed caret positioning when h or v scroll is not zero
19746           - Fixed placing/generation of vertical scrollbar
19747           - Added CalculateScrollBars() method to allow updating scrollbar
19748             limits and visibility
19749           - Fixed handling of horizontal scroll
19750           - Added handling of vertical scroll
19751           - Implemented auto-'jump' when caret moves to close to a left or
19752             right border and there is text to be scrolled into view (currently
19753             there's the potential for a stack overflow, until a bug in
19754             scrollbar is fixed)
19756 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
19757         
19758         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
19760 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
19762         * Mime.cs:
19763         - added inodes.
19764         - return application/x-zerosize for files with size zero
19765           (if no extension pattern matches).
19766         - check matches collection for strings too.
19767         - return only the first mime type if the name value
19768           collection has more than one mime type.
19770 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
19771         
19772         * PropertyGrid.cs: Cleaned up some TODOs
19773         * PropertyGridView.cs: Added support for UITypeEditors
19775 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
19776         
19777         * DataGrid.cs: clears cached value
19779 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
19781         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
19782         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
19783         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
19784         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
19785         
19786 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
19788         * ThemeWin32Classic.cs: fixes colour
19790 2005-06-15  Peter Bartok  <pbartok@novell.com>
19792         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
19793         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
19794         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
19795         * Control.cs: Added some MWFCategory and MWFDescription attributes
19796         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
19798 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
19800         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
19801         usage
19803 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
19805         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
19806         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
19807         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
19808         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
19809         * DataGrid.cs: default datagrid settings for Default Styles, fixes
19810         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
19812 2005-06-13  Jackson Harper  <jackson@ximian.com>
19814         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
19815         isn't printed when the user enables dropping. (X11 does accept
19816         drops).
19817         
19818 2005-06-13  Jackson Harper  <jackson@ximian.com>
19820         * TreeView.cs: Remove some TODOS.
19822 2005-06-13  Jackson Harper  <jackson@ximian.com>
19824         * Form.cs: Hook into the mdi framework.
19825         * MdiClient.cs: Use the base control collections add method so
19826         parents get setup correctly. Set the default back colour and dock
19827         style.
19828         * MdiChildContext.cs: New class, this bad actor handles an
19829         instance of an MDI window. Right now there is only basic
19830         support. You can drag, close, and resize windows. Minimize and
19831         Maximize are partially implemented.
19833 2005-06-13  Jackson Harper  <jackson@ximian.com>
19835         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
19836         freaky when both vals are negative. NOTE: There are probably other
19837         places in XplatUIX11 that this needs to be done.
19839 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
19841         * DataGrid.cs: implement missing methods, move KeyboardNavigation
19842         * DataGridColumnStyle.cs: fixes signature
19844 2005-06-12  Jackson Harper  <jackson@ximian.com>
19846         * XplatUIX11.cs: Use sizing cursors similar to the ones on
19847         windows.
19849 2005-06-11  Jackson Harper  <jackson@ximian.com>
19851         * StatusBarPanel.cs: Signature cleanups. Implement
19852         BeginInit/EndInit.
19854 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
19856         * DataGridTextBoxColumn.cs: Honors aligment
19857         * GridColumnStylesCollection.cs: Contains is case unsensitive
19858         * GridTableStylesCollection.cs: several fixes
19859         * DataGridTableStyle.cs: default column creation
19860         * DataGridDrawingLogic.cs: fixes
19861         * CurrencyManager.cs: ListName property
19862         * DataGrid.cs: multiple styles support
19863         * DataGridColumnStyle.cs: fixes
19864         
19866 2005-06-10  Peter Bartok  <pbartok@novell.com>
19868         * Control.cs(Select): Moved SetFocus call to avoid potential
19869           loops if controls change the active control when getting focus
19870         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
19871           the up/down buttons
19873 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
19875         * ImageListConverter.cs: Implemented
19877 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
19879         * MonthCalendar.cs: Wired in NumericUpDown control for year
19881 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
19883         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
19884           DoubleClick events, since they are not meant to be fired.
19886 2005-06-09  Peter Bartok  <pbartok@novell.com>
19888         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
19889           Jonathan's standalone controls into MWF, implemented missing
19890           events, attributes and methods; added xxxAccessible classes
19891         * AccessibleObject.cs: Made fields internal so other classes
19892           can change them if needed
19894 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
19896         * UpDownBase.cs: Complete implementation
19897         * NumericUpDown.cs: Complete implementation
19898         * DomainUpDown.cs: Complete implementation
19900 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
19902         * DataGridTextBoxColumn.cs: drawing fixes
19903         * DataGridCell.cs: fixes ToString method to match MSNet
19904         * DataGridTableStyle.cs: fixes
19905         * DataGridBoolColumn.cs: fixes, drawing
19906         * DataGridDrawingLogic.cs: fixes, new methods
19907         * DataGridTextBox.cs: Keyboard and fixes
19908         * DataGrid.cs:
19909                 - Keyboard navigation
19910                 - Scrolling fixes
19911                 - Row selection (single, multiple, deletion, etc)
19912                 - Lots of fixes
19913         
19914 2005-06-07  Jackson Harper  <jackson@ximian.com>
19916         * ThemeWin32Classic.cs: Clear the background area when drawing
19917         buttons.
19919 2005-06-06  Peter Bartok  <pbartok@novell.com>
19921         * ImageListStreamer.cs: Fixed signature for GetData
19922         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
19923         * ComboBox.cs:
19924           - Added missing ChildAccessibleObject class
19925           - Added missing OnXXXFocus overrides, switched to using those
19926             instead of the event handler
19927         * Control.cs:
19928           - Added Parent property for ControlAccessibleObject
19929           - Fixed signatures
19930           - Fixed attributes
19931           - Added ResetBindings()
19932         * ListBindingConverter.cs: Implemented some methods
19933         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
19934         * ImageList.cs: Implemented basic handle scheme, removed TODOs
19935         * ContainerControl.cs: Fixed signature, now subscribing to the
19936           ControlRemoved event instead of overriding the handler, LAMESPEC
19937         * CurrencyManager.cs: Added missing attribute
19938         * MonthCalendar.cs: Added missing properties
19940 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
19942         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
19943         
19944 2005-06-06  Gaurav Vaish and Ankit Jain
19946         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
19947         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
19948         
19949 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
19951         * Control.cs: fixes CreateParams Width / Height.
19953 2005-06-05  Peter Bartok  <pbartok@novell.com>
19955         * Win32DnD.cs: Removed compilation warnings
19957 2005-06-05  Peter Bartok  <pbartok@novell.com>
19959         * Control.cs (CreateParams): Since we don't know if one of the
19960           properties we use is overridden, lets make sure if we fail accessing
19961           we continue with a backup plan
19963 2005-06-05  Peter Bartok  <pbartok@novell.com>
19965         * Win32DnD.cs:
19966           - Removed debug output
19967           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
19968             struct
19969           - Plugged resource leak
19970         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
19971           MS size
19973 2005-06-05  Peter Bartok  <pbartok@novell.com>
19975         * XplatUIWin32.cs: Removed DnD code
19976         * Win32DnD.cs: Implemented drop source and drop target functionality
19978 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19980         * UpDownBase.cs: remove duplicate addition of event, enable some code
19981         that was commented out.
19982         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
19983         Validate input when a key is pressed. It works fine now for every
19984         combination of Hexadecimal. Only missing some drawing love when sharing
19985         space with other controls.
19987 2005-06-04  Peter Bartok  <pbartok@novell.com>
19989         * Control.cs:
19990           - We need to pass a window for DragDrop, so enable callback events
19991           - Added DnD callback events when being a DragSource
19992         * XplatUI.cs (StartDrag): Added window handle argument
19993         * XplatUIDriver.cs (StartDrag): Added window handle argument
19994         * QueryContinueDragEventArgs: Made fields internally accessible so
19995           drivers can set them
19996         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
19997           can set them
19999 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
20001         * DataGridTextBoxColumn.cs: column text editing
20002         * DataGridTableStyle.cs: Respect columns styles created by the user
20003         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
20004         * DataGridBoolColumn.cs: bool column editing
20005         * DataGrid.cs: fixes to scrolling, properties, etc
20006         * DataGridTextBox.cs: handle keyboard
20007         * DataGridColumnStyle.cs: fixes
20009 2005-06-02  Jackson Harper  <jackson@ximian.com>
20011         * ImageListStreamer.cs: Somewhat broken implementation of
20012         GetObjectData. The RLE needs some work to match MS properly.
20014 2005-06-02  Jackson Harper  <jackson@ximian.com>
20016         * X11Dnd.cs: Attempting to keep at least one file in MWF
20017         monostyled.
20019 2005-06-02  Peter Bartok  <pbartok@novell.com>
20021         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
20022           that way
20024 2005-06-02  Peter Bartok  <pbartok@novell.com>
20026         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
20027         * XplatUI.cs: Added DoDragDrop() method
20028         * XplatUIDriver.cs: Added DoDragDrop() method
20030 2005-06-02  Jackson Harper  <jackson@ximian.com>
20032         * Splitter.cs: Implement BorderStyle.
20034 2005-06-02  Jackson Harper  <jackson@ximian.com>
20036         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
20037         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
20038         X11 using XDND.
20040 2005-06-02  Peter Bartok  <pbartok@novell.com>
20042         * DataObject.cs:
20043           - Added Data setter
20044           - Fixed broken insertion code for SetData, now also
20045             overwrites any existing entry of the same format name
20046         * Hwnd.cs: Added list of pointers that automatically gets
20047           freed when the window is disposed
20048         * XplatUI.cs: Call driver initialization method when loading
20049           a driver
20050         * Control.cs:
20051           - OnDragLeave takes EventArgs, not DragEventArgs
20052           - Added setting of WS_EX_ACCEPTFILES style when dropping is
20053             supported
20054           - Forces style update when drop state changes
20055         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
20056           not perfect since we cannot (yet) call the IDataObject.GetData()
20057           method, we keep getting 0x80004005 error, dunno why)
20059 2005-06-02  Peter Bartok  <pbartok@novell.com>
20061         * DragEventArgs.cs: Make fields internal so we can cache the
20062           object and re-set the fields from XplatUI
20064 2005-06-02  Jackson Harper  <jackson@ximian.com>
20066         * Control.cs: Add some internal methods so the DnD subsystem can
20067         raise DnD events. Also call into the driver when AllowDrop is set.
20068         * XplatUI.cs:
20069         * XplatUIDriver.cs: New method for setting whether or not a window
20070         is allowed to accept drag and drop messages.
20071                 
20072 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
20073         
20074         * ScrollBar.cs: Make sure that values sent in Scroll events
20075         are always between Maximum and Minimum.
20077 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
20079         * Menu.cs: Call MenuChanged when menuitem visibility has been
20080         changed.
20081         * MenuItem.cs: Rebuild menu when item is (not) visible.
20082         * MainMenu.cs: MainMenu has special MenuChanged.
20083         * Theme.cs: Caption and FrameBorderSize are not fixed.
20084         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
20085         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
20086         * XplatUIX11.cs,
20087         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
20088         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
20090 2005-05-30  Jackson Harper  <jackson@ximian.com>
20092         * DataFormat.cs: We can't statically initialize this stuff because
20093         it calls into the xplatui and could create a loop. So we lazy init
20094         it.
20096 2005-05-28  Jackson Harper  <jackson@ximian.com>
20098         * Control.cs: Proper implementation of Product(Name/Version).
20100 2005-05-27  Jackson Harper  <jackson@ximian.com>
20102         * DataObject.cs: Dont crash if no data is found.
20104 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
20105         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
20106                 as per status page, guessing it should be set to true
20108 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
20110         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
20111         * DataGridTableStyle.cs: set proper formatting text, def header text
20112         * ThemeWin32Classic.cs: new themable paramaters
20113         * DataGridBoolColumn.cs: paint check box, get data, fixes
20114         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
20115         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
20116         * DataGridColumnStyle.cs: fixes
20117         * Theme.cs: new themable paramaters
20118                 
20119 2005-05-26  Peter Bartok  <pbartok@novell.com>
20121         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
20123 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
20124         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
20126 2005-05-24  Peter Bartok  <pbartok@novell.com>
20128         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
20129           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
20130           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
20131           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
20132           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
20133           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
20134           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
20135           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
20136           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
20137           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
20138           missing attributes, etc
20139         * DataGridPreferredColumnWidthTypeConverter.cs: Added
20141 2005-05-24  Peter Bartok  <pbartok@novell.com>
20143         * Help.cs: Added, implemented trivial functions, throws up MessageBox
20144           when user tries to get help
20145         * DataObject.cs, DataFormats.cs, LinkArea.cs,
20146           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
20147           to suppress warnings
20148         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
20149           avoid unreachable code warning
20151 2005-05-20  Peter Bartok  <pbartok@novell.com>
20153         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
20155 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
20157         * DataGridTextBoxColumn.cs: Basic painting methods
20158         * DataGridTableStyle.cs: Set table style in the column
20159         * ThemeWin32Classic.cs: Use Theme for colors
20160         * DataGridDrawingLogic.cs: Implement more drawing
20161         * DataGrid.cs: drawing, theming, enhacements, fixes
20162         * DataGridColumnStyle.cs: fixes, drawing
20163         * Theme.cs: theming for Datagrid
20165 2005-05-20  Peter Bartok  <pbartok@novell.com>
20167         * Cursor.cs: Implemented GetObjectData() method
20169 2005-05-20  Peter Bartok  <pbartok@novell.com>
20171         * Cursors.cs: Added setting of cursor name
20172         * Cursor.cs:
20173           - Implemented constructors
20174           - Implemented Draw and DrawStretched
20175           - Implemented Current property
20176           - Implemented == and != operators
20177           - Implemented Dispose()
20178           - Implemented ToString
20179           - Added missing attributes
20180         * XplatUIX11.cs:
20181           - Added missing reset for OverrideCursor when DoEvents is called
20182           - Fixed creation of cursor, logic was wrong
20183         * XplatUIWin32.cs:
20184           - Added missing reset for OverrideCursor when DoEvents is called
20185           - Fixed creation of cursor, bit arrays were swapped
20186         * Clipboard.cs: Removed obsolete MonoTODO attribute
20188 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
20190         * ComboBox.cs: fixes OnSelectedItemChanged
20191         * ControlBindingsCollection.cs: fixes item range check
20193 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
20195         * UpDownBase.cs:
20196                 - Calc preferred height properly
20197                 - Implement missing properties
20198                 
20199         * NumericUpDown.cs: Implement missing events
20201 2005-05-19  Jackson Harper  <jackson@ximian.com>
20203         * TabControl.cs: New method that resizes the tab pages before
20204         redrawing them. This as needed as the control is double buffered
20205         and sizing will not be recalculated unless ResizeTabPages is
20206         called.
20207         * TabPage.cs: Set base.Text instead of Text in the constructor so
20208         that UpdateOwner does not get called. Use the new Redraw method of
20209         TabControl instead of Refresh so the sizing is recalculated.
20210         * ThemeWin32Classic.cs: Draw the text for button tabs.
20212 2005-05-19  Jackson Harper  <jackson@ximian.com>
20214         * Control.cs: Paint control background images. Fix typo where
20215         PaintControlBackground was not getting called correctly.
20217 2005-05-19  Peter Bartok  <pbartok@novell.com>
20219         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
20220           I can investigate, apparently I broke FileDialog
20222 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
20224         * AxHost.cs: Some simple properties.
20225         * Control.cs: window must be accessible after ctor.
20226         * Form.cs: Added TransparencyKey property.
20227         * TextBoxBase.cs: Implemented Clear. Text property can be null.
20228         * XplatUIWin32.cs: SetBorderStyle implemented.
20230 2005-05-18  Peter Bartok  <pbartok@novell.com>
20232         * DataObject.cs: Entries are not global but particular to the
20233           DataObject, now it behaves that way
20234         * XplatUIWin32.cs: Implemented Clipboard methods
20235         * Clipboard.cs: Implemented
20236         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
20237         * XplatUIOSX.cs: Updated to final clipboard prototypes
20238         * XplatUIX11.cs: Implemented Clipboard methods
20239         * XplatUIDriver.cs: Updated to final clipboard prototypes
20240         * XplatUIStructs.cs:
20241           - Added BITMAPINFOHEADER struct
20242           - Added ClipboardFormats enum
20243         * X11Structs.cs:
20244           - Added ClipboardStruct
20245           - Added Atom enum items for clipboard types
20246           - Fixed atom types for Selection event structures
20247         * DataFormats.cs:
20248           - Added internal properties and methods for drivers to enumerate
20249             all known formats
20250           - Switched initialization method to allow drivers to assign their
20251             own IDs even for the MS predefined clipboard IDs
20252         * XplatUI.cs: Updated to final clipboard interface
20254 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
20255         * PropertyGridView.cs: Fixed compiler warnings.
20257 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
20258         * PropertyGrid.cs: Added some event calls
20259         * PropertyGridView.cs: Change drawing code to use double buffering
20260         * PropertyGridTextBox.cs: Changed Text property name
20261         * GridItem.cs: Added Bounds property.
20262         * GridEntry.cs: Added Bounds property.
20264 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
20266         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
20267         since GetType() may not return the correct type if the object is
20268         a remoting proxy.
20270 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
20272         * TreeNodeCollection.cs: fixes get/set item ranges
20273         
20274 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
20276         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
20277                 
20278 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
20280         * ComboBox.cs: Fix item range comparation
20281         * ListView.cs: Fix item range comparation
20283 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
20285         * FontDialog.cs:
20286           - Clear example panel when OnPaint is called
20287           - Better solution for displaying the example panel text
20288           - Select default indexes in the ListBoxes
20290 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
20292         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
20294 2005-05-11  Peter Bartok  <pbartok@novell.com>
20296         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
20297         * SelectionRangeConverter.cs: Implemented
20298         * PropertyGrid.cs: Fixed attribute value
20299         * Control.cs:
20300           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
20301           - Added Sebastien Pouliot's CAS Stack Propagation fixes
20302         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
20303           that's common to all drivers. First methods to go there are
20304           Sebastien Pouliot's CAS Stack Propagation helper methods
20305         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
20306           Sebastien Pouliot for CAS Stack Propagation
20308 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
20310         * OSXStructs.cs:
20311           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
20313 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
20315         * DataGridTextBoxColumn.cs: fixed some members
20316         * GridColumnStylesCollection.cs: indexed column is case insensitive
20317         * DataGridTableStyle.cs: fixes
20318         * ThemeWin32Classic.cs: add new theme parameter
20319         * Theme.cs: add new theme parameter
20320         * DataGridDrawingLogic.cs: Datagrid's drawing logic
20321         * DataGrid.cs: fixes, new internal properties, etc.
20322         * DataGridColumnStyle.cs: allows to set grid value
20323         *
20325 2005-05-10  Peter Bartok  <pbartok@novell.com>
20327         * AccessibleObject.cs:
20328           - Removed MonoTODO attribute on help, method is correct
20329           - Fixed Bounds property
20330         * AxHost.cs: Moved MonoTODO
20331         * ButtonBase.cs: Now setting AccessibleObject properties
20332         * RadioButton.cs: Setting proper AccessibleObject role
20333         * CheckBox.cs: Setting proper AccessibleObject role
20334         * ControlBindingsCollection.cs: Added properties, methods and attributes
20335         * DataFormats.cs: Fixed awkward internal API, and changed to enable
20336           userdefined DataFormats.Format items as well
20337         * ListControl.cs: Removed data_member from the public eye
20338         * OpenFileDialog.cs:
20339           - Made class sealed
20340           - Added missing attributes
20341         * SaveFileDialog.cs: Added missing attributes
20342         * ImageListStreamer.cs: Fixed code that caused warnings
20343         * LinkLabel.cs: Removed unreachable code
20344         * TreeView.cs: Fixed code that caused warnings
20345         * PropertyGridView.cs: Fixed code that caused warnings
20346         * GridColumnStylesCollection.cs: Added missing attributes
20347         * GridTableStylesCollection: Added missing attribute
20348         * PropertyManager: Added .ctor
20349         * SecurityIDType: Added
20350         * DataObject.cs: Implemented class
20351         * LinkArea.cs: Added missing attribute
20353 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
20355         * RadioButton.cs: call base method to allow to fire OnClick event
20356         * UpDownBase.cs: OnMouseUp call base method
20357         * CheckedListBox.cs: call base method before returning
20358         * TrackBar.cs: call base method before returning
20359         
20361 2005-05-10  Peter Bartok  <pbartok@novell.com>
20363         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
20364           for messages
20366 2005-05-10  Peter Bartok  <pbartok@novell.com>
20368         * DataFormats.cs: Implemented
20369         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
20370           XplatUIX11.cs: Added Clipboard APIs
20371         * XplatUIWin32.cs: Implemented Clipboard APIs
20372         * FolderBrowserDialog.cs: Added missing event, attributes
20374 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
20376         * CheckBox.cs: call base method to allow to fire OnClick event
20378 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
20380         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
20382 2005-05-06  Peter Bartok  <pbartok@novell.com>
20384         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
20385         * Screen.cs: Implemented
20386         * HelpNavigator.cs: Added
20387         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
20388           property
20389         * HelpProvider.cs: Implemented all we can do until we have a CHM
20390           help library (which means that "What's This" does work now)
20392 2005-05-06  Jackson Harper  <jackson@ximian.com>
20394         * XplatUIX11.cs: Fix waking up the main loop.
20395                 
20396 2005-05-05  Peter Bartok  <pbartok@novell.com>
20398         * XplatUI.cs: Updated revision
20399         * Form.cs: Removed enless loop
20400         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
20401         * Label.cs (OnPaint): Added call to base.OnPaint()
20402         * ToolTip.cs: Made ToolTipWindow reusable for other controls
20403         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
20404         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
20405         * AxHost.cs: Added
20406         * ButtonBase.cs: Moved base.OnPaint() call to end of method
20407         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
20408           to ToolTip.ToolTipWindow for drawing and size methods; this allows
20409           reuse of ToolTipWindow by other controls
20410         * SizeGrip.cs: Moved base.OnPaint() call to end of method
20411         * XplatUIX11.cs: Now clipping drawing area (experimental)
20412         * PictureBox.cs: Moved base.OnPaint() call to end of method
20413         * Theme.cs: Fixed ToolTip abstracts to match new format
20414         * ErrorProvider.cs: Implemented
20416 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
20418         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
20419         * LinkLabel.cs:
20420                 - Adds cursors
20421                 - Handles focus
20422                 - Implements LinkBehavior
20423                 - Fixes many issues
20425 2005-05-03  Jackson Harper  <jackson@ximian.com>
20427         * ListView.cs: Calculate the scrollbar positioning on resize and
20428         paint, so they get put in the correct place.
20430 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
20432         * ColorDialogs.cs: The small color panels are now handled by
20433           SmallColorControl. This fixes drawing of the focus rectangle
20434           and adds a 3D border.
20436 2005-05-03  Peter Bartok  <pbartok@novell.com>
20438         * Control.cs: Modified version of Jonathan Chamber's fix for
20439           double-buffering
20441 2005-05-03  Jackson Harper  <jackson@ximian.com>
20443         * ListView.cs: Remove redraw variable. Control now handles whether
20444         or not a redraw needs to be done, and will only raise the paint
20445         event if redrawing is needed.
20447 2005-05-03  Jackson Harper  <jackson@ximian.com>
20449         * Splitter.cs: No decorations for the splitter form. Cache the
20450         hatch brush.
20452 2005-05-03  Jackson Harper  <jackson@ximian.com>
20454         * TreeView.cs: Use dashed lines to connect nodes. Use the
20455         ControlPaint method for drawing the focus rect instead of doing
20456         that in treeview.
20458 2005-05-02  Peter Bartok  <pbartok@novell.com>
20460         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
20462 2005-04-29  Jackson Harper  <jackson@ximian.com>
20464         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
20465         entire image buffer. Just clear the clipping rectangle.
20467 2005-04-29  Jackson Harper  <jackson@ximian.com>
20469         * ThemeWin32Classic.cs: Don't draw list view items that are
20470         outside the clipping rectangle.
20472 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
20474         * ListBox.cs: added horizontal item scroll
20476 2005-04-29  Jackson Harper  <jackson@ximian.com>
20478         * ThemeWin32Classic.cs: Remove some old debug code that was
20479         causing flicker with the new double buffering code.
20481 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
20483         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
20484         behave like combobox and comboboxlist (still not sure if this is
20485         correct though).
20487 2005-04-28  Jackson Harper  <jackson@ximian.com>
20489         * ThemeWin32Classic.cs: Don't fill the middle of progress
20490         bars. This fills areas outside of the clip bounds that don't need
20491         to be filled.
20493 2005-04-28  Jackson Harper  <jackson@ximian.com>
20495         * Control.cs: Don't expose functionality to touch the image buffers.
20496         * ProgressBar.cs:
20497         * ListView.cs: We do not need to (and no longer can) manipulate
20498         the image buffers directly. All of this is handled by Control.
20500 2005-04-28  Peter Bartok  <pbartok@novell.com>
20502         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
20503           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
20504           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
20506 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
20508         * Combobox:
20509                 - Adjust control's height for non-simple comboboxes (bug fix)
20510                 - Remove dead code
20511         * MenuAPI.cs: remove unused var
20512         * ScrollBar.cs: remove unsed var
20513                  
20514         * ListBox.cs: unselect items when clearing
20516 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
20518         * ListControl.cs: honors OnPositionChanged and default Selected Item
20519         * ListBox.cs: unselect items when clearing
20521 2005-04-27  Jackson Harper  <jackson@ximian.com>
20523         * X11Keyboard.cs: Initialize a default keyboard and give a warning
20524         if a "correct" keyboard is not found. This will make us not crash,
20525         but might give some users bad keyboard layouts...seems to be the
20526         same thing rewind does.
20528 2005-04-27  Jackson Harper  <jackson@ximian.com>
20530         * BindingManagerBase.cs: Attach the current/position changed
20531         handlers to their respective events.
20533 2005-04-27  Jackson Harper  <jackson@ximian.com>
20535         * Control.cs: Make sure that the first WM_PAINT does a full draw,
20536         not just a blit.
20537         * ThemeWin32Classic.cs: Don't fill the background for picture
20538         boxes. This could overright user drawing.
20539         * ComboBox.cs: Just fill the clipping rect not the entire client
20540         rect when drawing the background. This prevents pieces of the
20541         image buffer from getting overwritten and is theoretically faster.
20543 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
20545         * ComboBox.cs: Databinding support fixes, fire missing events
20546         * ListControl.cs: implement missing methods and properties, fixes
20547         * ThemeWin32Classic.cs: Databiding support on Drawing
20548         * CheckedListBox.cs: Databinding support fixes, fire missing events
20549         * ListBox.cs: Databinding support fixes, fire missing events
20550         
20551 2005-04-25  Peter Bartok  <pbartok@novell.com>
20553         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
20555 2005-04-25  Jackson Harper  <jackson@ximian.com>
20557         * TreeView.cs: Use the horizontal scrollbars height not width when
20558         determining how much of the client area is available.
20560 2005-04-25  Jackson Harper  <jackson@ximian.com>
20562         * Control.cs: Double buffering is handled differently now. As per
20563         the spec, the extra buffer is created in the WM_PAINT message and
20564         passed down to the control's drawing code.
20565         * GroupBox.cs:
20566         * Label.cs:
20567         * CheckBox.cs:
20568         * ProgressBar.cs:
20569         * RadioButton.cs:
20570         * ColorDialog.cs:
20571         * ComboBox.cs:
20572         * PropertyGridView.cs:
20573         * UpDownBase.cs:
20574         * MessageBox.cs:
20575         * MenuAPI.cs:
20576         * ListView.cs:
20577         * ButtonBase.cs:
20578         * SizeGrip.cs:
20579         * ScrollBar.cs:
20580         * ListBox.cs:
20581         * TrackBar.cs:
20582         * ToolBar.cs:
20583         * PictureBox.cs:
20584         * DateTimePicker.cs:
20585         * StatusBar.cs:
20586         * TreeView.cs: Update to new double buffering system.
20587         * MonthCalendar.cs: Uncomment block, as Capture is now
20588         working. Update to new double buffering
20589         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
20590         * PaintEventArgs.cs: New internal method allows us to set the
20591         graphics object. This is used for double buffering.
20592         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
20593         rectangle. The internal paint_area var has been removed from
20594         StatusBar. The clipping rect should be used instead.
20595         * Theme.cs: Give the PictureBox drawing method a clipping rect.
20596         * TabPage.cs: The RefreshTabs method was removed, so just call the
20597         tab controls Refresh method now.
20598         * TabControl.cs: Update to new double buffering. Make sure the
20599         handle is created before sizing the tab pages, otherwise we will
20600         get stuck in a loop.
20602 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
20604         * LinkLabel.cs: Fix typo, bug #74719; patch
20605           from Borja Sanchez Zamorano
20607 2005-04-22  Jackson Harper  <jackson@ximian.com>
20609         * TreeNode.cs: Implement Handle stuff.
20610         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
20612 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
20614         * DataGridTextBoxColumn.cs: call base constructors, fixes
20615         * GridColumnStylesCollection.cs: missing events, methods, and functionality
20616         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
20617         * DataGridTableStyle.cs: implements create default column styles
20618         * DataGridBoolColumn.cs: which types can handle
20619         * DataGrid.cs: missing methods, fixes, new functionality
20620         * DataGridColumnStyle.cs: fixes
20622 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
20623         * FolderBrowserDialog.cs:
20624         - Use a thread to fill the TreeView
20625         - Adjusted some sizes
20627 2005-04-19  Peter Bartok  <pbartok@novell.com>
20629         * LinkLabel.cs: (Re-)create the pieces when setting the Text
20630           property. Fixes #74360.
20632 2005-04-19  Jackson Harper  <jackson@ximian.com>
20634         * XEventQueue.cs: Lock when getting the lockqueue size.
20635         * PictureBox.cs: Call base OnPaint
20636         
20637 2005-04-19  Peter Bartok  <pbartok@novell.com>
20639         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
20640           messages were no longer being processed (this broke BeginInvoke)
20642           
20643 2005-04-18  Jackson Harper  <jackson@ximian.com>
20645         * TreeView.cs: buglet that caused node images to get drawn
20646         regardless of whether or not they were in the clipping rectangle.
20648 2005-04-18  Jackson Harper  <jackson@ximian.com>
20650         * CurrencyManager.cs: There are four rules for GetItemProperties:
20651         - If the type is an array use the element type of the array
20652         - If the type is a typed list, use the type
20653         - If the list contains an Item property that is not an object, use
20654         that property
20655         - use the first element of the list if there are any elements in
20656         the list.
20657         
20658 2005-04-17  Jackson Harper  <jackson@ximian.oom>
20660         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
20661         click. This handles offsets for scrolling properly and reduces
20662         memory. Also fixed GetNode to not offset now that TopNode works
20663         properly.
20664         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
20665         
20666 2005-04-17  Jackson Harper  <jackson@ximian.com>
20668         * CursorConverter.cs: Initial implementation.
20670 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
20672         * ListControl.cs: work towards complex data binding support on ListControl
20673         * CurrencyManager.cs: work towards complex data binding support on ListControl
20674         * ListBox.cs: work towards complex data binding support on ListControl
20677 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
20679         * GridTableStylesCollection.cs: fixes name and constructor
20680         * DataGridTableStyle.cs: fixes
20681         * DataGridBoolColumn.cs: fixes names and constructors
20682         * DataGrid.cs: define methods and properties. Some init implementations
20683         * DataGridCell.cs: define methods and properties. Some init implementations
20684         * GridTablesFactory.cs: Define methods and properties
20686 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
20688         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
20689         graphics port changes.  We still want the coordinates in global screen
20690         coordinates.
20692 2005-04-14  Jackson Harper  <jackson@ximian.com>
20694         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
20695         check plus minus or checkbox clicks unless those features are enabled.
20697 2005-04-14  Jackson Harper  <jackson@ximian.com>
20699         * TreeView.cs: Add methods for setting the top and bottom visible
20700         nodes. TreeNode::EnsureVisible uses these methods.
20701         * TreeNode.cs: Implement EnsureVisible
20703 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
20705         * Form.cs: Pospone menu assignation if the window has not been created yet
20706         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
20707         size and position
20709 2005-04-12  Jackson Harper  <jackson@ximian.com>
20711         * TreeView.cs: Set the TopNode properly when scrolling
20712         occurs. This has the added benifit of reducing the amount of
20713         walking that needs to be done when drawing. Also removed an old
20714         misleading TODO.
20715         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
20716         
20717 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
20719         * Timer.cs: fixes interval setting when the timer is already enabled
20720         
20721 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
20723         * FolderBrowserDialog.cs: First approach
20725 2005-04-09  Peter Bartok  <pbartok@novell.com>
20727         * FolderBrowserDialog: Added
20729 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
20731         * LinkLabel.cs: move drawing code into the theme
20732         * ThemeWin32Classic.cs: drawing code and painting background bugfix
20733         * Theme.cs: define DrawLinkLabel method
20735 2005-04-05  Jackson Harper  <jackson@ximian.com>
20737         * BindingContext.cs: Use weak references so these bad actors don't
20738         stay alive longer then they need to.
20740 2005-04-05  Jackson Harper  <jackson@ximian.com>
20742         * ListControl.cs: Basic implementation of complex databinding.
20743         * ComboBox.cs:
20744         * ListBox.cs: Add calls to ListControl databinding methods.
20746 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
20748         * FileDialog.cs:
20749           - Don't change PopupButtonState to Normal when the
20750             PopupButton gets pressed several times.
20751           - Renamed ButtonPanel to PopupButtonPanel
20753 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
20755         * ColorDialog.cs: Use cached objects instead of creating them
20756         * LinkLabel.cs: Use cached objects instead of creating them
20757         * Splitter.cs: Use cached objects instead of creating them
20758         * FontDialog.cs: Use cached objects instead of creating them
20759         * PropertyGridView.cs: Use cached objects instead of creating them
20760         * MessageBox.cs: Use cached objects instead of creating them
20761         * FileDialog.cs: Use cached objects instead of creating them
20762         * ThemeWin32Classic.cs: Use cached objects instead of creating them
20763         * TreeView.cs: Use cached objects instead of creating them
20764         
20765 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
20767         * Control.cs: use Equals to compare the font since no == op
20768         * ScrollBar.cs: use Equals to compare the font since no == op
20770 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
20772         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
20774 2005-04-01  Jackson Harper  <jackson@ximian.com>
20776         * Binding.cs: Implement IsBinding.
20777         * BindingManagerBase.cs:
20778         * PropertyManager.cs:
20779         * CurrencyManager.cs: Add IsSuspended property.
20781 2005-04-01  Jackson Harper  <jackson@ximian.com>
20783         * Binding.cs: Had some IsAssignableFrom calls backwards.
20785 2005-04-01  Jackson Harper  <jackson@ximian.com>
20787         * Binding.cs: Handle null data members when pulling data.
20788         * PropertyManager.cs: Handle the data member being a property that
20789         does not exist.
20791 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
20793         * DataGridTextBoxColumn.cs: fixes signature
20794         * DataGrid.cs: calls right constructor
20796 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
20798         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
20799         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
20800         * GridTableStylesCollection.cs: implements GridTableStylesCollection
20801         * DataGridTableStyle.cs: implements DataGridTableStyle
20802         * DataGridBoolColumn.cs: implements DataGridBoolColumn
20803         * DataGridTextBox.cs: implements DataGridTextBox
20804         * DataGridColumnStyle.cs: implements DataGridColumnStyle
20806 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
20808         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
20810 2005-03-29  Peter Bartok  <pbartok@novell.com>
20812         * Application.cs:
20813           - Properly implemented CompanyName property
20814           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
20815             returns a path that includes CompanyName, ProductName and
20816             Version (fixes bug #70330)
20818 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
20820         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
20821           fixes bug #72588.
20823 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
20825         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
20826         
20827           - Added ReadOnly CheckBox
20828           - Further refactoring: moved some code from Open-/SaveFileDialog
20829             to FileDialog
20831 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
20833         * OpenFileDialog.cs: Fixed CheckFileExists
20834         * FileDialog.cs:
20835           Moved FileView and DirComboBox outside FileDialog class.
20836           They can now be used outside FileDialog
20838 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
20840         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
20841         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
20843 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
20845         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
20846           - Added missing CreatePrompt property in SaveDialog
20847           - Overall SaveDialog handling should be better now
20848           - Added non standard ShowHiddenFiles property
20849           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
20850           - Added InitialDirectory and RestoreDirectory support
20852 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
20854         * FileDialog.cs: Made dirComboBox usable
20856 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
20858         * FileDialog.cs: Added Filter support (case sensitiv)
20860 2005-03-24  Jackson Harper  <jackson@ximian.com>
20862         * TabControl.cs: Need a couple more pixels for the lines.
20864 2005-03-23  Jackson Harper  <jackson@ximian.com>
20866         * TabControl.cs: Give the tab page focus when it is selected.
20868 2005-03-23  Jackson Harper  <jackson@ximian.com>
20870         * TabControl.cs: Account for the drawing of tabs borders when
20871         invalidating. If the slider was clicked dont do click detection on
20872         the tabs.
20874 2005-03-23  Jackson Harper  <jackson@ximian.com>
20876         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
20878 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
20880         * CategoryGridEntry.cs: Added
20881         * GridItem.cs: Added helper properties
20882         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
20883         * GridEntry.cs: Updated code for collection
20884         * PropertyGrid.cs: Cleaned up some formatting
20885         * PropertyGridView.cs: Added drop down functionality for enums.
20886         * GridItemCollection.cs: Added enumerator logic
20887         * PropertyGridEntry.cs: Added
20889 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
20891         * FileDialog.cs:
20892           - Removed unnecessary commented code
20893           - Fixed handling for entering the filename manually in the combobox
20895 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
20897         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
20899 2005-03-18  Peter Bartok  <pbartok@novell.com>
20901         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
20902           them being touching the border
20904 2005-03-18  Peter Bartok  <pbartok@novell.com>
20906         * TextControl.cs: Quick hack to center text better
20908 2005-03-18  Peter Bartok  <pbartok@novell.com>
20910         * ControlPaint.cs:
20911           - Don't throw NotImplemented exceptions, just print a notice once
20912             instead (requested by Miguel). This makes running existing SWF
20913             apps a bit easier
20914         * Control.cs:
20915           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
20916           - Added context menu trigger on right click
20917         * Panel.cs: Trigger invalidate on resize
20918         * StatusBar.cs:
20919           - Removed old double-buffer drawing
20920           - Added ResizeRedraw style to force proper update of statusbar
20921         * ListView.cs:
20922           - Removed debug output
20923         * ThemeWin32Classic.cs:
20924           - Fixed drawing of status bar, now draws Text property if there
20925             are no defined panels
20927 2005-03-18  Jackson Harper  <jackson@ximian.com>
20929         * ImageList.cs: When the image stream is set pull all the images
20930         from it.
20931         * ImageListStreamer.cs: Implement reading image list streams.
20933 2005-03-18  Peter Bartok  <pbartok@novell.com>
20935         * ThemeWin32Classic.cs (DrawPictureBox):
20936           - Fixed calculations for centered drawing
20937           - Fixed drawing for normal mode, not scaling the image on normal
20939 2005-03-18  Peter Bartok  <pbartok@novell.com>
20941         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
20942           textbox
20943         * FileDialog.cs:
20944           - Made Open/Save button the accept button for FileDialog
20945           - Tied the cancel button to the IButtonControl cancel button
20946           - Save/Open now properly builds the pathname
20947           - Now handles user-entered text
20948           - Preventing crash on right-click if no item is selected
20949           - Fixed Text property, now uses contents of textbox
20950           - Fixed SelectedText property, now just returns the text part that
20951             is selected in the text box
20953 2005-03-18  Jackson Harper  <jackson@ximian.com>
20955         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
20956         rect, make sure to de-adjust the interior rect after drawing the
20957         tab text.
20959 2005-03-18  Peter Bartok  <pbartok@novell.com>
20961         * MenuAPI.cs: Remove menu *before* executing selected action to
20962           prevent the menu from 'hanging around'
20963           
20964 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
20966         * XplatUIOSX.cs: Implemented WorkingArea property
20968 2005-03-17  Peter Bartok  <pbartok@novell.com>
20970         * XplatUIX11.cs: Fixed menu coord calculations
20971         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
20972           for calculating offsets
20974 2005-03-17  Peter Bartok  <pbartok@novell.com>
20976         * Hwnd.cs: Do not consider menu presence for default client
20977           rectangle location/size
20978         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
20979           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
20980           translation functions
20981         * FileDialog.cs: Fixed (what I presume is a) typo
20983 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
20985         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
20986           X access (avoids X-Async errors)
20988 2005-03-16  Jackson Harper  <jackson@ximian.com>
20990         * TabControl.cs: Raise the SelectedIndexChanged event.
20992 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
20994         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
20995           - Removed vertical ToolBar and replaced it with a custom panel
20996             (desktop and home button already work)
20997           - Added Help button (some controls get resized or relocated then)
20998           - Draw correct text depending on Open or Save.
20999           - Fixed some typos...
21001 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
21003         * ScrollBar.cs:
21004           - Only change Maximum and Minimum when need it (bug fix)
21006 2005-03-15  Peter Bartok  <pbartok@novell.com>
21008         * Form.cs: Use Handle for icon, to trigger creation if
21009           the window does not yet exist
21010         * Control.cs:
21011           - CanSelect: Slight performance improvement
21012           - Focus(): Preventing possible recursion
21013           - Invalidate(): Removed ControlStyle based clear flag setting
21014           - WM_PAINT: fixed logic for calling OnPaintBackground
21015           - WM_ERASEBKGND: Fixed logic, added call to new driver method
21016             EraseWindowBackground if the control doesn't paint background
21017         * XplatUIWin32.cs:
21018           - Moved EraseWindowBackground() method to internal methods
21019           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
21020             is sent via SendMessage on BeginPaint call on Win32
21021         * XplatUIX11.cs:
21022           - Added EraseWindowBackground() method
21023           - No longer sends WM_ERASEBKGND on .Expose, but on call to
21024             PaintEventStart, which more closely matches Win32 behaviour
21025           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
21026           - Fixed SetFocus() to properly deal with client and whole windows
21027         * Hwnd.cs: Added ErasePending property
21028         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
21029         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
21031 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
21033         * XplatUIOSX.cs:
21034           - Fix hard loop when timers exist.
21035           - Fix bugs with middle and right click for 3 button mice.
21037 2005-03-11  Peter Bartok  <pbartok@novell.com>
21039         * XplatUIX11.cs:
21040           - get_WorkingArea: Need to call X directly, GetWindowPos only
21041             returns cached data now
21042           - Added sanity check to GetWindowPos hwnd usage
21044 2005-03-11  Jackson Harper  <jackson@ximian.com>
21046         * BindingManagerBase.cs: This method isn't used anymore as
21047         PullData now updates the data in the control.
21049 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
21051         * Form.cs: fixes menu drawing on X11
21052         * MenuAPI.cs:  fixes menu drawing on X11
21054 2005-03-11  Peter Bartok  <pbartok@novell.com>
21056         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
21057           from Jonathan Gilbert; should fix bug #73606
21058         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
21059           in Screen coordinates. Thanks, Jordi.
21060         * Form.cs: Added missing attribute
21062 2005-03-11  Peter Bartok  <pbartok@novell.com>
21064         * Form.cs:
21065           - Rudimentary Mdi support
21066           - Removed outdated FormParent code
21067           - Implemented lots of missing properties and methods, still missing
21068             transparency support
21069           - Added missing attributes
21070           - Implemented support for MaximumBounds
21071           - Added firing of various events
21072         * XplatUI.cs: Added SetIcon() method
21073         * XplatUIDriver.cs: Added SetIcon() abstract
21074         * XplatUIOSX.cs: Stubbed out SetIcon() method
21075         * XplatUIX11.cs:
21076           - Implemented SetIcon() support
21077           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
21078           - Switched to unix line endings
21079         * XplatUIWin32.cs:
21080           - Made POINT internal so for can access it as part of MINMAX
21081           - Implemented SetIcon() support
21082           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
21083             native Mdi support again, might have to go managed)
21084         * Control.cs: Now fires the StyleChanged event
21085         * MdiClient.cs: Added; still mostly empty
21087 2005-03-10  Peter Bartok  <pbartok@novell.com>
21089         * SaveFileDialog.cs: Added emtpy file
21091 2005-03-08  Peter Bartok  <pbartok@novell.com>
21093         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
21094           in turn triggers OnCreateContro) when creating a handle for the
21095           first time.
21096         * TextControl.cs: Fixed endless loop in certain cases when
21097           replacing the current selection
21099 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
21101         * ScrollBar.cs:
21102           - Honors NewValue changes in Scroll events allowing apps to change it
21103           - Adds First and Last Scroll events
21104           - Fixes Thumb events
21106 2005-03-07  Peter Bartok  <pbartok@novell.com>
21108         * Hwnd.cs: Added DefaultClientRectangle property
21109         * XplatUI.cs: Now using the X11 driver Where() method, which provides
21110           more detailed debug information
21111         * XplatUIX11.cs:
21112           - Fixed size-change feedback loop, where we would pull an old size
21113             off the queue and mistakenly change our window's size to an
21114             earlier value
21115           - Now compressing ConfigureNotify events, to reduce looping and
21116             redraw issues
21117         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
21118           is called
21120 2005-03-07  Jackson Harper  <jackson@ximian.com>
21122         * Binding.cs: Push data pushes from data -> property. Check if the
21123         property is readonly when attempting to set it.
21125 2005-03-07  Jackson Harper  <jackson@ximian.com>
21127         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
21128         instead of IsSubclassOf. Pulling data now sets the value on the
21129         control.
21130         * PropertyManager.cs:
21131         * CurrencyManager.cs: Just need to pull data when updating now,
21132         because PullData will set the value on the control.
21134 2005-03-04  Jackson Harper  <jackson@ximian.com>
21136         * Binding.cs: Implement data type parsing and converting on pulled
21137         data. TODO: Are there more ways the data can be converted?
21139 2005-03-04  Jackson Harper  <jackson@ximian.com>
21141         * Binding.cs: Support <Property>IsNull checks. Also bind to the
21142         controls Validating method so we can repull the data when the
21143         control loses focus.
21145 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
21147         * ColumnHeader.cs:
21148           - Fixes null string format
21149           
21150         * ListView.cs:
21151           - Adds enum type checks
21152           - Fixes redrawing and recalc need after changing some properties
21153           - Fixes on focus_item set after the event
21154           - Fixes adding columns after the control has been created
21155           
21156         * ThemeWin32Classic.cs:
21157           - Fixes CheckBox focus rectangle
21158           - Fixes ColumnHeader drawing
21161 2005-03-03  Jackson Harper  <jackson@ximian.com>
21163         * Binding.cs: Bind to <Property>Changed events so we can detect
21164         when properties are changed and update the data.
21166 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
21168         * ImageList.cs:
21169           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
21170           - Fixes ImageList constructor with ImageList container
21171           - Fixes image scaling (wrong parameters at DrawImage)
21173 2005-02-02  Jackson Harper  <jackson@ximian.com>
21175         * Binding.cs: Make property searches case-insensitive. Eliminate
21176         some duplicated code.
21178 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
21180         * ComboBox.cs:
21181                 - Handle focus event
21182                 - Fix scrollbar events
21183                 - Discard highlighted item if remove it
21184                 - Fixes SelectedItem with strings
21186 2005-03-01  Peter Bartok  <pbartok@novell.com>
21188         * Control.cs:
21189           - Fixed Visible property, now follows (once again) parent chain
21190             to return false if any control in the chain is visible=false
21191           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
21192           - Fixed several places where is_visible instead of Visible was used
21193           - Implemented FIXME related to focus selection when setting focused
21194             control to be invisible
21196         * XplatUIWin32.cs: Now using proper method to find out if window is
21197           visible. Thanks to Jordi for pointing it out
21199 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
21201         * ComboBox.cs: show/hide scrollbar instead of creating it
21203 2005-02-27  Jackson Harper  <jackson@ximian.com>
21205         * CurrencyManager.cs: Add PositionChanged stuff.
21207 2005-02-27  Peter Bartok  <pbartok@novell.com>
21209         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
21210         * XplatUIOSX.cs: Added GetMenuOrigin() stub
21211         * XplatUIWin32.cs: Implemented GetMenuOrigin()
21212         * XplatUIX11.cs:
21213           - Implemented GetMenuDC()
21214           - Implemented GetMenuOrigin()
21215           - Implemented ReleaseMenuDC()
21216           - Implemented generation of WM_NCPAINT message
21217           - Implemented generation and handling of WM_NCCALCSIZE message
21218         * Form.cs: Added debug helper message for Jordi's menu work
21219         * Hwnd.cs:
21220           - Modified ClientRect property; added setter, fixed getter to handle
21221             setting of ClientRect
21222           - Added MenuOrigin property
21224 2005-02-26  Peter Bartok  <pbartok@novell.com>
21226         * XplatUIX11.cs:
21227           - Destroys the caret if a window that's being destroyed contains it
21228           - Ignores expose events coming from the X11 queue for windows that
21229             already are destroyed
21230           - Now uses the proper variable for handling DestroyNotify, before we
21231             marked the wrong window as destroyed
21232           - Improved/added some debug output
21234 2005-02-26  Peter Bartok  <pbartok@novell.com>
21236         * X11Keyboard.cs: Fixes to work on 64bit systems
21238 2005-02-26  Peter Bartok  <pbartok@novell.com>
21240         * Control.cs:
21241           - Now calling OnHandleDestroyed from DestroyHandle()
21242             instead of Dispose()
21243           - Removed bogus call to controls.Remove() from DestroyHandle()
21245 2005-02-26  Peter Bartok  <pbartok@novell.com>
21247         * Control.cs: Properly destroy child windows when our handle is
21248           destroyed
21250 2005-02-25  Peter Bartok  <pbartok@novell.com>
21252         * XplatUI.cs:
21253           - Added 'DriverDebug' define to allow tracing XplatUI API calls
21254           - Alphabetized Static Methods and Subclasses
21256         * XplatUIX11.cs:
21257           - Added XException class to allow custom handling of X11 exceptions
21258           - Created custom X11 error handler, tied into XException class
21259           - Added support for MONO_XEXCEPTIONS env var to allow the user
21260             to either throw an exception on X errors or continue running
21261             after displaying the error
21262           - Added handling of DestroyNotify message
21263           - Added handler for CreateNotify message (still disabled)
21264           - Improved (tried to at least) Where method to provide file and lineno
21265         * X11Structs.cs:
21266           - Added XErrorHandler delegate
21267           - Added XRequest enumeration (to suppor translation of errors)
21269 2005-02-25  Jackson Harper  <jackson@ximian.com>
21271         * PropertyManager.cs: Implement editing features
21272         * CurrencyManager.cs:
21273         * Binding.cs: First attempt at UpdateIsBinding
21274         * BindingManagerBase.cs: Call UpdateIsBinding before
21275         pushing/pulling data.
21277 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
21279         * MenuAPI.cs: Respect disabled items
21280         * ThemeWin32Classic.cs
21281                 - Caches ImageAttributes creation for DrawImageDisabled
21282                 - Fixes vertical menu line drawing
21283                 - Draws disabled arrows in disable menu items
21285 2005-02-24  Peter Bartok  <pbartok@novell.com>
21287         * Hwnd.cs:
21288           - Added UserData property to allow associating arbitrary objects
21289             with the handle
21290           - Fixed leak; now removing Hwnd references from static windows array
21291         * XplatUIWin32.cs:
21292           - Fixed Graphics leak in PaintEventEnd
21293           - Removed usage of HandleData, switched over to Hwnd class
21294         * HandleData.cs: Removed, obsoleted by Hwnd.cs
21296 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
21298         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
21299         * ScrollBar.cs: Fixes bug
21300         * TrackBar.cs: removes death code, clipping, mimize refreshes,
21301          keyboard navigation enhancements
21303 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
21305         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
21306         * GroupBox.cs: Add control styles
21307         * Label.cs: Add control styles
21308         * UpDownBase.cs: Add control styles
21309         * ListBox.cs: Add control styles
21310         * XplatUIWin32.cs: Fixes wrong parameter order
21313 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
21315         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
21317 2005-02-23  Jackson Harper  <jackson@ximian.com>
21319         * PropertyManager.cs: Implement property binding. This doesn't
21320         seem to work yet though as (I think) there are some bugs in
21321         System.ComponentModel.PropertyDescriptor.
21322         * BindingContext.cs: Use new PropertyManager constructor.
21324 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
21326         * ProgressBar.cs: use clip region in ProgressBar
21327         * ThemeWin32Classic.cs: use clip region in ProgressBar
21329 2004-02-22  Jackson Harper  <jackson@ximian.com>
21331         * BindingsCollection.cs: Remove some debug code.
21333 2005-02-22  Jackson Harper  <jackson@ximian.com>
21335         * BindingContext.cs:
21336         * ControlBindingsCollection.cs:
21337         * CurrencyManager.cs:
21338         * Binding.cs:
21339         * BindingManagerBase.cs: Initial implementation
21340         * BindingsCollection.cs: Add an internal contains method that the
21341         BindingManagerBase uses to ensure bindings aren't added twice to
21342         the collection.
21343         * PropertyManager.cs: Stubbed out.
21344         * Control.cs:
21345         * ContainerControl.cs: Hook up databinding
21346         
21347 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
21349         * XplatUIOSX.cs:
21350           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
21351           Fixed Invalidate/Update chain.
21352           Fixed tons of other minor bugs (this is almost a complete rewrite).
21354 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
21356         * ComboBox.cs: do subcontrol creation when the control is created
21358 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
21360         * Label.cs: fixes image drawing (image and imagelist)
21361         * ThemeWin32Classic.cs: cache brushes
21362         
21363 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
21365         * Form.cs: Move menu drawing code to Theme class
21366         * ComboBox.cs: Move ComboBox drawing code to Theme class
21367         * MenuItem.cs: Move menu drawing code to Theme class
21368         * MenuAPI.cs: Move menu drawing code to Theme class
21369         * ThemeWin32Classic.cs: New methods
21370         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
21371         * ListBox.cs: Move Listbox drawing code to Theme class
21372         * Theme.cs: New methods
21374 2005-02-20  Peter Bartok  <pbartok@novell.com>
21376         * Control.cs:
21377           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
21378             only process mnemonics on those)
21379           - Fixed event sequence for key handling; first calling
21380             ProcessKeyEventArgs now
21381         * TextBoxBase.cs:
21382           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
21383             for processing non-character keys
21384           - Fixed WM_CHAR to generate proper event sequence before processing
21385         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
21386           generation
21388 2005-02-19  Peter Bartok  <pbartok@novell.com>
21390         * UserControl.cs: Added TextChanged event; added attributes
21391         * SizeGrip.cs: Implemented resizing and optional display of grip
21392         * Form.cs: Fixed attribute
21393         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
21394           Changed meaning of ScrollWindow bool argument; instead of the
21395           clear attribute (which will be true usually anyway), it gives the
21396           option of moving child controls as well.
21397         * XplatUIX11.cs:
21398           - Changed to match new ScrollWindow argument
21399           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
21400             now handles the implicit parent window a WM puts around us
21401         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
21402           to work)
21403         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
21404         * TreeView.cs: Adjusted to new ScrollWindow arguments
21406 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
21408         * Form.cs: Menu integration with non-client area
21409         * MenuItem.cs: Menu integration with non-client area
21410         * MenuAPI.cs: Menu integration with non-client area
21412 2005-02-18  Peter Bartok  <pbartok@novell.com>
21414         * MethodInvoker.cs: Added
21415         * MdiLayout.cs: Added
21416         * SendKeys.cs: Started implementation
21417         * ErrorIconAlignment.cs: Added
21419 2005-02-18  Peter Bartok  <pbartok@novell.com>
21421         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
21422         * Form.cs: Added handling for Menu-related Non-client messages
21424 2005-02-17  Peter Bartok  <pbartok@novell.com>
21426         * UpDownBase.cs: Fixed typo, compilation errors
21427         * DomainUpDown.cs: Fixed attribute value
21429 2005-02-16  Miguel de Icaza  <miguel@novell.com>
21431         * UpDownBase.cs: Attach entry events.
21432         Propagate events.
21433         Add ForeColor property, Focused, InterceptArrowKeys (interception
21434         does not work yet).
21436 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
21438         * Form.cs:
21439                 - Redraw non client are on Setmenu
21440                 - Calc proper menu starting point
21442 2005-02-17  Peter Bartok  <pbartok@novell.com>
21444         * Application.cs: Fixed message_filter check
21446 2005-02-17  Peter Bartok  <pbartok@novell.com>
21448         * Application.cs: Now calls registered message filters
21449         * DockStyle.cs: Fixed attribute
21450         * Form.cs: Fixed attribute
21451         * Menu.cs: Fixed attribute
21452         * ToolTip.cs: Fixed attribute
21453         * TreeNode.cs: Added missing attributes and arranged in regions
21454         * PropertyGrid.cs: Fixed signatures
21455         * TreeNodeCollection.cs: Added attributes
21456         * Splitter.cs: Added missing attributes; arranged into regions
21457         * TabPage.cs: Added missing attributes; arranged into regions
21458         * TextBoxBase.cs: Added missing attributes
21459         * TextBox.cs: Added missing attributes
21460         * ArrangeDirection.cs: Added missing attributes
21461         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
21462         * ToolBarButton.cs: Fixed attributes
21463         * AnchorStyles.cs: Fixed attribute
21464         * TrackBar.cs: Fixed attributes
21465         * TabControl.cs: Added missing attributes and arranged into regions
21466         * ToolBar.cs: Fixed attribute
21467         * StatusBar.cs: Fixed signature, organized into regions and added
21468           attributes
21469         * StatusBarPanel.cs: Fixed attributes
21470         * ContentsResizedEventArgs.cs: Implemented
21471         * ContentsResizedEventHandler.cs: Implemented
21472         * DateBoldEventArgs.cs: Implemented
21473         * DateBoldEventHandler.cs: Implemented
21474         * UpDownEventArgs.cs: Implemented
21475         * UpDownEventHandler.cs: Implemented
21476         
21477 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
21479         * Form.cs: first Menu NC refactoring
21480         * MenuAPI.cs: first Menu NC refactoring
21481         
21482 2005-02-16  Peter Bartok  <pbartok@novell.com>
21484         * ImeMode.cs: Added missing attributes
21485         * Menu.cs: Fixed attribute
21486         * GroupBox.cs: Fixed attribute
21487         * Label.cs: Fixed attribute
21488         * ColorDialog.cs (RunDialog): Removed TODO attribute
21489         * ComboBox.cs: Fixed attributes
21490         * ListControl.cs: Added missing attributes
21491         * PropertyGrid.cs: Fixed attributes
21492         * Control.cs: Fixed attributes
21493         * ListViewItem.cs: Added TypeConverter attribute
21494         * NotifyIcon.cs: Fixed attributes
21495         * ListView.cs: Fixed attributes
21496         * ButtonBase.cs: Fixed attribute
21497         * ImageList.cs: Added missing attributes
21498         * ContainerControl.cs: Fixed signature
21499         * CheckedListBox.cs: Fixed attribute; added missing attributes
21500         * Panel.cs: Fixed attributes
21501         * PropertyTabChangedEventArgs.cs: Added missing attribute
21502         * PropertyValueChangedEventArgs.cs: Added missing attribute
21503         * Binding.cs: Fixed attribute
21504         * ListViewItemConverter: Implemented ListViewSubItemConverter class
21505         * ListBox.cs: Fixed attribute; added missing attributes;
21506         * ScrollableControl.cs: Added missing attributes
21507         * PictureBox.cs: Added missing attributes; implemented missing property
21508         * DateTimePicker.cs: Added missing attributes
21509         * Theme.cs (ToolWindowCaptionHeight): Fixed type
21510         * MonthCalendar.cs: Fixed attributes
21511         * StatusBarPanel.cs: Added missing attributes
21512         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
21514 2005-02-16  Peter Bartok  <pbartok@novell.com>
21516         * TextBoxBase.cs: The previous method to enforce height yet remember
21517           the requested high was less than ideal, this is an attempt to do
21518           it better.
21519         * Control.cs: Added comment about possible problem
21520         * Copyright: Updated format
21521         * GridItemType.cs: Fixed swapped values
21523 2005-02-15  Jackson Harper  <jackson@ximian.com>
21525         * BaseCollection.cs: Use property so we never access an
21526         uninitialized list. Also initialize the list in the property.
21528 2005-02-15  Peter Bartok  <pbartok@novell.com>
21530         * GroupBox.cs (ProcessMnemonic): Implemented
21531         * Label.cs (ProcessMnemonic): Implemented
21532         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
21533           hotkeys
21535 2005-02-15  Peter Bartok  <pbartok@novell.com>
21537         * RadioButton.cs (ProcessMnemonic): Implemented
21538         * CheckBox.cs (ProcessMnemonic): Implemented
21539         * Control.cs:
21540           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
21541             handling
21542           - Added internal method to allow calling ProcessMnemonic from other
21543             controls
21544         * ContainerControl.cs:
21545           - Started support for handling validation chain handling
21546           - Implemented ProcessMnemonic support
21547           - Added Select() call to Active, to make sure the active control
21548             receives focus
21549         * Form.cs: Setting toplevel flag for Forms (this was lost in the
21550           FormParent rewrite)
21551         * ThemeWin32Classic.cs:
21552           - DrawCheckBox(): Fixed stringformat to show hotkeys
21553           - DrawRadioButton(): Fixed stringformat to show hotkeys
21554         * CommonDialog.cs: Removed WndProc override, not needed
21556 2005-02-14  Peter Bartok  <pbartok@novell.com>
21558         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
21559           missed those in the rewrite
21561 2005-02-14  Miguel de Icaza  <miguel@novell.com>
21563         * NumericUpDown.cs (Increment, ToString): Add.
21564         (DecimalPlaces): implement.
21565         
21566         Add attributes.
21567         
21568         * UpDownBase.cs: Add the designer attributes.
21570 2005-02-13  Peter Bartok  <pbartok@novell.com>
21572         * Panel.cs: Removed border_style, now in Control
21573         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
21574           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
21576 2005-02-13  Peter Bartok  <pbartok@novell.com>
21578         * MouseButtons.cs: Added missing attributes
21579         * XplatUIStructs.cs: Added enumeration for title styles
21580         * LeftRightAlignment.cs: Added missing attributes
21581         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
21582           it compatible with Graphics.FromHwnd()
21583         * SelectedGridItemChangedEventArgs.cs: Fixed property type
21584         * Keys.cs: Added missing attributes
21585         * SelectionRange.cs: Added missing attributes
21586         * SelectionRangeConverter.cs: Added
21587         * XplatUI.cs:
21588           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
21589             ReleaseMenuDC methods
21590           - Renamed ReleaseWindow to UngrabWindow
21591           - Added proper startup notice to allow version identification
21592         * Form.cs:
21593           - Added missing attributes
21594           - Removed FormParent concept
21595         * Label.cs: Removed border_style field, now in Control
21596         * RadioButton.cs: Now properly selects RadioButton when focus is
21597           received
21598         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
21599         * Control.cs:
21600           - Added missing attributes
21601           - Added borderstyle handling
21602           - Removed FormParent concept support
21603           - Fixed calls to XplatUI to match changed APIs
21604           - Fixed bug that would case us to use disposed Graphics objects
21605           - Removed unneeded internal methods
21606           - PerformLayout(): Fixed to handle DockStyle.Fill properly
21607           - SelectNextControl(): Fixed to properly check common parents
21608         * TextBoxBase.cs: Removed border_style field (now in Control)
21609         * MessageBox.cs:
21610           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
21611             fixed calculations for form size
21612           - Added support for localized strings and icons
21613           - Improved form size calculations, added border
21614         * ListView.cs: Removed border_style field (now in Control)
21615         * X11Structs.cs: Moved several structs from X11 driver here
21616         * X11Keyboard.cs: Changed debug message
21617         * Application.cs: Removed FormParent concept support
21618         * CommonDialog.cs:
21619           - Resetting end_modal flag
21620           - Removed FormParent concept support
21621         * NativeWindow.cs: Removed FormParent concept support
21622         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
21623           Client area and Non-Client whole window to allow support for WM_NC
21624           messages
21625         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
21626           prevent using it until it supports Hwnd as per Geoff Norton's request
21627         * ToolBar.cs: Fixed drawing, was not doing proper drawing
21628         * PictureBox.cs: Removed border_style field, now in Control
21629         * XplatUIWin32.cs: Added new driver methods
21631 2005-02-12  Peter Bartok  <pbartok@novell.com>
21633         * OpacityConverter.cs: Implemented
21634         * Hwnd.cs: Internal class to support drivers that need to emulate
21635           client area/non-client area window behaviour
21637 2005-02-11  Peter Bartok  <pbartok@novell.com>
21639         * KeysConverter.cs: Implemented
21641 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
21643         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
21644         * LinkLabel: Added missing attributes
21645         * MainMenu.cs: fixes ToString
21646         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
21647         * ListBox.cs: fixes event position
21648         * TrackBar.cs: adds missing attributes and events
21649         
21650 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
21652         * MenuItem.cs: Use SystemInformation and bug fixes
21653         * MenuAPI.cs: Use SystemInformation and bug fixes
21655 2005-02-09  Jackson Harper  <jackson@ximian.com>
21657         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
21658         their keystate otherwise things like VK_MENU get stuck "on".
21660 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
21662         * ListBox.cs: Fixes AddRange bug
21663         
21664 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
21666         * ProgressBar.cs
21667                 - Add missing attributes
21668                 - Add missing method
21669                 
21670         * CheckedListBox.cs: Added missing attributes
21671                 - Add missing attributes
21672                 - Remove extra method
21673         
21674         * ComboBox.cs: Added missing attributes
21675         * VScrollBar.cs: Added missing attributes
21676         * ScrollBar.cs:  Added missing attributes
21677         * ListBox.cs: Fixes signature, add missing consts
21678         * LinkArea.cs:   Added missing attributes
21679         
21681 2005-02-08  Peter Bartok  <pbartok@novell.com>
21683         * Menu.cs: Added missing attributes
21684         * MainMenu.cs: Added missing attributes
21685         * GroupBox.cs: Added missing attributes
21686         * Label.cs: Added missing attributes
21687         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
21688         * ColorDialog.cs:
21689           - Added Instance and Options properties
21690           - Added missing attributes
21691         * Cursor.cs: Made Serializable
21692         * NotifyIcon: Added missing attributes
21693         * MenuItem.cs: Added missing attributes
21694         * TextBoxBase.cs: Implemented AppendText() and Select() methods
21695         * Panel.cs: Added Missing attributes
21696         * MonthCalendar.cs: Fixed CreateParams
21698 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
21699         
21700         * LinkLabel.cs:
21701                 - Fixes signature
21702                 - Fixes issues with links
21703                 - Adds the class attributes
21705 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
21706         
21707         * ComboBox.cs:
21708                 - Fixes button when no items available in dropdown
21709                 - Fixes repainting problems
21710                 - Adds the class attributes
21711                 
21712 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
21714         * XplatUIOSX.cs: Detect the menu bar and title bar height from
21715         the current theme.  Cache these on startup.
21717 2005-02-07  Jackson Harper  <jackson@ximian.com>
21719         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
21720         the scrollbar buttons when they are depressed.
21722 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
21724         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
21725         Get the display size from the main displayid.  We currently dont
21726         support multiple display configurations.
21728 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
21730         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
21732 2005-02-07  Miguel de Icaza  <miguel@novell.com>
21734         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
21736 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
21738         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
21740 2005-02-04  Jackson Harper  <jackson@ximian.com>
21742         * ThemeWin32Classic.cs: Respect the clipping rect when
21743         drawing. Only fill the intersection of clips and rects so there
21744         isn't a lot of large fills.
21745         * ScrollBar.cs: Pass the correct clipping rect to the theme
21746         engine. Remove some debug code.
21748 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
21749         
21750         * DateTimePicker.cs:
21751                 - Fixed crash on DateTime.Parse, use Constructor instead
21753 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
21754         
21755         * MenuItem.cs:
21756         * MenuAPI.cs:
21757                 - Owner draw support (MeasureItem and DrawItem)
21759 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
21760         
21761         *  Menu.cs:
21762                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
21763                 - Fixes MenuItems.Add range
21764         * MenuItem.cs:
21765                 - MergeMenu and Clone and CloneMenu functions
21767 2005-02-03  Jackson Harper  <jackson@ximian.com>
21769         * ScrollBar.cs: Make abstract
21770         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
21771         is abstract.
21773 2005-02-03  Jackson Harper  <jackson@ximian.com>
21775         * ScrollBar.cs: First part of my scrollbar fixups. This removes
21776         all the unneeded refreshes and uses invalidates with properly
21777         computed rects.
21779 2005-02-03  Peter Bartok  <pbartok@novell.com>
21781         * ComponentModel.cs: Added
21782         * IDataGridEditingService.cs: Added
21783         * Timer.cs: Added missing attributes
21784         * ToolTip.cs: Added missing attributes
21786 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
21788         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
21790 2005-02-03  Peter Bartok  <pbartok@novell.com>
21792         * ListBox.cs: Added missing attributes
21794 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
21795         
21796         * ListBox.cs:
21797                 - Fixes font height after font change
21798                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
21799                 
21800 2005-02-02  Peter Bartok  <pbartok@novell.com>
21802         * HandleData.cs: Introduced static methods to allow class
21803           to be more self-contained and track it's own HandleData objects
21804         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
21805           HandleData to use new static methods
21807 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
21809         * Combobox.cs:
21810                 - Fixes default size and PreferredHeight
21811                 - Missing events
21812                 - ObjectCollection.Insert implementation
21813                 
21814         * ListControl.cs
21815                 - Fixes signature
21816         * ListBox.cs:
21817                 - Several fixes
21818                 - ObjectCollection.Insert implementation
21819                 - No selection after clean
21820                 - Small fixes
21822 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
21824         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
21826 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
21828         * Combobox.cs:
21829                 - Caches ItemHeight calculation for OwnerDrawVariable
21830                 - Handles dropdown properly
21831                 - Fixes several minor bugs
21833 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
21835         * ListBox.cs:
21836                 - Fixes 71946 and 71950
21837                 - Fixes changing Multicolumn on the fly
21838                 - Fixes keyboard navigation on Multicolumn listboxes
21840 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
21841         
21842         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
21843         crash reporter log.
21845 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
21847         * XplatUIOSX.cs: Allow applications to actually exit.
21849 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
21851         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
21852         their parent at creation time rather than lazily later.  Fixes a major
21853         regression we were experiencing.
21855 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
21857         * ThemeWin32Classic.cs: more date time picker painting fixes
21858         * DateTimePicker.cs: more monthcalendar drop down fixes
21859         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
21861 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
21863         * ScrollBar.cs:
21864                 - When moving the thumb going outside the control should stop the moving
21865                 - Adds the firing of missing events
21866                 - Fixes no button show if Size is not specified
21867                 - End / Home keys for keyboard navigation
21869 2005-01-30  Peter Bartok  <pbartok@novell.com>
21871         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
21872           sanity check to prevent theoretical loop
21873         * XplatUIWin32.cs (SetVisible): Removed debug output
21874         * XplatUIX11.cs (SystrayChange): Added sanity check
21875         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
21876         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
21877           behaviour, valid until the X11 client window rewrite is done
21878         * TextBox.cs (ctor): Setting proper default foreground and background
21879           colors
21881 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
21883         * Theme: Added DrawDateTimePicker to interface
21884         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
21885         * DateTimePicker.cs: Created (still needs keys and painting code)
21886         * DateTimePickerFormat.cs: added
21887         * MonthCalendar.cs: fixed CreateParams for popup window mode
21888           
21889 2005-01-29  Peter Bartok  <pbartok@novell.com>
21891         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
21892           this should also the calculations for ligher/darker
21893         * Theme.cs: Fixed defaults for ScrollBar widths/heights
21895 2005-01-29  Peter Bartok  <pbartok@novell.com>
21897         * ArrangeDirection.cs: Added
21898         * ArrangeStartingPositon.cs: Added
21899         * SystemInformation.cs: Implemented
21900         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
21901           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
21902           used by SystemInformation class
21903         * X11Strucs.cs: Added XSizeHints structure
21904         * MenuAPI.cs:
21905           - Fixed CreateParams to make sure the menu window is always visible
21906           - TrackPopupMenu: Added check to make sure we don't draw the
21907             menu offscreen
21909 2005-01-29  Peter Bartok  <pbartok@novell.com>
21911         * HandleData.cs: Added method for altering invalid area
21912         * TextBoxBase.cs: Implemented TextLength
21914 2005-01-28  Peter Bartok  <pbartok@novell.com>
21916         * XplatUIX11.cs: Improvement over last patch, not sending
21917           the WM_PAINT directly anymore, instead we scroll any pending
21918           exposed areas and let the system pick out the WM_PAINT later
21920 2005-01-28  Peter Bartok  <pbartok@novell.com>
21922         * SWF.csproj: Deleted, no longer used. Instead,
21923           Managed.Windows.Forms/SWF.csproj should be used
21924         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
21925           directly, to avoid a potential race condition with the next
21926           scroll
21928 2005-01-28  Peter Bartok  <pbartok@novell.com>
21930         * XplatUI.cs: Made class internal
21932 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
21934         * CheckedListBox.cs:
21935                 - Draw focus
21936                 - Fixed Drawing
21937                 - Missing methods and events
21939 2005-01-27  Peter Bartok  <pbartok@novell.com>
21941         * Application.cs (Run): Don't use form if we don't have one
21943 2005-01-27  Peter Bartok  <pbartok@novell.com>
21945         * TextBoxBase.cs (get_Lines): Fixed index off by one error
21947 2005-01-27  Peter Bartok  <pbartok@novell.com>
21949         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
21950         * GridItem.cs: Added; Patch by Jonathan S. Chambers
21951         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
21952         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
21953         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
21954         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
21955         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
21956         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
21957         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
21958         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
21959         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
21960         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
21962 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
21964         * Combobox.cs:
21965                 - Draw focus on Simple Combobox
21966                 - Fixes drawing issues
21967                 - fixes 71834
21969 2005-01-27  Peter Bartok  <pbartok@novell.com>
21971         * Form.cs:
21972           - Place window in default location, instead of hardcoded 0/0
21973           - Send initial LocationChanged event
21974         * Control.cs:
21975           - UpdateBounds after creation to find out where the WM placed us
21976           - Make sure that if the ParentForm changes location the Form
21977             is notified
21978         * XplatUIX11.cs: XGetGeometry will not return the coords relative
21979             to the root, but to whatever the WM placed around us.
21980             Translate to root coordinates before returning toplevel
21981             coordinates
21982         * XplatUIWin32.cs: Removed debug output
21983         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
21984           flag to GetWindowPos, to allow translation of coordinates on X11
21986 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
21988         * ListBox.cs: connect LostFocus Event
21990 2005-01-27  Peter Bartok  <pbartok@novell.com>
21992         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
21993           XplatUIX11.cs: Extended the Systray API
21994         * Form.cs: Removed debug output
21995         * Application.cs: Fixed focus assignment, always need to call
21996           XplatUI.Activate() since Form.Activate() has rules that may
21997           prevent activation
21998         * NotifyIcon.cs: Should be complete now
21999         * ToolTip.cs: Worked around possible timer bug
22001 2005-01-27  Jackson Harper  <jackson@ximian.com>
22003         * TabControl.cs:
22004         - Only invalidate the effected tabs when the
22005         selected index changes. This reduces drawing and gets rid of some
22006         flicker.
22007         - Only refresh if the tabs need to be shifted, otherwise only
22008         invalidate the slider button.
22009         - On windows the tabs are not filled to right if the slider is
22010         visible.
22011         
22012 2005-01-27  Jackson Harper  <jackson@ximian.com>
22014         * TabControl.cs: Only refresh on mouseup if we are showing the
22015         slider. Also only invalidate the button whose state has changed.
22017 2005-01-26  Peter Bartok  <pbartok@novell.com>
22019         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
22020         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
22021           and SystrayRemove() methods
22022         * XplatUIOSX.cs: Stubbed Systray methods
22023         * XplatUIX11.cs:
22024           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
22025             methods
22026           - Fixed broken XChangeProperty calls (marshalling messed up things)
22027         * X11Structs.cs: Added enums and structs required for Size hinting
22028         * NotifyIcon.cs: Added & implemented
22030 2005-01-26  Jackson Harper  <jackson@ximian.com>
22032         * TabControl.cs: Space vertically layed out tabs properly.
22034 2005-01-26  Peter Bartok  <pbartok@novell.com>
22036         * Form.cs (CreateClientParams): Always set the location to 0,0
22037           since we're a child window.
22039         * Control.cs (SetVisibleCore): Always explicitly setting the location
22040           of a toplevel window, apparently X11 doesn't like to move windows
22041           while they're not mapped.
22043 2005-01-26  Jackson Harper  <jackson@ximian.com>
22045         * TabControl.cs: Implement FillToRight size mode with vertically
22046         rendered tabs.
22048 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
22050         * ControlPaint.cs, ThemeWin32Classic.cs
22051                 - Fixes DrawFocusRectangle
22053 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
22055         * MenuAPI.cs:
22056                 - MenuBar tracking only starts when item is first clicked
22057                 - Fixes menu hidding for multiple subitems
22058                 - Unselect item in MenuBar when item Executed
22059                 - Fixes bug 71495
22061 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
22063         * ListControl.cs:
22064                 - IsInputKey for ListBox
22065         * ListBox.cs:
22066                 - Focus item
22067                 - Shift and Control item selection
22068                 - Implement SelectionMode.MultiExtended
22069                 - Fixes RightToLeft
22070         * ComboBox.cs:
22071                 - IsInputKey implemented
22072                 - Do not generate OnTextChangedEdit on internal txt changes
22073                 
22074 2005-01-23  Peter Bartok  <pbartok@novell.com>
22076         * AccessibleObject.cs: Partially implemented Select()
22077         * MonthCalendar.cs: Added missing attributes and events
22078         * Form.cs: Fixed CreateParams behaviour, now controls derived from
22079           form can properly override CreateParams.
22080         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
22081           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
22082           Control performs Invalidate & Update
22083         * NativeWindow (CreateHandle): Added special handling for Form
22084           and Form.FormParent classes to allow overriding of From.CreateParams
22085         * Control.cs:
22086           - ControlNativeWindow: Renamed 'control' variable to more intuitive
22087             name 'owner'
22088           - ControlNativeWindow: Added Owner property
22089           - Removed usage of Refresh() on property changes, changed into
22090             Invalidate(), we need to wait until the queue is processed for
22091             updates, direct calls might cause problems if not all vars for
22092             Paint are initialized
22093           - Added call to UpdateStyles() when creating the window, to set any
22094             styles that CreateWindow might have ignored.
22095           - Added support for Form CreateParent overrides to UpdateStyles()
22096         * MessageBox.cs: Removed no longer needed FormParent override stuff,
22097           CreateParams are now properly overridable
22098         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
22099           CreateParams are now properly overridable
22101 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
22103         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
22104         OnTextBoxChanged.
22106         Capture LostFocus and OnTextBoxChanged.  The later introduces a
22107         recursive invocation that I have not figured out yet.
22109         Reset the timer when not using (it was accumulating).
22112         (OnTextBoxChanged): Set UserEdit to true here to track whether the
22113         user has made changes that require validation.
22115         Reset changing to avoid loops.
22117 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
22119         * NumericUpDown.cs: Display value at startup.
22121         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
22122         ValidateEditText.
22124         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
22125         filled in.  Added some basic parsing of text.
22127         Still missing the OnXXX method overrides, and figuring out the
22128         events that must be emitted.
22130         * UpDownBase.cs: Handle UserEdit on the Text property.
22131         
22132 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
22134         * ComboBox.cs:
22135           - Fixes IntegralHeight
22136           - ToString method
22138 2005-01-21  Jackson Harper  <jackson@ximian.com>
22140         * TabControl.cs: Set the SelectedIndex property when SelectedTab
22141         is set so that the page visibility is updated and the tabs are
22142         sized correctly.
22144 2005-01-21  Jackson Harper  <jackson@ximian.com>
22146         * TabControl.cs: Use cliping rectangle for blitting. Give the
22147         theme the clipping rect so we can do clipping while
22148         drawing. Remove some debug code.
22150 2005-01-21  Jackson Harper  <jackson@ximian.com>
22152         * TabPage.cs: Add a new method so tab pages can force the tab
22153         control to recalculate the tab page sizes.
22154         * TabControl.cs: UpdateOwner needs to make the tab control recalc
22155         sizes.
22157 2005-01-20  Jackson Harper  <jackson@ximian.com>
22159         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
22161 2005-01-20  Jackson Harper  <jackson@ximian.com>
22163         * TreeView.cs: Set the bounds for nodes properly. They were
22164         getting screwed up when checkboxes were not enabled, but images
22165         were.
22167 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
22169         * ListBox.cs:
22170                 - Owner draw support
22171                 - Fixes
22172                 
22173 2005-01-20  Jackson Harper  <jackson@ximian.com>
22175         * XplatUIStructs.cs: More misc keys
22176         * X11Keyboard.cs: Ignore some control keys.
22178 2005-01-20  Jackson Harper  <jackson@ximian.com>
22180         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
22181         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
22183 2005-01-19  Peter Bartok  <pbartok@novell.com>
22185         * Control.cs: Un-selecting the control when it is loosing focus
22187 2005-01-19  Jackson Harper  <jackson@ximian.com>
22189         * TreeView.cs: Hook up to the text controls leave event so we can
22190         end editing when the users clicks outside the text box.
22191         
22192 2005-01-19  Jackson Harper  <jackson@ximian.com>
22194         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
22195         get set in the conversion array.
22197 2005-01-19  Peter Bartok  <pbartok@novell.com>
22199         * Application.cs (ModalRun): Added a call to CreateControl to ensure
22200           focus is properly set
22201         * Button.cs:
22202           - Added missing attributes
22203           - removed styles, those are already set in the base class
22204         * ButtonBase.cs:
22205           - Added missing attributes
22206           - Added clip window styles
22207         * CheckBox.cs: Added missing attributes
22208         * CommonDialog.cs:
22209           - FormParentWindow.CreateParams: Added required clip styles
22210         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
22211           also filters modifier keys
22212         * MessageBox.cs:
22213           - Added assignment of Accept and Cancel button to enable Enter
22214             and Esc keys in MessageBox dialogs
22215           - FormParentWindow.CreateParams: Added required clip styles
22216         * RadioButton.cs: Added missing attributes
22217         * TextControl.cs: No longer draws selection if control does not
22218           have focus
22219         * TextBoxBase.cs:
22220           - Now draws simple rectangle around test area to make it obvious
22221             there's a control. This is a hack until we properly support borders
22222           - A few simple fixes to support selections better, now erases selected
22223             text when typing, and resets selection when using movement keys
22225 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
22227         * UpDownBase.cs: Added some new properties.
22229         * DomainUpDown.cs: Implement a lot to get my test working.
22231 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
22233         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
22235 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
22237         * OSXStructs (WindowAttributes): Fixed csc complaints
22239 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
22241         * XplayUIOSX.cs:
22242           OSXStructs.cs: Initial refactor to move enums and consts into
22243           OSXStructs and use them in the driver for greater readability.
22245 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
22247         * XplatUIOSX.cs: Initial support for Standard Cursors.
22248         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
22250 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
22252         * ComboBox.cs: ability to change style when the ctrl is already
22253         created, missing methods and events, bug fixes, signature fixes
22255 2005-01-19  Peter Bartok  <pbartok@novell.com>
22257         * Cursors.cs (ctor): Added ctor to fix signature
22259 2005-01-18  Peter Bartok  <pbartok@novell.com>
22261         * Button.cs: Implemented DoubleClick event
22262         * ButtonBase.cs:
22263           - Fixed keyboard handling to behave like MS, where the press of
22264             Spacebar is equivalent to a mousedown, and the key release is
22265             equivalent to mouseup. Now a spacebar push will give the same
22266             visual feedback like a mouse click.
22267           - Added missing attributes
22268           - Added ImeModeChanged event
22269           - Added support for generating DoubleClick event for derived classes
22270         * CheckBox.cs:
22271           - Implemented DoubleClick event
22272           - Added missing attributes
22273         * CommonDialog.cs: Added missing attribute
22274         * ContextMenu.cs: Added missing attributes
22275         * RadioButton.cs:
22276           - AutoChecked buttons do not allow to be unselected when clicked
22277             (otherwise we might end up with no selected buttons in a group)
22278           - Added missing attributes
22279           - Implemented DoubleClickEvent
22280         * ThreadExceptionDialog.cs: Enabled TextBox code
22282 2005-01-18  Peter Bartok  <pbartok@novell.com>
22284         * Form.cs: Removed debug output
22285         * Button.cs: Added support for DoubleClick method
22287 2005-01-18  Peter Bartok  <pbartok@novell.com>
22289         * Form.cs:
22290           - Added method to parent window that allows triggering size
22291             calculations when a menu is added/removed
22292           - set_Menu: Cleaned up mess from early days of Form and Control,
22293             now properly triggers a recalc when a menu is added/removed
22294           - Added case to select form itself as focused form if no child
22295             controls exist
22296           - Added PerformLayout call when showing dialog, to ensure properly
22297             placed controls
22298         * Control.cs:
22299           - Select(): Made internal so Form can access it
22300           - Focus(): Only call Xplat layer if required (avoids loop), and sets
22301             status
22302         * Application.cs (Run): Removed hack and calls PerformLayout instead
22303           to trigger calculation when Form becomes visible
22305 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
22307         * ComboBox.cs: fixes for ownerdraw
22309 2005-01-18  Peter Bartok  <pbartok@novell.com>
22311         * TextControl.cs:
22312           - Sentinel is no longer static, each Document gets it's own, this
22313             avoids locking or alternatively overwrite problems when more
22314             than one text control is used simultaneously.
22315           - Switched to use Hilight and HilightText brushes for text selection
22317         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
22319 2005-01-18  Peter Bartok  <pbartok@novell.com>
22321         * Control.cs:
22322           - Hooked up the following events:
22323                 o ControlAdded
22324                 o ControlRemoved
22325                 o HandleDestroyed
22326                 o ImeModeChanged
22327                 o ParentChanged
22328                 o TabStopChanged
22329                 o Invalidated
22330                 o SystemColorsChanged
22331                 o ParentFontChanged
22332                 o Move
22333           - Removed debug output
22334           - Added a call to the current theme's ResetDefaults when a color change
22335             is detected
22336         * Form.cs: Now setting the proper ImeMode
22337         * Theme.cs: Defined a method to force recreation of cached resources
22338           and rereading of system defaults (ResetDefaults())
22339         * ThemeWin32Classic.cs: Added ResetDefaults() stub
22341 2005-01-17  Peter Bartok  <pbartok@novell.com>
22343         * Control.cs: Added missing attributes
22345 2005-01-17  Jackson Harper  <jackson@ximian.com>
22347         * TreeNode.cs: Implement editing. Add missing properties selected
22348         and visible.
22349         * TreeView.cs: Implement node editing. Also some fixes to use
22350         Invalidate (invalid area) instead of Refresh when selecting.
22352 2005-01-17  Peter Bartok  <pbartok@novell.com>
22354         * Control.cs:
22355           - Implemented InvokeGotFocus() method
22356           - Implemented InvokeLostFocus() method
22357           - Implemented InvokePaint() method
22358           - Implemented InvokePaintBackground() method
22359           - Implemented InvokeClick() method
22360           - Implemented FindForm() method
22361           - Implemented RectangleToClient() method
22362           - Implemented ClientToRectangle() method
22363           - Implemented ResetBackColor() method
22364           - Implemented ResetCursor() method
22365           - Implemented ResetFont() method
22366           - Implemented ResteForeColor() method
22367           - Implemented ResetImeMode() method
22368           - Implemented ResetLeftToRight() method
22369           - Implemented ResetText() method
22370           - Implemented Scale() methods
22371           - Implemented ScaleCore() method
22372           - Implemented Update() method
22373           - Removed unused variables
22374           - Stubbed AccessibilityNotifyClients and
22375             ControlAccessibleObject.NotifyClients() methods (dunno what to do
22376             with those yet)
22377           - Now setting proper default for RightToLeft property
22378           - Fixed bug in SetClientSizeCore that would cause windows to get
22379             really big
22380           - Now sending Click/DoubleClick events
22381           - Now selecting controls when left mouse button is clicked on
22382             selectable control
22383         * AccessibleEvents.cs: Added
22384         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
22385         * XplatUIOSX.cs: Stubbed UpdateWindow() method
22386         * XplatUIWin32.cs: Implemented UpdateWindow() method
22387         * XplatUIX11.cs: Implemented UpdateWindow() method
22388         * Form.cs: Removed stray semicolon causing CS0162 warning
22389         * ThemeWin32Classic.cs: Fixed unused variable warnings
22390         * ScrollableControl.cs: Now calls base method for ScaleCore
22391         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
22392           style to avoid interference with internal click handler (which is
22393           different than standard Control click handling)
22394         * RadioButton.cs:
22395           - Now unchecks all sibling radio buttons when control is
22396             selected (Fixes #68756)
22397           - Removed internal tabstop variable, using the one inherited from
22398             Control
22400 2005-01-17  Jackson Harper  <jackson@ximian.com>
22402         * NavigateEventArgs.cs: Fix base type.
22403         * LinkLabel.cs: Sig fix
22404         
22405 2005-01-17  Jackson Harper  <jackson@ximian.com>
22407         * TreeView.cs: Only invalidate the effected nodes bounds when
22408         selecting nodes.
22410 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
22412         * XplatUIWin32.cs: fixes Win32 marshaling
22413         * XplatUIX11.cs: fixes method signature
22415 2005-01-17  Peter Bartok  <pbartok@novell.com>
22417         * XplatUIX11.cs: Clean up resources when we no longer need them
22419 2005-01-17  Peter Bartok  <pbartok@novell.com>
22421         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
22422           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
22423           and DestroyCursor() methods.
22424         * Cursor.cs: Partially implemented, now supports standard cursors;
22425           still contains some debug code
22426         * Cursors.cs: Implemented class
22427         * Control.cs:
22428           - WndProc(): Added handling of WM_SETCURSOR message, setting the
22429             appropriate cursor
22430           - Implemented Cursor property
22431           - Replaced break; with return; more straightforwar and possibly
22432             faster
22433           - Now properly setting the result for WM_HELP
22434         * X11Structs.cs: Added CursorFontShape enum
22435         * XplatUIStructs.cs:
22436           - Added StdCursor enum (to support DefineStdCursor() method)
22437           - Added HitTest enum (to support sending WM_SETCURSOR message)
22438         * XplatUIX11.cs:
22439           - Now sends the WM_SETCURSOR message
22440           - Implemented new cursor methods
22441         * XplatUIOSX.cs: Stubbed new cursor methods
22442         * XplatUIWin32.cs:
22443           - Implemented new cursor methods
22444           - Added GetSystemMetrics function and associated enumeration
22446 2005-01-15  Peter Bartok  <pbartok@novell.com>
22448         * Control.cs:
22449           - WndProc(): Now handles EnableNotifyMessage
22450           - SelectNextControl(): Fixed bug where if no child or sibling
22451             controls exist we looped endlessly
22453 2005-01-14  Jackson Harper  <jackson@ximian.com>
22455         * TreeView.cs: Recalculate the tab pages when a new one is added
22456         so that the proper bounding rects are created.
22458 2005-01-14  Jackson Harper  <jackson@ximian.com>
22460         * TreeView.cs: Draw a gray box instead of a grip in the lower
22461         right hand corner when there are both horizontal and vertical
22462         scroll bars.
22464 2005-01-14  Jackson Harper  <jackson@ximian.com>
22466         * Control.cs: When erasing backgrounds use FromHwnd instead of
22467         FromHdc when there is a NULL wparam. This occurs on the X driver.
22468         * XplatUIX11.cs: Set the wparam to NULL.
22470 2005-01-13  Jackson Harper  <jackson@ximian.com>
22472         * PictureBox.cs: Implement missing methods (except ToString, need
22473         to test that on windows) and events. When visibility is changed we
22474         need to redraw the image because the buffers are killed. When size
22475         is changed refresh if the sizemode needs it.
22477 2005-01-13  Peter Bartok  <pbartok@novell.com>
22479         * Control.cs (SelectNextControl): Was using wrong method to select
22480           a control
22482 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
22484         * ComboBox.cs: fixes dropstyle
22486 2005-01-13  Peter Bartok  <pbartok@novell.com>
22488         * Form.cs:
22489           - Implemented Select() override
22490           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
22491           - Now sets keyboard focus on startup
22492         * Control.cs (SelectNextControl): Now properly handles directed=true
22493         * TextBoxBase.cs:
22494           - WndProc: Now passes tab key on to base if AcceptTabChar=false
22495           - Added (really bad) focus rectangle (mostly for testing)
22496         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
22497           to enforce redraw on focus changes
22498         * ContainerControl.cs:
22499           - Fixed detection of Shift-Tab key presses
22500           - Fixed traversal with arrow keys
22501         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
22502           gonna keep this or if it's complete yet
22503         
22504 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
22506         * ComboBox.cs: missing properties, fixes
22508 2005-01-13  Peter Bartok  <pbartok@novell.com>
22510         * Panel.cs (ctor): Setting Selectable window style to off
22511         * Splitter.cs (ctor): Setting Selectable window style to off
22512         * GroupBox.cs (ctor): Setting Selectable window style to off
22513         * Label.cs (ctor): Setting Selectable window style to off
22515 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
22517         * UpDownBase.cs (InitTimer): If the timer has been already
22518         created, enable it.
22520         Use a TextBox instead of a Label.
22522 2005-01-12  Jackson Harper  <jackson@ximian.com>
22524         * TreeView.cs: Refresh the tree after sorting the nodes. Always
22525         draw the connecting node lines (when ShowLines is true).
22526         * TreeNode.cs: The nodes index can now be updated. This is used
22527         when a node collection is sorted.
22528         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
22529         insert or an existing unsorted node collection can be sorted.
22530         
22531 2005-01-12  Peter Bartok  <pbartok@novell.com>
22533         * ContainerControl.cs: Implemented ProcessDialogKeys()
22535 2005-01-12  Peter Bartok  <pbartok@novell.com>
22537         * Control.cs:
22538           - Implemented SelectNextControl() method
22539           - Several focus related bug fixes
22540           - Fixed Docking calculations to match MS documentation and
22541             behaviour
22543 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
22545         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
22546         bug fixes
22548 2005-01-12  Peter Bartok  <pbartok@novell.com>
22550         * Control.cs:
22551           - Fixed broken Contains() method
22552           - Implemented GetNextControl() method. Finally. This is the pre-
22553             requisite for focus handling.
22555 2005-01-12  Peter Bartok  <pbartok@novell.com>
22557         * OSXStrucs.cs: Added
22559 2005-01-12  Peter Bartok  <pbartok@novell.com>
22561         * XplatUIWin32.cs:
22562           - Removed PeekMessageFlags
22563           - Implemented SetWindowStyle() method
22564         * XplatUIStructs.cs: Added PeekMessageFlags
22565         * X11Structs: Added missing border_width field to XWindowChanges struct
22566         * XplatUIX11.cs:
22567           - PeekMessage: Now throws exception if flags which are not yet
22568             supported are passed
22569           - Implemented SetWindowStyle() method
22570           - Fixed SetZOrder to handle AfterHwnd properly
22571         * XplatUI.cs: Added SetWindowStyle() method
22572         * XplatUIDriver.cs: Added SetWindowStyle() abstract
22573         * Control.cs:
22574           - Implemented UpdateStyles() method
22575           - Implemented UpdateZOrder() method
22576         * XplatUIOSX.cs: Added SetWindowStyle() stub
22578 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
22580         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
22581         button mouse).
22584 2005-01-11  Jackson Harper  <jackson@ximian.com>
22586         * TreeView.cs: Still need to draw lines to siblings even if out of
22587         the current node is out of the clip.
22589 2005-01-11  Jackson Harper  <jackson@ximian.com>
22591         * TreeView.cs: When setting the hbar/vbar/grip position use
22592         SetBounds so that perform layout is only called once. Also suspend
22593         and resume layout so layout is only done once for all controls.
22594         - Removed some debug fluff
22595         * SizeGrip.cs: Call base implmentation in overriding methods.
22596         - When visibility is changed the drawing buffers are killed so we
22597         need to redraw.
22599 2005-01-11  Jackson Harper  <jackson@ximian.com>
22601         * TreeView.cs: Calculate the open node count while drawing. This
22602         saves us an entire tree traversal for every paint operation. Use
22603         a member var for the open node count so less vars are passed around.
22605 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
22607         * MonthCalendar.cs:
22608         - fixed selection to use mousemove, not mouse polling on timer
22609         * ThemeWin32Classic.cs
22610         - removed redundant unused variable "no_more_content"
22611         
22612 2005-01-11  Peter Bartok  <pbartok@novell.com>
22614         * XplatUIX11.cs (DoEvents): Needs to return when no more events
22615           are pending, so it now calls PeekMessage instead of GetMessage;
22616           implemented a incomplete version of PeekMessage
22617         
22618 2005-01-11  Peter Bartok  <pbartok@novell.com>
22620         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
22621           I18n issues
22622         * TextBoxBase.cs: Added sending of TextChanged event
22624 2005-01-10  Jackson Harper  <jackson@ximian.com>
22626         * TreeView.cs: Try not to draw outside the clipping rectangle on
22627         each node element.
22629 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
22631         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
22633 2005-01-10  Jackson Harper  <jackson@ximian.com>
22635         * TreeView.cs:
22636         - Implement fast scrolling. Now only the newly
22637         exposed nodes are drawn and the old image is moved using the
22638         XplatUI::ScrollWindow method.
22639         - Factor in height of nodes when calculating whether or not the
22640         node is in the clipping rect.
22642 2005-01-10  Jackson Harper  <jackson@ximian.com>
22644         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
22646 2005-01-10  Peter Bartok  <pbartok@novell.com>
22648         * Application.cs: Added temporary hack to resolve all our resize
22649           required issues on startup. This will get fixed properly at
22650           some point in the future
22652 2005-01-10  Jackson Harper  <jackson@ximian.com>
22654         * SizeGrip.cs: New internal class that is used as a sizing
22655         grip control...hence the name.
22657 2005-01-10  Peter Bartok  <pbartok@novell.com>
22659         * Control.cs: Implemented proper TabIndex handling, now assigning
22660           a tabindex when a control is added to a container
22661         * GroupBox.cs (ctor): Now sets the Container style bit, required
22662           for Control.GetNextControl()
22664 2005-01-09  Jackson Harper  <jackson@ximian.com>
22666         * TextBoxBase.cs: Clear window when scrolling (fixes build).
22668 2005-01-09  Peter Bartok <pbartok@novell.com>
22670         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
22671           XplatUIX11.cs: Added ability to control ScrollWindow expose and
22672           an overload for ScrollWindow to allow only scrolling a rectangle
22674 2005-01-09  Peter Bartok <pbartok@novell.com>
22676         * Form.cs:
22677           - Implemented SetDesktopBounds method
22678           - Implemented SetDesktopLocation method
22680 2005-01-08  Jackson Harper  <jackson@ximian.com>
22682         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
22683         the node count has changed, this removes to VScroll::Refresh calls
22684         when drawing.
22686 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
22688         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
22690 2005-01-07  Jackson Harper  <jackson@ximian.com>
22692         * TreeNode.cs: Just update the single node when it is
22693         checked. Don't refresh after toggling, the Expand/Collapse already
22694         handles this.
22695         * TreeView.cs: Respect clipping a little more when drawing. Try
22696         not to redraw things that don't need to be redrawn. Just hide the
22697         scrollbars when they are no longer needed instead of removing
22698         them, so they don't have to be created again and again.
22699         
22700 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
22702         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
22703         coordinates to window space to place the caret properly, FIXED.
22704         Implement GetWindowState & SetWindowState
22706 2005-01-06  Peter Bartok <pbartok@novell.com>
22708         * Form.cs:
22709           - Implemented ClientSize property
22710           - Implemented DesktopBounds property
22711           - Implemented DesktopLocation property
22712           - Implemented IsRestrictedWindow property
22713           - Implemented Size property
22714           - Implemented TopLevel property
22715           - Implemented FormWindowState property
22716         * Control.cs:
22717           - Implemented GetTopLevel() method
22718           - Implemented SetTopLevel() method
22719         * X11Structs.cs (Atom):
22720           - Added AnyPropertyType definition
22721           - Added MapState definiton and updated XWindowAttribute struct
22722         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
22723         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
22724         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
22725         * XplatUIWin32.cs:
22726           - Implemented GetWindowState() and SetWindowState() methods
22727           - Fixed Win32GetWindowLong return type
22728         * XplatUIX11.cs:
22729           - Introduced central function for sending NET_WM messages
22730           - Implemented GetWindowState() and SetWindowState() methods
22731         * TextBoxBase.cs (set_Lines):
22732           - Now uses Foreground color for text added via Text property (Duh!)
22733           - Added code to remember programmatically requested size (fixes
22734             behaviour when Multiline is set after Size)
22735           - Added AutoSize logic
22737 2005-01-06  Jackson Harper  <jackson@ximian.com>
22739         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
22741 2005-01-06  Jackson Harper  <jackson@ximian.com>
22743         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
22744         set to less then 0.
22746 2005-01-06  Jackson Harper  <jackson@ximian.com>
22748         * ScrollableControl.cs: Lazy init the scrollbars.
22749         
22750 2005-01-06  Jackson Harper  <jackson@ximian.com>
22752         * Theme.cs: Speed up getting pens and solid brushes, by using
22753         their ARGB as a hash instead of tostring and not calling Contains.
22755 2005-01-06  Peter Bartok <pbartok@novell.com>
22757         * Form.cs:
22758           - Implemented OnActivated and OnDeactivate event trigger
22759           - Implemented Activate() method
22760           - Fixed ShowDialog() to activate the form that was active before
22761             the dialog was shown
22762         * XplatUIX11.cs:
22763           - Added global active_window var that tracks the currently active
22764             X11 window
22765           - Now always grabs Property changes from the root window to always
22766             catch changes on the active window property
22767           - Added code to PropertyNotify handler to send Active/Inactive
22768             messages when state changes. This puts X11 and Win32 en par on
22769             WM_ACTIVATE notifications (except for double notifications when
22770             the user clicks away from our modal window to another one of our
22771             windows)
22773 2005-01-05  Jackson Harper  <jackson@ximian.com>
22775         * ImageList.cs: Implment ctor
22777 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
22779         * XplatUIOSX.cs: Implement Activate/SetTopmost
22781 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
22783         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
22785 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
22787         * XplatUIOSX.cs: Implement GetActive/SetFocus.
22789 2005-01-05  Peter Bartok <pbartok@novell.com>
22791         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
22792           XplatUIOSX.cs: Added GetActive method to return the currently
22793           active window for the application (or null, if none is active)
22794         * Form.cs:
22795           - Implemented ActiveForm
22796           - Commented out owner assignment for modal dialogs (causes problems
22797             on Win32, since the owner will be disabled)
22798           - Reworked some Active/Focus handling (still incomplete)
22799         * CommonDialog.cs: Commented out owner assignment for modal dialogs
22800           (causes problems on Win32, since the owner will be disabled)
22801         * IWin32Window: Added ComVisible attribute
22803 2005-01-05  Peter Bartok <pbartok@novell.com>
22805         * ToolTip.cs (WndProc): Enable setting focus now that we have the
22806           required XplatUI functions.
22808 2005-01-05  Peter Bartok <pbartok@novell.com>
22810         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
22811           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
22812           to implement focus and activation handling; still incomplete and
22813           with debug output
22815 2005-01-04  Peter Bartok <pbartok@novell.com>
22817         * TextBoxBase.cs: Changed access level for Document property to
22818           match switch to internal for TextControl
22820 2005-01-04  Peter Bartok <pbartok@novell.com>
22822         * AccessibleObject: Added ComVisible attribute
22824 2005-01-04  Jackson Harper  <jackson@ximian.com>
22826         * X11Keyboard.cs: Remove unneeded var.
22828 2005-01-04  Jackson Harper  <jackson@ximian.com>
22830         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
22831         but PAINT.
22832         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
22833         ClientMessage. This makes apps exit cleanly (more often).
22834         
22835 2005-01-04  Jackson Harper  <jackson@ximian.com>
22837         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
22838         handling focus, return correct colors and fonts,
22839         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
22840         handle selection, horizontal scrolling, and mouse interaction.
22842 2005-01-04  Peter Bartok <pbartok@novell.com>
22844         * ICommandExecutor.cs: Added
22845         * IDataGridColumnStyleEditingNotificationService.cs: Added
22846         * IFeatureSupport.cs: Added
22847         * IFileReaderService.cs: Added
22848         * IDataObject.cs: Added ComVisible attribute
22849         * AmbientProperties.cs: Added
22850         * BaseCollection.cs: Added missing attributes
22851         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
22852         * BaseCollection.cs: Added missing attributes
22853         * Binding.cs: Added TypeConverter attribute
22854         * BindingContext.cs: Added DefaultEvent attribute
22855         * BindingsCollection.cs: Added DefaultEvent attribute
22856         * Button.cs: Added DefaultValue attribute
22857         * DragEventArgs.cs: Added ComVisible attribute
22858         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
22859         * KeyEventArgs.cs: Added ComVisible attribute
22860         * KeyPressEventArgs.cs: Added ComVisible attribute
22861         * MouseEventArgs.cs: Added ComVisible attribute
22862         * NavigateEventArgs.cs: Added
22863         * NavigateEventHandler.cs: Added
22864         * FeatureSupport.cs: Added
22865         * OSFeature.cs: Added
22866         * Theme.cs: Added abstract Version property to support OSFeature
22867         * ThemeWin32Classic.cs: Added Version property to
22868           support OSFeature.Themes
22869         * ProgressBar.cs: Removed OnPaintBackground override, not required since
22870           the proper styles to avoid background drawing are set, also doesn't
22871           match MS signature
22872         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
22873         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
22874         * ScrollEventArgs.cs: Added ComVisible attribute
22875         * SplitterEventArgs.cs: Added ComVisible attribute
22876         * AccessibleSelection.cs: Added Flags attribute
22877         * Appearance.cs: Added ComVisible attribute
22878         * Border3DSide.cs: Added ComVisible attribute
22879         * Border3DStyle.cs: Added ComVisible attribute
22880         * BorderStyle.cs: Added ComVisible attribute
22881         * DragAction.cs: Added ComVisible attribute
22882         * ErrorBlinkStyle.cs: Added
22883         * ScrollEventType.cs: Added ComVisible attribute
22884         * AnchorStyles.cs: Added Editor attribute
22885         * DockStyle.cs: Added Editor attribute
22886         * HorizontalAlignment.cs: Added ComVisible attribute
22887         * HelpEventArgs.cs: Added ComVisible attribute
22888         * PaintEventArgs.cs: Added IDisposable
22890 2005-01-04  Peter Bartok <pbartok@novell.com>
22892         * TextControl.cs: Switched Line, LineTag and Document classes to
22893           internal
22895 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
22897         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
22898         Simple mode, fixes, IntegralHeight, etc.
22900 2005-01-04  Peter Bartok <pbartok@novell.com>
22902         * TextBoxBase.cs: Using proper font variable now
22904 2005-01-04  Peter Bartok <pbartok@novell.com>
22906         * Form.cs (ShowDialog): Set parent to owner, if provided
22907         * GroupBox.cs: Removed unused vars
22908         * TextControl.cs:
22909           - Added GetHashCode() for Document and LineTag classes
22910           - Removed unused variables
22911           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
22912             to allow translation between continuous char position and line/pos
22913         * CheckBox.cs: Removed vars that are provided by base class
22914         * RadioButton.cs: Removed vars that are provided by base class, added
22915           new keyword where required
22916         * LinkLabel.cs: Added new keyword where required
22917         * Control.cs (WndProc): Removed unused variable
22918         * TextBoxBase.cs:
22919           - Finished SelectionLength property
22920           - Implemented SelectionStart property
22921           - Implemented Text property
22922           - Removed unused vars
22923         * MessageBox.cs: Added new keyword where required
22924         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
22925           WndProc signature
22926         * MenuAPI.cs: Added new keyword where required
22927         * ButtonBase.cs: Removed vars that are provided by base class, added
22928           new keyword where required
22929         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
22930           argument to double, to allow compiling with csc 2.0 (Atsushi ran
22931           into this)
22932         * Application.cs (Run): Now triggers the ThreadExit event
22933         * CommonDialog.cs: Added new keyword where required; now properly sets
22934           parent (owner) for dialog
22935         * XplatUIX11.cs: Commented out unused vars
22936         * StatusBar.cs: Fixed signature for Text property
22937         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
22939 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
22941         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
22942         TrackBar.cs, MonthCalendar.cs: remove unused vars
22944 2005-01-03  Jackson Harper  <jackson@ximian.com>
22946         * ThemeWin32Classic.cs:
22947         * X11Keyboard.cs: Remove unused vars.
22949 2005-01-03  Peter Bartok  <pbartok@novell.com>
22951         * TextBox.cs:
22952           - set_Text: Tied into TextControl
22953           - set_TextAlignment: Tied into TextControl
22954         * TextControl.cs:
22955           - Added alignment properties and implemented alignment handling
22956             and drawing (still has a bug, not generating proper expose events)
22957           - Added new Line() constructor to allow passing the line alignment
22958           - Fixed selection setting, properly handling end<start now
22959           - Added aligment considerations to RecalculateDocument()
22960         * TextBoxBase.cs:
22961           - Now properly enforces control height for single line controls
22962           - Added support for CharacterCasing
22963           - Added IsInputKey override
22964           - Fixed Keys.Enter logic
22965           - Added SetBoundsCore override
22966           - Fixed mouse selection handling
22968 2005-01-03  Jackson Harper  <jackson@ximian.com>
22970         * TreeView.cs:
22971           - Collapse and uncheck all nodes when CheckBoxes is disabled.
22972           - Checkboxes are always aligned to the bottom of the node,
22973           regardless of item height.
22974           - Use the node bounds to draw the text so we can center it when
22975           the item height is greater then the font height.
22976           - Node::Bounds are only the text part of the node.
22977         * TreeNode.cs: New method to combine collapsing and unchecking all
22978           nodes recursively.
22980 2005-01-02  Jackson Harper  <jackson@ximian.com>
22982         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
22983         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
22984         tree when a check is changed. TODO: Only refresh the checked node.
22986 2004-12-30  Jackson Harper  <jackson@ximian.com>
22988         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
22989         * TreeNode.cs: When collapsing make sure to never collapse the
22990         root node.
22992 2004-12-29  Jackson Harper  <jackson@ximian.com>
22994         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
22995         
22996 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
22998         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
23000 2004-12-28  Peter Bartok  <pbartok@novell.com>
23002         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
23003           not yet assigned
23005 2004-12-28  Peter Bartok  <pbartok@novell.com>
23007         * Control.cs (WndProc): Added WM_HELP handler, now generates
23008           HelpRequested event
23009         * Form.cs: Added HelpButton property and required support code
23010         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
23012 2004-12-28  Peter Bartok  <pbartok@novell.com>
23014         * CommonDialog.cs:
23015           - Made DialogForm.owner variable internal
23016           - Added check to ensure owner form is set before setting
23017             owner properties in CreateParams
23019 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
23021         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
23022           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
23023           GetCursorPos.  Fix major visibility issues.  Rework the windowing
23024           system to support borderless/titleless windows (implements menus).
23025           Fix GetWindowPos.  Implement initial background color support for
23026           views.
23028 2004-12-28  Peter Bartok  <pbartok@novell.com>
23030         * Form.cs (get_CreateParams): Make sure we have an owner before using
23031           the owner variable. Implement proper default if no owner exists
23033 2004-12-28  Peter Bartok  <pbartok@novell.com>
23035         * In preparation for making Managed.Windows.Forms the default build target
23036           for System.Windows.Forms, the following stubbed files were added.
23037           Dialogs are currently being implemented by contributors and are only
23038           short-term place holders.
23039         * ColorDialog.cs: Initial check-in (minmal stub)
23040         * DataGrid.cs: Initial check-in (minimal stub)
23041         * DataGridLineStyle.cs: Initial check-in (minimal stub)
23042         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
23043         * DataGridTableStyle.cs: Initial check-in (minimal stub)
23044         * FontDialog.cs: Initial check-in (minimal stub)
23045         * FileDialog.cs: Initial check-in (minimal stub)
23046         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
23047         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
23048         * OpenFileDialog: Initial check-in (minimal stub)
23049         * IComponentEditorPageSite.cs: Initial check-in
23050         * Splitter.cs: Initial check-in (for Jackson)
23051         * SplitterEventArgs.cs: Initial check-in (for Jackson)
23052         * SplitterEventHandler.cs: Initial check-in (for Jackson)
23053         * TextBox.cs: Initial check-in; still needs some wiring to
23054           TextControl backend
23055         * Form.cs: Implemented ControlBox property
23056         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
23057         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
23058         * TextControl.cs: Added selection functionality; added todo header
23059         * TextBoxBase.cs:
23060           - Implemented Lines property
23061           - Implemented TextHeight property
23062           - Implemented SelectedText property
23063           - Implemented SelectionLength property
23064           - Implemented SelectAll method
23065           - Implemented ToString method
23066           - Removed and cleaned up some debug code
23067           - Implemented (still buggy) mouse text selection
23069 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
23071         * ComboBox.cs: Complete DropDownList implementation, fixes.
23073 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
23075         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
23076         * ComboBoxStyle.cs: ComboBoxStyle enum
23077         * ComboBox.cs: Initial work on ComboBox control
23079 2004-12-21  Peter Bartok  <pbartok@novell.com>
23081         * Control.cs (ctor, CreateParams): Moved setting of is_visible
23082           forward so that anything that creates a window gets the default,
23083           also no longer uses Visible property in CreateParams to avoid
23084           walking up the parent chain and possibly get the wrong visible
23085           status. Fixed IsVisible to no longer walk up to the parent.
23087 2004-12-21  Peter Bartok  <pbartok@novell.com>
23089         * Form.cs (ShowDialog): Unset modality for the proper window
23091 2004-12-20  Peter Bartok  <pbartok@novell.com>
23093         * CommonDialog.cs: Initial check-in
23095 2004-12-20  Peter Bartok  <pbartok@novell.com>
23097         * Control.cs (Visible): Now uses the parent window instead of the
23098           client area window for the property
23100         * Form.cs
23101           - ShowDialog(): Now uses the proper window for modality
23102           - The default visibility state for the form parent is now false. This
23103             will prevent the user from seeing all the changes to the form and
23104             its controls before the application hits Application.Run()
23105           - Removed some stale commented out code
23107         * NativeWindow.cs:
23108           - Added FindWindow() method to have a method to check for existence
23109             of a window handle
23110           - Added ability to override default exception handling (for example
23111             when debugging with VS.Net; to do this the ExternalExceptionHandler
23112             define must be set
23113           - Removed some useless debug output
23115         * XplatUIX11.cs:
23116           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
23117             not working as expected
23118           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
23119             property to allow switching back to the modal window if focus is
23120             given to another one of our windows (Application Modal)
23121           - Now only sets override_redirect if we create a window
23122             without WS_CAPTION
23123           - Moved EventMask selection before mapping of newly created window
23124             so we can catch the map event as well
23125           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
23126           - Added various Atom related DllImports
23127           - Implemented Exit() method
23128           - .ctor() : No longer shows window if WS_VISIBLE is not defined
23129             in the CreateParams
23131         * MessageBox.cs: Now properly deals with the FormParent window by
23132           providing an override the FormParent CreateParams property to
23133           set as POPUP instead of OVERLAPPED window.
23135 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
23137         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
23138         Minor code cleanup.
23140 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
23141         
23142         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
23144 2004-12-18  Peter Bartok  <pbartok@novell.com>
23146         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
23147           implementing SetModal() method
23149 2004-12-18  Peter Bartok  <pbartok@novell.com>
23151         * X11Structs.cs (XGCValues): Fixed type of function element
23152         * XplatUI.cs: Added ScrollWindow() method
23153         * XplatUIDriver.cs: Added ScrollWindow() abstract
23154         * XplatUIWin32.cs: Implemented ScrollWindow() method
23155         * XplatUIX11.cs: Implemented ScrollWindow() method
23156         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
23158 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
23160         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
23161         Some more keyboard support (INCOMPLETE)
23163 2004-12-17  Peter Bartok  <pbartok@novell.com>
23165         * TextControl.cs:
23166         - Added color attribute to line tags.
23167         - Added color argument to all functions dealing with tags
23168         - Added color argument support to various functions
23169         - Fixed miss-calculation of baseline/shift in certain circumstances
23171         * TextBoxBase.cs: Added new color option to test code
23173 2004-12-17  Jackson Harper  <jackson@ximian.com>
23175         * TreeNode.cs:
23176         * MonthCalendar.cs: Signature fixes
23178 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
23180         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
23181         keyboard event moved it.  Create a new graphics context for each paint resolves this
23183 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
23185         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
23186         Make caret exist and go blink blink.  Initial keyboard support.
23187         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
23188         works.
23190 2004-12-17  Jackson Harper  <jackson@ximian.com>
23192         * XplatUIStructs.cs: Updated set of virtual keycodes.
23193         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
23195 2004-12-17  Jackson Harper  <jackson@ximian.com>
23197         * XplatUIX11.cs: Prune old keyboard code.
23199 2004-12-17  Jackson Harper  <jackson@ximian.com>
23201         * XplatUIX11.cs: When generating mouse wparams get the modifier
23202         keys from the ModifierKeys property.
23204 2004-12-17  Jackson Harper  <jackson@ximian.com>
23206         * X11Keyboard.cs: Send up/down input when generating
23207         messages. Remove some unused vars.
23209 2004-12-17  Jackson Harper  <jackson@ximian.com>
23211         * TabControl.cs:
23212         * TreeView.cs: get rid of warnings.
23214 2004-12-17  Jackson Harper  <jackson@ximian.com>
23216         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
23218 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
23220         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
23221           CheckedListBox.cs: Implementation
23223 2004-12-17  Peter Bartok  <pbartok@novell.com>
23225         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
23227 2004-12-16  Peter Bartok  <pbartok@novell.com>
23229         * TextControl.cs:
23230           - InsertCharAtCaret(): Fixed start pos fixup
23231           - CaretLine_get: No longer derives the line from the tag, the tag
23232             could be stale if lines in the document have been added or deleted
23233           - RebalanceAfterDelete(): Fixed bug in balancing code
23234           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
23235           - Line.Streamline(): Now can also elminate leading empty tags
23236           - DumpTree(): Added a few more tests and prevented exception on
23237             uninitialized data
23238           - Added Debug section for Combining lines
23239           - Delete(): Now copies all remaining properties of a line
23240           
23241         * TextBoxBase.cs:
23242           - Left mousebutton now sets the caret (and middle button still acts
23243             as formatting tester, which must go away soon)
23244           - Added Debug section for Deleting/Combining lines
23245           - Fixed calculations for UpdateView after Combining lines
23247 2004-12-16  Peter Bartok  <pbartok@novell.com>
23249         * TextControl.cs: Now properly aligns text on a baseline, using the
23250           new XplatUI.GetFontMetrics() method. Simplified several calculations
23251         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
23252           defined
23254 2004-12-16  Peter Bartok  <pbartok@novell.com>
23256         * XplatUI.cs: Added GetFontMetrics() method
23257         * XplatUIDriver.cs: Added GetFontMetrics() abstract
23258         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
23259           into libgdiplus, our private GetFontMetrics function
23260         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
23261         * XplatUIWin32.cs: Implemented GetFontMetrics() method
23263 2004-12-16  Jackson Harper  <jackson@ximain.com>
23265         * XplatUIStruct.cs: Add enum for dead keys
23266         * X11Keyboard.cs: Map and unmap dead keys.
23268 2004-12-16  Jackson Harper  <jackson@ximian.com>
23270         * X11Keyboard.cs: Detect and use the num lock mask.
23272 2004-12-16  Peter Bartok  <pbartok@novell.com>
23274         * Control.cs (CreateGraphics): Added check to make sure the
23275           handle of the window exists before calling Graphics.FromHwnd()
23277 2004-12-16  Peter Bartok  <pbartok@novell.com>
23279         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
23280           contains a lot of code that's not supposed to be there for the
23281           real thing, but required for developing/testing the textbox
23282           backend.
23284 2004-12-16  Peter Bartok  <pbartok@novell.com>
23286         * TextControl.cs:
23287         - Fixed Streamline method
23288         - Added FindTag method to Line
23289         - Added DumpTree method for debugging
23290         - Added DecrementLines() method for deleting lines
23291         - Fixed UpdateView to update the cursor to end-of-line on single-line
23292           updates
23293         - Added PositionCaret() method
23294         - Fixed MoveCaret(LineDown) to move into the last line, too
23295         - Added InsertChar overload
23296         - Fixed InsertChar tag offset calculations
23297         - Added DeleteChar() method
23298         - Added Combine() method for folding lines
23299         - Fixed Delete() method, no longer allocates wasted Line object and
23300           now copies all properties when swapping nodes
23301         - Delete() method now updates document line counter
23303 2004-12-15  Jackson Harper  <jackson@ximian.com>
23305         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
23306         * X11Keyboard.cs: Expose the currently selected modifier keys
23307         through a property.
23309 2004-12-15  Peter Bartok  <pbartok@novell.com>
23311         * TextControl.cs: Initial check-in. Still incomplete
23313 2004-12-15  Jackson Harper  <jackson@ximian.com>
23315         * TreeNode.cs:
23316         * TreeView.cs: Fix build on csc (second time today ;-))
23318 2004-12-15  Jackson Harper  <jackson@ximian.com>
23320         * TreeView.cs: Store the treenodes plus/minus box bounds when it
23321         is calculated and use this for click testing.
23322         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
23324 2004-12-15  Jackson Harper  <jackson@ximian.com>
23326         * TreeView.cs: Pass the nodes image index to the image list when
23327         drawing that image.
23329 2004-12-15  Jackson Harper  <jackson@ximian.com>
23331         * X11Keyboard.cs: Set messages hwnd.
23332         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
23333         post_message calls.
23335 2004-12-15  Jackson Harper  <jackson@ximian.com>
23337         * X11Keyboard.cs: Fix to compile with csc.
23338         
23339 2004-12-15  Jackson Harper  <jackson@ximian.com>
23341         * X11Structs.cs: Add key mask values
23342         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
23343         * X11Keyboard.cs: New file - Extrapolates and interpolates key
23344         down/up foo into WM_CHAR foo
23345         * KeyboardLayouts.cs: Common keyboard layouts
23346         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
23347         post messages into the main queue.
23349 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
23351         * Button.cs: implement ProcessMnemonic
23352         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
23353           brushes everytime
23354         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
23355         * ButtonBase.cs: Show HotkeyPrefix (not the &)
23357 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
23358         
23359         * MonthCalendar.cs: Implemented click-hold for next/previous month
23360           and date selection
23361           
23362 2004-12-11  Peter Bartok  <pbartok@novell.com>
23364         * X11Structs.cs:
23365           - Added XKeyboardState (moved from XplatUIX11.cs)
23366           - Added XCreateGC related enums and structures
23367           - Added GXFunction for XSetFunction
23369         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
23371         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
23372           CaretVisible() calls
23374         * ToolTip.cs: Added code to prevent stealing focus from app windows
23376         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
23377           DestroyCaret, SetCaretPos and CaretVisible)
23379         * XplatUIX11.cs:
23380           - Added implementation for caret functions
23381           - Moved hover variables into a struct, to make it a bit easier
23382             on the eyes and to debug
23383           - Removed XKeyboardState (moved to XplatUIX11.cs)
23384           - Moved Keyboard properties into the properties region
23386         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
23387           call to get a graphics context for our control
23389         * XplatUIOSX.cs: Added empty overrides for the new caret functions
23391         * TreeView.cs: Fixed bug. No matter what color was set it would always
23392           return SystemColors.Window
23394         * XplatUIWin32.cs: Implemented caret overrides
23396 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
23398         * ListBox.cs: fire events, implement missing methods and properties,
23399         sorting.
23401 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
23403         * MonthCalendar.cs: invalidation bug fixing
23404         * ThemeWin32Classic.cs: paint fixing
23406 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
23408         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
23409         prepare the CGContextRef there now.
23411 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
23413         * MonthCalendar.cs:
23414           - optimisationL only invalidate areas that have changed
23415         * ThemeWin32Classic.cs:
23416           - only paint parts that intersect with clip_area
23418 2004-12-09  Peter Bartok  <pbartok@novell.com>
23420         * Application.cs: Undid changes from r37004 which cause problems
23421         on X11
23423 2004-12-09  Ravindra  <rkumar@novell.com>
23425         * ToolBar.cs: Added support for displaying ContextMenu
23426         attached to a button on ToolBar.
23427         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
23428         property.
23430 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
23432         * Label.cs: autosize works in text change and removes unnecessary
23433         invalidate
23435 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
23437         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
23438         remove warnings
23440 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
23442         * XplatUIOSX.cs: Added mouse move/click/grab support
23443         Remove some debugging WriteLines not needed anymore.
23444         Add window resizing/positioning.
23445         Fix visibility on reparenting.
23447 2004-12-08  Peter Bartok  <pbartok@novell.com>
23449         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
23451 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
23453         * XplatUIOSX.cs: Initial checkin
23454         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
23456 2004-12-03  Ravindra <rkumar@novell.com>
23458         * ListView.cs: Added some keybindings and fixed scrolling.
23459         ScrollBars listen to ValueChanged event instead of Scroll
23460         Event. This would let us take care of all changes being
23461         done in the scrollbars' values programmatically or manually.
23462         * ListView.cs (CanMultiselect): Added a check for shift key.
23463         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
23464         * ListViewItem.cs (Clone): Fixed. We need to make a copy
23465         of ListViewSubItemCollection as well.
23467 2004-12-06  Peter Bartok <pbartok@novell.com>
23469         * Control.cs (Parent): Added check and exception to prevent
23470         circular parenting
23472 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
23474         * ListBox.cs: implemented clipping, selection single and multiple,
23475         bug fixing
23477 2004-12-03  Ravindra <rkumar@novell.com>
23479         * ListView.cs (ListView_KeyDown):
23480         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
23481         when CTRL key is pressed.
23482         * ListViewItem.cs (Selected): Fixed setting the property.
23484 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
23486         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
23488         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
23489         MinimizeBox, ShowInTaskbar, TopMost properties.
23491         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
23492         will be implemented).
23494 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
23496         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
23498         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
23499         tests.
23500         
23501         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
23502         
23503         * TreeView.cs: BackColor is Colors.Window.
23505 2004-12-01  Jackson Harper  <jackson@ximian.com>
23507         * TreeView.cs: When resizing the tree if the user is making it
23508         smaller we don't get expose events, so we need to handle adding
23509         the horizontal scrollbar in the size changed handler as well as
23510         the expose handler.
23512 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
23514         * DrawItemState.cs: fixes wrong enum values
23516 2004-12-01  Jackson Harper  <jackson@ximian.com>
23518         * TreeView.cs: Resize the hbar as well as the vbar on resize.
23520 2004-12-01  Jackson Harper  <jackson@ximian.com>
23522         * NodeLabelEditEventArgs.cs:
23523         * NodeLabelEditEventHandler.cs:
23524         * OpenTreeNodeEnumerator.cs:
23525         * TreeNode.cs:
23526         * TreeNodeCollection.cs:
23527         * TreeView.cs:
23528         * TreeViewAction.cs:
23529         * TreeViewCancelEventArgs.cs:
23530         * TreeViewCancelEventHandler.cs:
23531         * TreeViewEventArgs.cs:
23532         * TreeViewEventHandler.cs: Initial implementation.
23534 2004-12-01  Ravindra <rkumar@novell.com>
23536         * ListView.cs (CalculateListView): Fixed scrolling related
23537         calculations. Also, removed some debug statements from other
23538         places.
23539         * ListViewItem.cs: Changed access to 'selected' instance variable
23540         from private to internal.
23541         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
23543 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
23545         * ThemeWin32Classic.cs: remove cache of brush and pens for
23546         specific controls and use the global system, fixes scrollbutton
23547         bugs (for small sizes, disabled, etc)
23548         
23549         * ScrollBar.cs: does not show the thumb for very small controls
23550         (as MS) and allow smaller buttons that the regular size
23552 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
23554         * UpDownBase.cs: Add abstract methods for the interface.
23555         Add new virtual methods (need to be hooked up to TextEntry when it
23556         exists).
23557         Add override methods for most features.
23558         Computes the size, forces the height of the text entry.
23560         * NumericUpDown.cs: Put here the current testing code.
23562         * Set eol-style property on all files that do not have mixed line
23563         endings, to minimize the future problems.  There are still a few
23564         files with mixed endings, and someone should choose whether they
23565         want to move it or not.
23567 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
23569         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
23570         System.Colors
23571         
23572 2004-11-30  Ravindra <rkumar@novell.com>
23574         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
23575         drawing and replaced use of SystemColors by theme colors.
23576         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
23577         * ListView.cs (ListViewItemCollection.Add): Throw exception when
23578         same ListViewItem is being added more than once.
23580 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
23582         * MonthCalendar.cs:
23583           - ControlStyles love to make the control not flicker
23584           
23585 2004-11-30  Peter Bartok  <pbartok@novell.com>
23587         * CharacterCasing.cs: Added
23589 2004-11-29  Peter Bartok  <pbartok@novell.com>
23591         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
23592           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
23593           I am removing these files as they conflict with already completed
23594           work. While it is fantastic to get contributions to MWF, I
23595           respectfully ask that everyone please coordinate their contributions
23596           through mono-winforms-list or #mono-winforms at this time. We're
23597           explicitly avoiding stubbing and don't want controls that don't have
23598           their basic functionality implemented in svn. Please also see
23599           http://www.mono-project.com/contributing/winforms.html
23602 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
23604         * Application.cs (ModalRun): Don't hang after exit.
23606         * Theme.cs: New TreeViewDefaultSize property.
23608         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
23609         with less hardcoded SystemColors constant.
23610         Implemented TreeViewDefaultSize.
23612         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
23613         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
23616 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
23618         * MonthCalendar.cs:
23619           - Fix NextMonthDate and PrevMonthDate click moving calendar
23621 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
23623         * MonthCalendar.cs:
23624           - Fix usage of ScrollChange Property when scrolling months
23626 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
23628         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
23629          - Fixes menu destroying
23630          - Support adding and removing items on already created menus
23632 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
23634         * MonthCalendar.cs:
23635           - Re-worked all bolded dates handling to match win32
23636         * ThemeWin32Classic.cs:
23637           - Fixed rendering with bolded dates
23639 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
23641         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
23642         - Horizontal scroolbar
23643         - Multicolumn
23644         - Fixes
23647 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
23649         * MonthCalendar.cs:
23650           - Fix Usage of MaxSelectionCount from SelectionRange
23651           - Fixed Shift + Cursor Selection
23652           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
23653           - Fixed normal cursor selection to be compat with win32
23654           - Fixed Shift + Mouse Click selection
23656 2004-11-24  Peter Bartok <pbartok@novell.com>
23658         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
23659         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
23660         * XplatUIX11.cs:
23661           - CreatedKeyBoardMsg now updates keystate with Alt key
23662           - Added workaround for timer crash to CheckTimers, Jackson will
23663             develop a proper fix and check in later
23664           - Implemented DispatchMessage
23665           - Removed calling the native window proc from GetMessage (call
23666             now moved to DispatchMessage)
23668         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
23669           the keydata (Fixes bug #69831)
23671         * XplatUIWin32.cs:
23672           - (DispatchMessage): Switched to return IntPtr
23673           - Added DllImport for SetFocus
23675 2004-11-24  Ravindra <rkumar@novell.com>
23677         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
23678         background drawing.
23679         * ListViewItem.cs: Fixed various properties, calculations
23680         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
23681         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
23682         and some internal properties. Fixed MouseDown handler and Paint
23683         method.
23685 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
23687         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
23689 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
23691         * ContainerControl.cs: correct accidental check in of local changes
23693 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
23695         * ThemeWin32Classic.cs:
23696                 - Fixed Drawing Last month in grid (sometimes not showing)
23697         * MonthCalendar.cs:
23698                 - Fixed title width calculation bug (makeing title small)
23700 2004-11-23  Peter Bartok <pbartok@novell.com>
23702         * XplatUIX11.cs:
23703           - Added generation of WM_MOUSEHOVER event
23704           - Added missing assignment of async_method atom
23705           - Fixed WM_ERASEBKGND; now only redraws the exposed area
23707 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
23709         * ThemeWin32Classic.cs:
23710                 - Fixed Drawing of today circle when showtodaycircle not set
23711                 - fixed drawing of first and last month in the grid (gay dates)
23712         * MonthCalendar.cs:
23713                 - Fixed Drawing of today circle
23714                 - Fixed drawing of grady dates
23715                 - Fixed HitTest for today link when ShowToday set to false
23716                 - Fixed DefaultSize to obey ShowToday
23718 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
23720         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
23721         * System.Windows.Forms/Theme.cs
23722         * MonthCalendar.cs: added for MonthCalendar
23723         * SelectionRange.cs: added for MonthCalendar
23724         * Day.cs: added for MonthCalendar: added for MonthCalendar
23725         * DateRangeEventArgs.cs: added for MonthCalendar
23726         * DateRangeEventHandler.cs: added for MonthCalendar
23728 2004-11-22  Ravindra <rkumar@novell.com>
23730         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
23731         property.
23733 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
23735         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
23736         event handler.
23737         
23738         * NumericUpDown.cs: Added new implementation.
23739         * UpDownBase.cs: Added new implementation.
23741         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
23742         implementations.
23743         
23744         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
23745         implementations.
23747         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
23748         methods.
23750 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
23752         * Timer.cs  (Dispose): Should call the base dispose when
23753         overriding.
23755 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
23757         * ScrollBar.cs: updates thumb position when max, min or increment
23758         is changed
23760 2004-11-21  Ravindra <rkumar@novell.com>
23762         * ListView.cs: Implemented item selection, activation and
23763         column header style. Fixed properties to do a redraw, if
23764         required. Added support for MouseHover, DoubleClick, KeyDown
23765         and KeyUp event handling and some minor fixes.
23766         * ListViewItem.cs: Fixed constructor.
23767         * ThemeWin32Classic.cs: Improved drawing for ListView.
23769 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
23771         * ThemeWin32Classic.cs: initial listbox drawing code
23772         * DrawMode.cs: new enumerator
23773         * ListControl.cs: stubbed class
23774         * ListBox.cs: initial implementation
23775         * Theme.cs: new methods definitions
23776         * SelectionMode.cs: new enumerator
23778 2004-11-17  Peter Bartok  <pbartok@novell.com>
23780         * XplatUIWin32.cs: Added double-click events to the class style
23781         * Control.cs (WndProc):
23782           - Added handling of click-count to MouseDown/ MouseUp events.
23783           - Added handling of middle and right mouse buttons
23784           - Removed old debug code
23786 2004-11-17  Jackson Harper  <jackson@ximian.com>
23788         * XplatUIX11.cs: Use the new Mono.Unix namespace.
23790 2004-11-17  Ravindra <rkumar@novell.com>
23792         * ListView.cs: Added event handling for MouseMove/Up/Down.
23793         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
23794         * ThemeWin32Classic.cs: We need to clear the graphics context and
23795         draw column header in a proper state.
23798 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
23800         *  Menu.cs: fixes signature
23802 2004-11-16  Peter Bartok  <pbartok@novell.com>
23804         * XplatUIX11.cs (GetMessage): Implemented generation of
23805           double click mouse messages
23807 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
23809         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
23810         not by menu
23812 2004-11-11  Peter Bartok  <pbartok@novell.com>
23814         * HandleData.cs: Added Visible property
23815         * XplatUIX11.cs (IsVisible): Now uses Visible property from
23816           HandleData
23817         * XplatUIX11.cs: Removed old debug leftovers
23818         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
23819         * Control.cs (WndProc): Removed old debug leftovers,
23820           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
23821           needed WM_SIZE handling
23823 2004-11-11  Jackson Harper  <jackson@ximian.com>
23825         * OwnerDrawPropertyBag.cs:
23826         * TreeViewImageIndexConverter.cs: Initial implementation
23828 2004-11-10  Jackson Harper  <jackson@ximian.com>
23830         * ThemeWin32Classic.cs:
23831         * TabControl.cs: instead of moving tabs by the slider pos just
23832         start drawing at the tab that is offset by the slider. This way
23833         scrolling always moves by exactly one tab.
23835 2004-11-10  Jackson Harper  <jackson@ximian.com>
23837         * TabControl.cs: You can only scroll left when the slider has
23838         already ben moved right.
23839         
23840 2004-11-10  Jackson Harper  <jackson@ximian.com>
23842         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
23843         the clip area.
23844         
23845 2004-11-10  Jackson Harper  <jackson@ximian.com>
23847         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
23848         clip area.
23849         
23850 2004-11-09  Jackson Harper  <jackson@ximian.com>
23852         * TabControl.cs (CalcXPos): New helper method so we can determine
23853         the proper place to start drawing vertical tabs.
23854         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
23855         
23856 2004-11-09  Jackson Harper  <jackson@ximian.com>
23858         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
23859         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
23860         and Bottom, left and right are illegal values for this and
23861         multiline is enabled when the alignment is set to left or right.
23862         (DrawTab): Each alignment block should draw the text itself now
23863         because Left requires special love. Also add rendering for Left
23864         aligned tabs.
23865         
23866 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
23868         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
23869         does not destroy the windows, removes debugging messages
23871 2004-11-09  jba  <jba-mono@optusnet.com.au>
23873         * ThemeWin32Classic.cs
23874         (DrawButtonBase): Fix verticle text rect clipping in windows
23875         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
23876         rendering and incorrect text rect clipping
23877         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
23878         rendering and incorrect text rect clipping
23879         
23880 2004-11-08  Jackson Harper  <jackson@ximian.com>
23882         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
23883         bottom when they are bottom aligned so the bottoms of the tabs get
23884         displayed.
23885         * TabControl.cs (DropRow): Move rows up instead of down when the
23886         tab control is bottom aligned.
23888 2004-11-08 13:59  pbartok
23890         * XplatUIX11.cs:
23891           - Added handling for various window styles
23892           - Added handling for popup windows
23893           - Added SetTopmost handling
23895 2004-11-08 13:55  pbartok
23897         * XplatUIWin32.cs:
23898           - Added argument to SetTopmost method
23899           - Fixed broken ClientToScreen function
23901 2004-11-08 13:53  pbartok
23903         * XplatUIStructs.cs:
23904           - Added missing WS_EX styles
23906 2004-11-08 13:53  pbartok
23908         * XplatUI.cs, XplatUIDriver.cs:
23909           - Added argument to SetTopmost
23911 2004-11-08 13:52  pbartok
23913         * X11Structs.cs:
23914           - Added XSetWindowAttributes structure
23915           - Improved XWindowAttributes structure
23916           - Added SetWindowValuemask enum
23917           - Added window creation arguments enum
23918           - Added gravity enum
23919           - Added Motif hints structure
23920           - Added various Motif flags and enums
23921           - Added PropertyMode enum for property functions
23923 2004-11-08 13:50  pbartok
23925         * Form.cs:
23926           - Fixed arguments for updated SetTopmost method
23928 2004-11-08 13:49  pbartok
23930         * ToolTip.cs:
23931           - Fixed arguments for updated SetTopmost function
23932           - Fixed usage of PointToClient
23934 2004-11-08 13:44  pbartok
23936         * MenuAPI.cs:
23937           - Added Clipping of children and siblings
23939 2004-11-08 13:41  pbartok
23941         * MainMenu.cs:
23942           - Removed SetMenuBarWindow call. We do this in Form.cs
23944 2004-11-08 13:40  jackson
23946         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
23947           scrolling jimmi in the correct location with bottom aligned tabs
23949 2004-11-08 13:36  pbartok
23951         * ContainerControl.cs:
23952           - Implemented BindingContext
23953           - Implemented ParentForm
23955 2004-11-08 12:46  jackson
23957         * TabControl.cs: Put bottom rendered tabs in the right location
23959 2004-11-08 07:15  jordi
23961         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
23962           removes dead code
23964 2004-11-05 17:30  jackson
23966         * TabControl.cs: When selected tabs are expanded make sure they
23967           don't go beyond the edges of the tab control
23969 2004-11-05 14:57  jackson
23971         * TabControl.cs: Reset show_slider so if the control is resized to
23972           a size where it is no longer needed it's not displayed anymore
23974 2004-11-05 13:16  jackson
23976         * TabControl.cs: Make tab pages non visible when added to the
23977           control
23979 2004-11-05 12:42  jackson
23981         * TabControl.cs: Implement SizeMode.FillToRight
23983 2004-11-05 12:16  jackson
23985         * Control.cs: Do not call CreateHandle if the handle is already
23986           created
23988 2004-11-05 11:46  jackson
23990         * TabControl.cs: Remove superflous call to CalcTabRows
23992 2004-11-05 09:07  jackson
23994         * XplatUIX11.cs: Update for Mono.Posix changes
23996 2004-11-05 07:00  ravindra
23998         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
23999           scrolling.
24001 2004-11-04 22:47  jba
24003         * ThemeWin32Classic.cs:
24004           - Fix Button rendering for FlatStyle = Flat or Popup
24005           - Fix RadioButton and CheckBox rendering when Appearance = Button
24006             (normal and flatstyle).
24007           - Correct outer rectangle color when drawing focus rectangle
24008           - Adjust button bounds to be 1 px smaller when focused
24009           - Make button not draw sunken 3d border when pushed (windows compat)
24010           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
24011           - Offset the text in RadioButton and Checkbox when being rendered as
24012           a button.
24013           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
24014           radiobuttons
24015           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
24016           - Fixed disabled text rendering for normally rendered radiobuttons
24018 2004-11-04 10:26  jackson
24020         * TabControl.cs: Recalculate tab rows when resizing
24022 2004-11-04 07:47  jordi
24024         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
24025           collection completion, drawing issues, missing features
24027 2004-11-04 05:03  ravindra
24029         * ScrollBar.cs:
24030                 - We need to recalculate the Thumb area when
24031                 LargeChange/maximum/minimum values are changed.
24032           - We set the 'pos' in UpdatePos() method to minimum, if it's less
24033                 than minimum. This is required to handle the case if large_change is
24034                 more than max, and use LargeChange property instead of large_change
24035                 variable.
24036           - We return max+1 when large_change is more than max, like MS does.
24038 2004-11-04 04:29  ravindra
24040         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
24041                 - Changed default value signatures (prefixed all with ListView).
24042                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
24043                 ListView.
24044           - Fixed calculations for ListViewItem and implemented Clone()
24045           method.
24047 2004-11-04 04:26  ravindra
24049         * Theme.cs, ThemeWin32Classic.cs:
24050                 - Changed default ListView values signatures (prefixed all with
24051                 ListView).
24052           - Fixed default size values for VScrollBar and HScrollBar.
24053                 - Fixed DrawListViewItem method.
24055 2004-11-04 04:05  ravindra
24057         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
24059 2004-11-04 04:04  ravindra
24061         * ImageList.cs: Implemented the missing overload for Draw method.
24063 2004-11-03 19:29  jackson
24065         * TabControl.cs: Handle dropping rows on selection properly
24067 2004-11-03 11:59  jackson
24069         * TabControl.cs: remove debug code
24071 2004-11-03 11:52  jackson
24073         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
24074           the scrolly widgerywoo
24076 2004-11-02 13:52  jackson
24078         * TabControl.cs: Resize the tab pages and tabs when the tab control
24079           is resized
24081 2004-11-02 13:40  jackson
24083         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
24084           selected tab to the bottom
24086 2004-11-02 13:39  jackson
24088         * TabPage.cs: Store the tab pages row
24090 2004-11-02 12:33  jordi
24092         * MenuItem.cs: fixes handle creation
24094 2004-11-02 11:42  jackson
24096         * TabControl.cs: signature fix
24098 2004-11-02 08:56  jackson
24100         * TabControl.cs: Calculate whether the tab is on an edge properly.
24101           Remove top secret debugging code
24103 2004-11-01 19:57  jackson
24105         * TabControl.cs: Add click handling, and proper sizing
24107 2004-11-01 19:47  jackson
24109         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
24110           tab controls
24112 2004-11-01 19:39  jackson
24114         * TabPage.cs: add internal property to store the bounds of a tab
24115           page
24117 2004-10-30 04:23  ravindra
24119         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
24120           values.
24122 2004-10-30 04:21  ravindra
24124         * ListView.cs, ListViewItem.cs: Added support for scrolling and
24125           fixed calculations.
24127 2004-10-30 03:06  pbartok
24129         * XplatUIX11.cs:
24130           - Removed extension of DllImported libs
24132 2004-10-29 09:55  jordi
24134         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
24135           navigation, itemcollection completion, menu fixes
24137 2004-10-27 22:58  pbartok
24139         * XplatUIX11.cs:
24140           - Now throws a nice error message when no X display could be opened
24142 2004-10-26 13:51  jordi
24144         * ListView.cs: removes warning
24146 2004-10-26 03:55  ravindra
24148         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
24149           ThemeWin32Classic.cs: Some formatting for my last checkins.
24151 2004-10-26 03:36  ravindra
24153         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
24154           control and default values.
24156 2004-10-26 03:35  ravindra
24158         * Theme.cs: Added some default values for ListView control.
24160 2004-10-26 03:33  ravindra
24162         * ToolBar.cs: ToolBar should use the user specified button size, if
24163           there is any. Added a size_specified flag for the same.
24165 2004-10-26 03:33  ravindra
24167         * ColumnHeader.cs: Added some internal members and calculations for
24168           ColumnHeader.
24170 2004-10-26 03:32  ravindra
24172         * ListViewItem.cs: Calculations for ListViewItem.
24174 2004-10-26 03:31  ravindra
24176         * ListView.cs: Added some internal members and calculations for
24177           ListView.
24179 2004-10-22 13:31  jordi
24181         * MenuAPI.cs: speedup menus drawing
24183 2004-10-22 13:16  jackson
24185         * XplatUIX11.cs: Make sure to update exposed regions when adding an
24186           expose event
24188 2004-10-22 11:49  jackson
24190         * Control.cs: oops
24192 2004-10-22 11:41  jackson
24194         * Control.cs: Check to see if the window should have its background
24195           repainted by X when drawing.
24197 2004-10-22 11:31  jackson
24199         * XplatUIX11.cs: When invalidating areas only use XClearArea if
24200           clear is true, this way we do not get flicker from X repainting the
24201           background
24203 2004-10-22 11:28  jackson
24205         * XEventQueue.cs: Queue properly
24207 2004-10-21 09:38  jackson
24209         * XEventQueue.cs: Fix access modifier
24211 2004-10-21 09:36  jackson
24213         * XEventQueue.cs: Don't loose messages
24215 2004-10-21 09:22  jackson
24217         * XEventQueue.cs: Don't loose messages
24219 2004-10-20 04:15  jordi
24221         * BootMode.cs: enum need it by SystemInfo
24223 2004-10-19 21:58  pbartok
24225         * XplatUIWin32.cs:
24226           - Small sanity check
24228 2004-10-19 21:56  pbartok
24230         * Form.cs:
24231           - Added private FormParentWindow class which acts as the container
24232             for our form and as the non-client area where menus are drawn
24233           - Added/Moved required tie-ins to Jordi's menus
24234           - Fixed/Implemented the FormStartPosition functionality
24236 2004-10-19 21:52  pbartok
24238         * Control.cs:
24239           - Removed unneeded locals
24240           - Added code to all size and location properties to understand and
24241             deal with the parent container of Form
24243 2004-10-19 21:33  pbartok
24245         * Application.cs:
24246           - Fixed to deal with new Form subclasses for menus
24248 2004-10-19 17:48  jackson
24250         * XEventQueue.cs: commit correct version of file
24252 2004-10-19 16:50  jackson
24254         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
24256 2004-10-19 16:15  jordi
24258         * MenuAPI.cs: MenuBarCalcSize returns the height
24260 2004-10-19 08:31  pbartok
24262         * Control.cs:
24263           - Added missing call to PreProcessMessage before calling OnXXXKey
24264           methods
24266 2004-10-19 00:04  ravindra
24268         * ToolTip.cs: Fixed constructor.
24270 2004-10-18 09:31  jordi
24272         * MenuAPI.cs: menuitems in menubars do not have shortcuts
24274 2004-10-18 09:26  jordi
24276         * MenuItem.cs: fixes MenuItem class signature
24278 2004-10-18 08:56  jordi
24280         * MenuAPI.cs: prevents windows from showing in the taskbar
24282 2004-10-18 00:28  ravindra
24284         * ToolTip.cs: Suppressed a warning message.
24286 2004-10-18 00:27  ravindra
24288         * Control.cs: Default value of visible property must be true.
24290 2004-10-17 23:19  pbartok
24292         * ToolTip.cs:
24293           - Complete implementation
24295 2004-10-17 23:19  pbartok
24297         * XplatUIX11.cs:
24298           - Added EnableWindow method
24299           - Added SetModal stub
24300           - Added generation of WM_ACTIVATE message (still needs testing)
24301           - Added SetTopMost stub
24302           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
24304 2004-10-17 23:17  pbartok
24306         * XplatUIWin32.cs:
24307           - Removed VirtualKeys to XplatUIStructs
24308           - Implemented SetTopMost method
24309           - Implemented EnableWindow method
24310           - Bugfix in ScreenToClient()
24311           - Bugfixes in ClientToScreen()
24313 2004-10-17 22:51  pbartok
24315         * XplatUIStructs.cs:
24316           - Added WS_EX styles to WindowStyles enumeration
24318 2004-10-17 22:50  pbartok
24320         * XplatUI.cs, XplatUIDriver.cs:
24321           - Added method for enabling/disabling windows
24322           - Added method for setting window modality
24323           - Added method for setting topmost window
24325 2004-10-17 22:49  pbartok
24327         * ThemeWin32Classic.cs:
24328           - Added ToolTip drawing code
24330 2004-10-17 22:49  pbartok
24332         * Theme.cs:
24333           - Added ToolTip abstracts
24335 2004-10-17 22:47  pbartok
24337         * Form.cs:
24338           - Fixed Form.ControlCollection to handle owner relations
24339           - Added Owner/OwnedForms handling
24340           - Implemented Z-Ordering for owned forms
24341           - Removed unneeded private overload of ShowDialog
24342           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
24343             so I hope)
24344           - Fixed Close(), had wrong default
24345           - Added firing of OnLoad event
24346           - Added some commented out debug code for Ownership handling
24348 2004-10-17 22:16  pbartok
24350         * Control.cs:
24351           - Fixed/implemented flat list of controls
24353 2004-10-17 22:14  pbartok
24355         * Application.cs:
24356           - Added code to simulate modal dialogs on Win32
24358 2004-10-17 16:11  jordi
24360         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
24361           mouse event
24363 2004-10-17 13:39  jordi
24365         * MenuAPI.cs: menu drawing fixes
24367 2004-10-15 09:10  ravindra
24369         * StructFormat.cs: General Enum.
24371 2004-10-15 09:09  ravindra
24373         * SizeGripStyle.cs: Enum for Form.
24375 2004-10-15 09:08  ravindra
24377         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
24378           in Theme for ListView.
24380 2004-10-15 09:06  ravindra
24382         * ColumnHeader.cs: Flushing some formatting changes.
24384 2004-10-15 09:05  ravindra
24386         * ListViewItem.cs: Implemented GetBounds method and fixed coding
24387           style.
24389 2004-10-15 09:03  ravindra
24391         * ListView.cs: Implemented Paint method and fixed coding style.
24393 2004-10-15 07:34  jordi
24395         * MenuAPI.cs: fix for X11
24397 2004-10-15 07:32  ravindra
24399         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
24400                 - Renamed Paint() method to Draw() for clarity. Also, moved
24401                 DrawImage() to OnPaint().
24403 2004-10-15 07:25  ravindra
24405         * CheckBox.cs, RadioButton.cs:
24406                 - Removed Redraw (), we get it from ButtonBase.
24407                 - Implemented Paint (), to do class specific painting.
24409 2004-10-15 07:16  ravindra
24411         * ButtonBase.cs:
24412                 - Redraw () is not virtual now.
24413                 - Added an internal virtual method Paint (), so that
24414                 derived classes can do their painting on their own.
24415                 - Modified OnPaint () to call Paint ().
24417 2004-10-15 06:43  jordi
24419         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
24420           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
24422 2004-10-15 00:30  ravindra
24424         * MessageBox.cs:
24425                 - MessageBox on windows does not have min/max buttons.
24426                 This change in CreateParams fixes this on Windows. We
24427                 still need to implement this windowstyle behavior in
24428                 our X11 driver.
24430 2004-10-14 05:14  ravindra
24432         * ToolBar.cs:
24433                 - Changed Redraw () to do a Refresh () always.
24434                 - Fixed the MouseMove event handling when mouse is pressed,
24435                 ie drag event handling.
24436                 - Replaced the usage of ToolBarButton.Pressed property to
24437                 ToolBarButton.pressed internal variable.
24439 2004-10-14 05:10  ravindra
24441         * ToolBarButton.cs:
24442                 - Added an internal member 'inside' to handle mouse move
24443                 with mouse pressed ie mouse drag event.
24444                 - Changed 'Pressed' property to return true only when
24445                 'inside' and 'pressed' are both true.
24446                 - Some coding style love.
24448 2004-10-14 00:17  ravindra
24450         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
24451           public method.
24453 2004-10-14 00:15  ravindra
24455         * ButtonBase.cs: Redraw () related improvements.
24457 2004-10-14 00:14  ravindra
24459         * MessageBox.cs: Moved InitFormSize () out of Paint method and
24460           removed unnecessary calls to Button.Show () method.
24462 2004-10-13 17:50  pbartok
24464         * XplatUIX11.cs:
24465           - Formatting fix
24466           - Removed destroying of window until we solve the problem of X
24467             destroying the window before us on shutdown
24469 2004-10-13 16:32  pbartok
24471         * ButtonBase.cs:
24472           - Now Redraws on MouseUp for FlatStyle Flat and Popup
24474 2004-10-13 14:18  pbartok
24476         * XplatUIX11.cs:
24477           - Added code to destroy the X window
24479 2004-10-13 14:18  pbartok
24481         * XplatUIWin32.cs:
24482           - Added code to destroy a window
24484 2004-10-13 14:12  pbartok
24486         * ButtonBase.cs:
24487           - Added the Redraw on Resize that got dropped in the last rev
24489 2004-10-13 09:06  pbartok
24491         * ThemeWin32Classic.cs:
24492           - Path from John BouAntoun:
24493             * Fix check rendering (centre correctly for normal style, offset
24494               correctly for FlatStyle).
24495             * Fix border color usage (use backcolor) for FlatStyle.Popup
24496             * Use checkbox.Capture instead of checkbox.is_pressed when
24497               rendering flatstyle states.
24499 2004-10-12 21:48  pbartok
24501         * ThemeWin32Classic.cs:
24502           - Removed all occurences of SystemColors and replaced them with the
24503             matching theme color
24505 2004-10-12 21:41  pbartok
24507         * ThemeWin32Classic.cs:
24508           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
24509             him using the function for flatstyle drawing
24510           - Changed functions to use the new version of CPDrawBorder3D
24512 2004-10-12 21:15  pbartok
24514         * ControlPaint.cs:
24515           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
24516             match MS documentation. They need to return defined colors if the
24517             passed color matches the configured control color. Thanks to John
24518             BouAntoun for pointing this out.
24520 2004-10-12 20:57  pbartok
24522         * Control.cs:
24523           - Fix from John BouAntoun: Raise ForeColorChanged event when text
24524             color is changed
24526 2004-10-12 20:46  pbartok
24528         * CheckBox.cs:
24529           - Fix from John BouAntoun: Now properly sets the Appearance property
24531 2004-10-12 20:45  pbartok
24533         * ThemeWin32Classic.cs:
24534           - Fixes from John BouAntoun: now handles forecolors and backcolors
24535             for flatstyle rendered controls much better; It also fixes normal
24536             checkbox rendering when pushed or disabled.
24538 2004-10-08 02:50  jordi
24540         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
24541           work
24543 2004-10-07 08:56  jordi
24545         * ThemeWin32Classic.cs: Removes deletion of cached brushes
24547 2004-10-06 03:59  jordi
24549         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
24550           XplatUIWin32.cs: removes warnings from compilation
24552 2004-10-05 12:23  jackson
24554         * RadioButton.cs: Fix ctor
24556 2004-10-05 11:10  pbartok
24558         * MessageBox.cs:
24559           - Partial implementation by Benjamin Dasnois
24561 2004-10-05 10:15  jackson
24563         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
24564           by John BouAntoun
24566 2004-10-05 03:07  ravindra
24568         * ToolBar.cs:
24569                 - Removed a private method, Draw ().
24570                 - Fixed the ButtonDropDown event handling.
24571                 - Fixed MouseMove event handling.
24573 2004-10-05 03:04  ravindra
24575         * ThemeWin32Classic.cs:
24576                 - Added DrawListView method and ListViewDefaultSize property.
24577                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
24578                 - Changed DOS style CRLF to Unix format (dos2unix).
24580 2004-10-05 03:03  ravindra
24582         * Theme.cs:
24583                 - Added DrawListView method and ListViewDefaultSize property.
24585 2004-10-05 02:42  ravindra
24587         * ToolBarButton.cs: Added an internal member dd_pressed to handle
24588           clicks on DropDown arrow.
24590 2004-10-04 22:56  jackson
24592         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
24593           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
24594           Control handle the buffers, derived classes should not have to
24595           CreateBuffers themselves.
24597 2004-10-04 21:20  jackson
24599         * StatusBar.cs: The control handles resizing the buffers now.
24601 2004-10-04 21:18  jackson
24603         * Control.cs: When resizing the buffers should be invalidated. This
24604           should be handled in Control not in derived classes.
24606 2004-10-04 14:45  jackson
24608         * TabPage.cs: oops
24610 2004-10-04 02:14  pbartok
24612         * LeftRightAlignment.cs:
24613           - Initial check-in
24615 2004-10-04 01:09  jordi
24617         * ThemeWin32Classic.cs: fixes right button position causing right
24618           button not showing on horizontal scrollbars
24620 2004-10-02 13:12  pbartok
24622         * XplatUIX11.cs:
24623           - Simplified the Invalidate method by using an X call instead of
24624             generating the expose ourselves
24625           - Added an expose when the window background is changed
24626           - Implemented ClientToScreen method
24628 2004-10-02 13:08  pbartok
24630         * XplatUIWin32.cs:
24631           - Added Win32EnableWindow method (test for implementing modal
24632           dialogs)
24633           - Added ClientToScreen method and imports
24635 2004-10-02 13:07  pbartok
24637         * XplatUI.cs, XplatUIDriver.cs:
24638           - Added ClientToScreen coordinate translation method
24640 2004-10-02 13:06  pbartok
24642         * KeyPressEventArgs.cs:
24643           - Fixed access level for constructor
24645 2004-10-02 13:06  pbartok
24647         * NativeWindow.cs:
24648           - Changed access level for the window_collection hash table
24650 2004-10-02 13:05  pbartok
24652         * Form.cs:
24653           - Added KeyPreview property
24654           - Added Menu property (still incomplete, pending Jordi's menu work)
24655           - Implemented ProcessCmdKey
24656           - Implemented ProcessDialogKey
24657           - Implemented ProcessKeyPreview
24659 2004-10-02 13:02  pbartok
24661         * Control.cs:
24662           - Added private method to get the Control object from the window
24663           handle
24664           - Implemented ContextMenu property
24665           - Implemented PointToScreen
24666           - Implemented PreProcessMessage
24667           - Implemented IsInputChar
24668           - Implemented IsInputKey
24669           - Implemented ProcessCmdKey
24670           - Completed ProcessKeyEventArgs
24671           - Fixed message loop to call the proper chain of functions on key
24672           events
24673           - Implemented ProcessDialogChar
24674           - Implemented ProcessDialogKey
24675           - Implemented ProcessKeyMessage
24676           - Implemented ProcessKeyPreview
24677           - Added RaiseDragEvent stub (MS internal method)
24678           - Added RaiseKeyEvent stub (MS internal method)
24679           - Added RaiseMouseEvent stub (MS Internal method)
24680           - Added RaisePaintEvent stub (MS Internal method)
24681           - Added ResetMouseEventArgs stub (MS Internal method)
24682           - Implemented RtlTranslateAlignment
24683           - Implemented RtlTranslateContent
24684           - Implemented RtlTranslateHorizontal
24685           - Implemented RtlTranslateLeftRight
24686           - Added generation of KeyPress event
24688 2004-10-02 05:57  ravindra
24690         * ListViewItem.cs: Added attributes.
24692 2004-10-02 05:32  ravindra
24694         * ListView.cs: Added attributes.
24696 2004-10-01 11:53  jackson
24698         * Form.cs: Implement the Close method so work on MessageBox can
24699           continue.
24701 2004-09-30 14:06  pbartok
24703         * XplatUIX11.cs:
24704           - Bug fixes
24706 2004-09-30 11:34  jackson
24708         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
24710 2004-09-30 07:26  ravindra
24712         * ListViewItemConverter.cs: Converter for ListViewItem.
24714 2004-09-30 07:26  ravindra
24716         * SortOrder.cs: Enum for ListView control.
24718 2004-09-30 07:25  ravindra
24720         * ColumnHeader.cs: Supporting class for ListView control.
24722 2004-09-30 07:24  ravindra
24724         * ListView.cs, ListViewItem.cs: Initial implementation.
24726 2004-09-30 07:20  ravindra
24728         * ItemActivation.cs: Enum for ListView Control.
24730 2004-09-29 20:29  pbartok
24732         * XplatUIX11.cs:
24733           - Added lookup of pixel value for background color; tries to get a
24734             color 'close' to the requested color, it avoids having to create a
24735             colormap.  Depending on the display this could mean the used color
24736             is slightly off the desired color. Might have to change it to a more
24737             resource intensive colormap approach, but it will work as a
24738           workaround to avoid red screens.
24740 2004-09-29 14:27  jackson
24742         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
24744 2004-09-28 12:44  pbartok
24746         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
24747           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
24748           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
24749           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
24750           TrackBar.cs, VScrollBar.cs:
24751           - Streamlined Theme interfaces:
24752             * Each DrawXXX method for a control now is passed the object for
24753               the control to be drawn in order to allow accessing any state the
24754               theme might require
24756             * ControlPaint methods for the theme now have a CP prefix to avoid
24757               name clashes with the Draw methods for controls
24759             * Every control now retrieves it's DefaultSize from the current
24760             theme
24762 2004-09-28 12:17  jackson
24764         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
24765           drawing
24767 2004-09-24 14:57  jackson
24769         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
24770           Gives us a nice little performance boost.
24772 2004-09-24 12:02  jackson
24774         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
24775           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
24776           Control and supporting classes. Initial checkin
24778 2004-09-23 13:08  jackson
24780         * Form.cs: Temp build fixage
24782 2004-09-23 01:39  ravindra
24784         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
24785           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
24786           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
24787           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
24788           EventHandlers needed by ListView Control.
24790 2004-09-22 14:12  pbartok
24792         * ScrollableControl.cs:
24793           - Implemented DockPadding property
24794           - Implemented AutoScroll property
24795           - Implemented AutoScrollMargin property
24796           - Implemented AutoScrollMinSize property
24797           - Implemented AutoScrollPosition property
24798           - Implemented DisplayRectangle property (still incomplete)
24799           - Implemented CreateParams property
24800           - Implemented HScroll property
24801           - Implemented VScroll property
24802           - Implemented OnVisibleChanged property
24804 2004-09-22 14:09  pbartok
24806         * Form.cs:
24807           - Added Form.ControllCollection class
24808           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
24809             RemoveOwnedForm (still incomplete, missing on-top and common
24810             minimize/maximize behaviour)
24811           - Added StartPosition property (still incomplete, does not use when
24812             creating the form)
24813           - Added ShowDialog() methods (still incomplete, missing forcing the
24814             dialog modal)
24816 2004-09-22 14:05  pbartok
24818         * Application.cs:
24819           - Added message loop for modal dialogs
24821 2004-09-22 14:02  pbartok
24823         * GroupBox.cs:
24824           - Fixed wrong types for events
24826 2004-09-22 14:00  pbartok
24828         * Shortcut.cs, FormWindowState.cs:
24829           - Fixed wrong values
24831 2004-09-22 12:01  jackson
24833         * Control.cs: Text is never null
24835 2004-09-20 22:14  pbartok
24837         * XplatUIWin32.cs:
24838           - Fixed accessibility level for Idle handler
24840 2004-09-20 18:54  jackson
24842         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
24843           XplatUIX11.cs: New message loop that uses poll so we don't get a
24844           busy loop
24846 2004-09-17 10:43  pbartok
24848         * ScrollBar.cs:
24849           - Fixed behaviour of arrow buttons. Now properly behaves like
24850             Buttons (and like Microsoft's scrollbar arrow buttons)
24852 2004-09-17 10:14  pbartok
24854         * ScrollBar.cs:
24855           - Added missing release of keyboard/mouse capture
24857 2004-09-17 06:18  jordi
24859         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
24860           Theme.cs: Very early menu support
24862 2004-09-16 17:45  pbartok
24864         * XplatUIWin32.cs:
24865           - Fixed sending a window to the front
24866           - Added overload for SetWindowPos to avoid casting
24868 2004-09-16 17:44  pbartok
24870         * Control.cs:
24871           - Added SendToBack and BringToFront methods
24873 2004-09-16 07:00  ravindra
24875         * Copyright: Added Novell URL.
24877 2004-09-16 07:00  ravindra
24879         * ToolBar.cs: Invalidate should be done before redrawing.
24881 2004-09-15 21:19  ravindra
24883         * ColumnHeaderStyle.cs: Enum for ListView Control.
24885 2004-09-15 21:18  ravindra
24887         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
24888           ListView Control.
24890 2004-09-13 18:26  jackson
24892         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
24893           properly
24895 2004-09-13 18:13  jackson
24897         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
24898           a second thread and post messages into the main threads message
24899           queue. This makes timing much more consistent. Both win2K and XP
24900           have a minimum timer value of 15 milliseconds, so we now do this
24901           too.
24903 2004-09-13 15:18  pbartok
24905         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
24906           XplatUIX11.cs:
24907           - Added Z-Ordering methods
24909 2004-09-13 10:56  pbartok
24911         * Form.cs:
24912           - Fixed #region names
24913           - Moved properties and methods into their proper #regions
24915 2004-09-13 10:51  pbartok
24917         * Form.cs:
24918           - Added Accept and CancelButton properties
24919           - Added ProcessDialogKey() method
24921 2004-09-13 08:18  pbartok
24923         * IWindowTarget.cs:
24924           - Initial check-in
24926 2004-09-10 21:50  pbartok
24928         * Control.cs:
24929           - Added DoDragDrop() [incomplete]
24930           - Properly implemented 'Visible' handling
24931           - Added SetVisibleCore()
24932           - Implemented FindChildAtPoint()
24933           - Implemented GetContainerControl()
24934           - Implemented Hide()
24936 2004-09-10 19:28  pbartok
24938         * Control.cs:
24939           - Moved methods into their appropriate #regions
24940           - Reordered methods within regions alphabetically
24942 2004-09-10 18:57  pbartok
24944         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
24945           - Added method to retrieve text from window
24947 2004-09-10 18:56  pbartok
24949         * Control.cs:
24950           - Moved some internal functions into the internal region
24951           - Implemented FontHeight
24952           - Implemented RenderRightToLeft
24953           - Implemented ResizeRedraw
24954           - Implemented ShowFocusCues
24955           - Implemented ShowKeyboardCues
24956           - Implemented FromChildHandle
24957           - Implemented FromHandle
24958           - Implemented IsMnemonic
24959           - Implemented ReflectMessage
24960           - All public and protected Static Methods are now complete
24962 2004-09-10 16:54  pbartok
24964         * Control.cs:
24965           - Implemented remaining missing public instance properties
24966           - Alphabetized some out of order properties
24968 2004-09-10 05:51  ravindra
24970         * PictureBox.cs: Added a check for null image.
24972 2004-09-10 00:59  jordi
24974         * GroupBox.cs: remove cvs tag
24976 2004-09-09 05:25  ravindra
24978         * ToolBar.cs: Make redraw accessible from ToolBarButton.
24980 2004-09-09 05:23  ravindra
24982         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
24983           parent redraw.
24985 2004-09-09 02:28  pbartok
24987         * ThemeWin32Classic.cs:
24988           - Improve disabled string look
24990 2004-09-09 01:15  jordi
24992         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
24993           args and handler
24995 2004-09-08 23:56  ravindra
24997         * ItemBoundsPortion.cs: It's enum, not a class!
24999 2004-09-08 23:47  ravindra
25001         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
25002           Enums for Form.
25004 2004-09-08 21:13  ravindra
25006         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
25007           ListView control.
25009 2004-09-08 21:03  ravindra
25011         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
25012           avoid crash.
25014 2004-09-08 21:01  ravindra
25016         * ScrollableControl.cs: Removed unreachable code.
25018 2004-09-08 06:45  jordi
25020         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
25022 2004-09-08 01:00  jackson
25024         * XplatUIX11.cs: Only run the timers when updating the message
25025           queue. This effectively gives X messages a higher priority then
25026           timer messages. Timers still need love though
25028 2004-09-07 14:01  jackson
25030         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
25031           this for us and the handle is no longer valid.
25033 2004-09-07 13:59  jackson
25035         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
25036           loop that manages to not crash. TODO: Add poll and cleanup timers
25038 2004-09-07 11:12  jordi
25040         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
25042 2004-09-07 03:40  jordi
25044         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
25045           fixes, methods, multiple links
25047 2004-09-06 06:55  jordi
25049         * Control.cs: Caches ClientRectangle rectangle value
25051 2004-09-05 02:03  jordi
25053         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
25054           certain situations
25056 2004-09-04 11:10  jordi
25058         * Label.cs: Refresh when font changed
25060 2004-09-02 16:24  pbartok
25062         * Control.cs:
25063           - Added sanity check to creation of double buffer bitmap
25065 2004-09-02 16:24  pbartok
25067         * ButtonBase.cs:
25068           - Fixed selection of text color
25069           - Fixed handling of resize event; now properly recreates double
25070             buffering bitmap
25071           - Added missing assignment of TextAlignment
25072           - Added proper default for TextAlignment
25074 2004-09-02 14:26  pbartok
25076         * RadioButton.cs:
25077           - Added missing RadioButton.RadioButtonAccessibleObject class
25079 2004-09-02 14:26  pbartok
25081         * Control.cs:
25082           - Added missing Control.ControlAccessibleObject class
25083           - Started to implement Select()ion mechanisms, still very incomplete
25085 2004-09-02 14:25  pbartok
25087         * AccessibleObject.cs:
25088           - Added missing methods
25090 2004-09-02 14:23  pbartok
25092         * AccessibleNavigation.cs, AccessibleSelection.cs:
25093           - Initial check-in
25095 2004-09-02 10:32  jordi
25097         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
25098           pool for pens, brushes, and hatchbruses
25100 2004-09-01 15:30  jackson
25102         * StatusBar.cs: Fix typo
25104 2004-09-01 14:44  pbartok
25106         * RadioButton.cs:
25107           - Fixed state
25109 2004-09-01 14:39  pbartok
25111         * Button.cs, RadioButton.cs:
25112           - Functional initial check-in
25114 2004-09-01 14:01  pbartok
25116         * CheckBox.cs:
25117           - Added missing default
25118           - Added missing region mark
25120 2004-09-01 09:10  jordi
25122         * Label.cs: fixes method signatures, new methods, events, fixes
25123           autosize
25125 2004-09-01 07:19  jordi
25127         * Control.cs: Init string variables with an empty object
25129 2004-09-01 04:20  jordi
25131         * Control.cs: fires OnFontChanged event
25133 2004-08-31 20:07  pbartok
25135         * ButtonBase.cs:
25136           - Enabled display of strings
25138 2004-08-31 20:05  pbartok
25140         * Form.cs:
25141           - Added (partial) implementation of DialogResult; rest needs to be
25142             implemented when the modal loop code is done
25144 2004-08-31 19:55  pbartok
25146         * CheckBox.cs:
25147           - Fixed to match the removal of the needs_redraw concept
25149 2004-08-31 19:55  pbartok
25151         * ButtonBase.cs:
25152           - Removed the rather odd split between 'needs redraw' and redrawing
25153           - Now handles the events that require regeneration (ambient
25154             properties and size)
25156 2004-08-31 19:41  pbartok
25158         * Control.cs:
25159           - Added firing of BackColorChanged event
25160           - Added TopLevelControl property
25161           - Fixed handling of WM_ERASEBKGRND message
25163 2004-08-31 12:49  pbartok
25165         * ButtonBase.cs:
25166           - Removed debug
25167           - Minor fixes
25169 2004-08-31 12:48  pbartok
25171         * CheckBox.cs:
25172           - Finished (famous last words)
25174 2004-08-31 04:35  jordi
25176         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
25177           scrolling bugs, adds new methods
25179 2004-08-30 14:42  pbartok
25181         * CheckBox.cs:
25182           - Implemented CheckBox drawing code
25184 2004-08-30 14:42  pbartok
25186         * ButtonBase.cs:
25187           - Made Redraw() and CheckRedraw() virtual
25188           - Improved mouse up/down/move logic to properly track buttons
25190 2004-08-30 09:44  pbartok
25192         * CheckBox.cs:
25193           - Updated to fix broken build. Not complete yet.
25195 2004-08-30 09:28  pbartok
25197         * CheckState.cs:
25198           - Initial checkin
25200 2004-08-30 09:17  pbartok
25202         * Appearance.cs:
25203           - Initial check-in
25205 2004-08-27 16:12  ravindra
25207         * ToolBarButton.cs: Added TypeConverter attribute.
25209 2004-08-27 16:07  ravindra
25211         * ImageIndexConverter.cs: Implemented.
25213 2004-08-27 14:17  pbartok
25215         * Control.cs:
25216           - Removed unneeded stack vars
25217           - First attempt to fix sizing issues when layout is suspended
25219 2004-08-25 15:35  jordi
25221         * ScrollBar.cs: more fixes to scrollbar
25223 2004-08-25 14:04  ravindra
25225         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
25226           Added the missing divider code and grip for ToolBar Control.
25228 2004-08-25 13:20  pbartok
25230         * Control.cs:
25231           - Control now properly passes the ambient background color to child
25232             controls
25234 2004-08-25 13:20  jordi
25236         * ScrollBar.cs: small bug fix regarding bar position
25238 2004-08-25 12:33  pbartok
25240         * Timer.cs:
25241           - Now only calls SetTimer or KillTimer if the enabled state has
25242           changed
25244 2004-08-25 12:33  pbartok
25246         * XplatUIWin32.cs:
25247           - Fixed timer handling, now seems to work
25248           - Improved error message for window creation
25250 2004-08-25 12:32  pbartok
25252         * Control.cs:
25253           - Fixed generation of MouseUp message
25255 2004-08-25 12:29  jordi
25257         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
25258           and fixes for progressbar
25260 2004-08-24 18:43  ravindra
25262         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
25263           in ToolBar control.
25265 2004-08-24 17:15  pbartok
25267         * Panel.cs:
25268           - Added #region
25269           - Added missing events
25270           - Alphabetized
25272 2004-08-24 17:14  pbartok
25274         * StatusBar.cs, PictureBox.cs:
25275           - Now uses Control's CreateParams
25277 2004-08-24 16:36  pbartok
25279         * XplatUIX11.cs:
25280           - Fixed background color handling
25281           - Fixed sending of enter/leave events on a grab
25283 2004-08-24 16:35  pbartok
25285         * X11Structs.cs:
25286           - Refined definitions for CrossingEvent
25288 2004-08-24 12:37  jordi
25290         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
25291           formmating, methods signature, and adds missing events
25293 2004-08-24 12:24  jordi
25295         * Control.cs: fire OnEnabledChanged event
25297 2004-08-24 11:17  pbartok
25299         * XplatUIWin32.cs:
25300           - Implemented SetTimer() and KillTimer()
25302 2004-08-24 11:16  pbartok
25304         * XplatUIX11.cs:
25305           - Now uses Remove instead of Add to kill the timer
25307 2004-08-24 10:16  jackson
25309         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
25310           picture boxes in the theme now. Draw picture box borders and obey
25311           sizing modes
25313 2004-08-24 05:49  jackson
25315         * Timer.cs: Remove top secret debugging code
25317 2004-08-24 05:34  jackson
25319         * PictureBox.cs: Temp hack to make picture boxes draw their full
25320           image
25322 2004-08-24 05:29  jackson
25324         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
25325           XplatUIX11.cs: Move timers to the driver level. On X they are
25326           queued by the driver and checked on idle.
25328 2004-08-24 01:07  jackson
25330         * XplatUIX11.cs: Use a queue for async messages instead of passing
25331           them as ClientMessages since that was totally broken. Also simply
25332           check for events and return an idle message if none are found. This
25333           gives us an idle handler, and prevents deadlocking when no messages
25334           are in the queue.
25336 2004-08-23 18:19  ravindra
25338         * XplatUIWin32.cs: Removed the unwanted destructor.
25340 2004-08-23 17:27  pbartok
25342         * ButtonBase.cs:
25343           - Finishing touches. Works now, just needs some optimizations.
25345 2004-08-23 16:53  jordi
25347         * ScrollBar.cs: small fix
25349 2004-08-23 16:45  pbartok
25351         * Application.cs:
25352           - Removed debug output
25353           - Simplifications
25355 2004-08-23 16:43  jordi
25357         * ScrollBar.cs: [no log message]
25359 2004-08-23 16:10  pbartok
25361         * Form.cs:
25362           - Fixed handling of WM_CLOSE message
25363           - Removed debug output
25365 2004-08-23 16:09  pbartok
25367         * Application.cs:
25368           - Added handling of Idle event
25369           - Added handling of form closing
25370           - Fixed reporting of MessageLoop property
25371           - Removed some unneeded code, should provide a bit of a speedup
25373 2004-08-23 15:22  pbartok
25375         * Control.cs:
25376           - Added InitLayout() method
25377           - Added code to properly perform layout when Anchor or Dock property
25378             is changed
25379           - Changed 'interpretation' of ResumeLayout. MS seems to have a
25380             LAMESPEC, tried to do it in a way that makes sense
25382 2004-08-23 14:10  jordi
25384         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
25385           properties and methods
25387 2004-08-23 13:55  pbartok
25389         * Control.cs:
25390           - Properly fixed Jordi's last fix
25391           - Now uses Cursor's Position property instead of calling XplatUI
25392           directly
25394 2004-08-23 13:44  jordi
25396         * PaintEventHandler.cs: Adding missing attribute
25398 2004-08-23 13:39  pbartok
25400         * Cursor.cs:
25401           - Implemented Position property
25403 2004-08-23 13:39  pbartok
25405         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
25406           - Added method to move mouse cursor
25408 2004-08-23 13:39  pbartok
25410         * XplatUIX11.cs:
25411           - Fixed setting of background color
25412           - Added method to move mouse cursor
25414 2004-08-23 13:16  jordi
25416         * Control.cs: avoids null exception
25418 2004-08-22 17:46  jackson
25420         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
25421           PictureBox
25423 2004-08-22 17:40  jackson
25425         * XplatUIX11.cs: Add some missing locks
25427 2004-08-22 15:10  pbartok
25429         * Control.cs, Form.cs:
25430           - Removed OverlappedWindow style from Control, instead it's default
25431             now is child
25432           - Made form windows OverlappedWindow by default
25434 2004-08-22 13:34  jackson
25436         * ScrollBar.cs: Update the position through the Value property so
25437           the OnValueChanged event is raised.
25439 2004-08-22 12:04  pbartok
25441         * SWF.csproj:
25442           - Added Cursor.cs and UserControl.cs
25444 2004-08-22 12:03  pbartok
25446         * Cursor.cs:
25447           - Started implementation, not usable yet
25449 2004-08-22 12:00  pbartok
25451         * UserControl.cs:
25452           - Implemented UserControl (complete)
25454 2004-08-21 19:20  ravindra
25456         * ToolBar.cs: Correcting the formatting mess of VS.NET.
25458 2004-08-21 18:49  ravindra
25460         * ToolBar.cs: Probably this completes the missing attributes in
25461           toolbar control.
25463 2004-08-21 18:03  ravindra
25465         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
25466           Fixed toolbar control signatures.
25468 2004-08-21 16:32  pbartok
25470         * LinkLabel.cs:
25471           - Signature Fixes
25473 2004-08-21 16:30  pbartok
25475         * Label.cs:
25476           - Signature fixes
25478 2004-08-21 16:19  pbartok
25480         * Control.cs, Label.cs:
25481           - Signature fixes
25483 2004-08-21 15:57  pbartok
25485         * ButtonBase.cs:
25486           - Added loads of debug output for development
25487           - Fixed typo in method name
25489 2004-08-21 15:52  pbartok
25491         * ToolBarButtonClickEventArgs.cs:
25492           - Added missing base class
25494 2004-08-21 14:53  pbartok
25496         * Control.cs:
25497           - Updated to match new GrabWindow signature
25499 2004-08-21 14:51  pbartok
25501         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
25502           - Added method to get default display size
25504 2004-08-21 14:23  pbartok
25506         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
25507           - Added method to query current grab state
25508           - Added argument to allow confining a grab to a window
25510 2004-08-21 14:22  pbartok
25512         * Keys.cs:
25513           - Added [Flags] attribute so that modifiers can be used in bitwise
25514           ops
25516 2004-08-21 14:21  pbartok
25518         * TrackBar.cs, ScrollBar.cs:
25519           - Replaced direct XplatUI calls with their Control counterpart
25521 2004-08-21 13:32  pbartok
25523         * Control.cs:
25524           - Implemented Created property
25526 2004-08-21 13:28  pbartok
25528         * Control.cs:
25529           - Implemented ContainsFocus
25531 2004-08-21 13:26  pbartok
25533         * Control.cs:
25534           - Implemented CausesValidation
25536 2004-08-21 13:21  pbartok
25538         * Control.cs:
25539           - Implemented CanFocus
25540           - Implemented CanSelect
25541           - Implemented Capture
25543 2004-08-21 12:35  pbartok
25545         * XplatUIWin32.cs:
25546           - Fixed bug with Async message handling
25547           - Implemented getting the ModifierKeys
25549 2004-08-21 12:32  jackson
25551         * AsyncMethodResult.cs: Make sure we have the mutex before we
25552           release it. Fixes BeginInvoke on windows
25554 2004-08-21 11:31  pbartok
25556         * XplatUIWin32.cs, XplatUIX11.cs:
25557           - Drivers now return proper mouse state
25559 2004-08-21 10:54  jackson
25561         * Control.cs: Implement EndInvoke
25563 2004-08-21 10:48  jackson
25565         * Timer.cs: Remove unneeded finalizer
25567 2004-08-20 19:52  ravindra
25569         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
25570           in mouse event handling in the ToolBar control.
25572 2004-08-20 19:50  ravindra
25574         * ImageList.cs: Changed draw method to use the arguments passed in
25575           to draw the image.
25577 2004-08-20 18:58  pbartok
25579         * XplatUIStructs.cs:
25580           - Added private message for async communication
25582 2004-08-20 17:38  ravindra
25584         * Control.cs: Made RightToLeft property virtual and removed a
25585           Console.WriteLine.
25587 2004-08-20 14:39  jordi
25589         * ThemeGtk.cs: use style_attach
25591 2004-08-20 14:39  pbartok
25593         * XplatUIWin32.cs:
25594           - Added jackson's Async code from X11 to Win32
25596 2004-08-20 14:09  pbartok
25598         * SWF.csproj:
25599           - Added all new files
25601 2004-08-20 14:09  pbartok
25603         * Control.cs:
25604           - Added call to set window background color
25606 2004-08-20 14:03  pbartok
25608         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
25609           - Added method for setting the window background
25611 2004-08-20 14:02  pbartok
25613         * XplatUIWin32.cs:
25614           - Added method for setting the background color
25615           - Added handling for erasing the window background
25617 2004-08-20 13:45  jordi
25619         * TrackBar.cs: fixes timer, new properties and methods
25621 2004-08-20 13:34  jackson
25623         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
25624           correct thread
25626 2004-08-20 13:22  jackson
25628         * Timer.cs: Timer Tick events are now handed through Controls Async
25629           mechanism so the callbacks are executed in the same thread as X
25631 2004-08-20 13:19  jackson
25633         * XplatUIDriver.cs: Expose functionality to send async messages
25634           through the driver
25636 2004-08-20 13:18  jackson
25638         * Control.cs: Implement Begininvoke
25640 2004-08-20 13:14  jackson
25642         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
25643           messages through the driver
25645 2004-08-20 13:12  jackson
25647         * XplatUIX11.cs: Lock before all X operations. Also added Async
25648           method functionality through XSendEvent
25650 2004-08-20 13:11  jackson
25652         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
25653           This will screw up on 64 bit systems)
25655 2004-08-20 13:10  jackson
25657         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
25658           Async messages through X/Win32
25660 2004-08-19 19:39  pbartok
25662         * XplatUIX11.cs:
25663           - Updated code to match new HandleData.DeviceContext type
25665 2004-08-19 19:38  pbartok
25667         * HandleData.cs:
25668           - Made DeviceContext a generic object to allow usage from various
25669           drivers
25670           - Added support for queueing Windows messages
25672 2004-08-19 19:37  pbartok
25674         * XplatUIWin32.cs:
25675           - Added generation of MouseEnter, MouseLeave and MouseHover events
25676           - Added cleanup on EndPaint
25678 2004-08-19 19:17  pbartok
25680         * Control.cs:
25681           - Added handling of WM_MOUSEHOVER
25682           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
25683           code
25685 2004-08-19 18:55  jordi
25687         * ThemeGtk.cs: fixes button order
25689 2004-08-19 18:12  jordi
25691         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
25693 2004-08-19 17:09  pbartok
25695         * Control.cs:
25696           - Added Right property
25697           - Added RightToLeft property
25699 2004-08-19 16:27  jordi
25701         * ThemeGtk.cs: experimental GTK theme support
25703 2004-08-19 16:26  jordi
25705         * ITheme.cs, Theme.cs: move themes from an interface to a class
25707 2004-08-19 16:25  jordi
25709         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
25710           theme enhancaments
25712 2004-08-19 16:04  pbartok
25714         * XplatUIX11.cs:
25715           - Added colormap basics
25716           - Added a way to re-initialize with a different display handle
25717           - Fixed setting of the window background color
25718           - Added various X11 imports related to colors and colormaps
25720 2004-08-19 15:51  pbartok
25722         * X11Structs.cs:
25723           - Removed packing hints (Paolo suggested this a while back)
25724           - fixed colormap type
25725           - Added default Atom types
25726           - Added Screen and color structs and enums
25728 2004-08-19 15:39  pbartok
25730         * ImageList.cs:
25731           - Added missing Draw() method
25732           - Added missing RecreateHandle event
25734 2004-08-19 15:30  pbartok
25736         * Form.cs:
25737           - Added handling of WM_CLOSE
25739 2004-08-18 13:16  jordi
25741         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
25742           a table
25744 2004-08-18 09:56  jordi
25746         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
25748 2004-08-17 15:31  ravindra
25750         * SWF.csproj: Updated project.
25752 2004-08-17 15:25  pbartok
25754         * Control.cs:
25755           - Drawing improvement; don't call UpdateBounds if we are not visible
25756             (or have been minimized)
25758 2004-08-17 15:24  pbartok
25760         * XplatUIWin32.cs:
25761           - Finished IsVisible
25762           - Added Win32GetWindowPlacement
25764 2004-08-17 15:08  jackson
25766         * Panel.cs: Initial checkin of the Panel
25768 2004-08-17 14:25  pbartok
25770         * Control.cs:
25771           - Fixed broken handling of default window sizes
25773 2004-08-17 13:29  jackson
25775         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
25776           has a large startup time.
25778 2004-08-17 10:25  jackson
25780         * HandleData.cs: union areas properly
25782 2004-08-17 10:12  jackson
25784         * HandleData.cs: union areas properly
25786 2004-08-16 20:00  ravindra
25788         * ToolBar.cs, ToolBarButton.cs: Added attributes.
25790 2004-08-16 18:48  ravindra
25792         * ToolBar.cs: Added attributes.
25794 2004-08-16 17:17  ravindra
25796         * SWF.csproj: Updated project.
25798 2004-08-16 17:16  jackson
25800         * XplatUIX11.cs: Check for more expose events before sending a
25801           WM_PAINT so they can all be grouped together. This makes dragging a
25802           window across another window redraw in a sane way.
25804 2004-08-16 15:47  pbartok
25806         * Control.cs:
25807           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
25808             support OnMouseEnter/Leave()
25809           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
25810             exposure handling
25812 2004-08-16 15:46  pbartok
25814         * XplatUIStructs.cs, XplatUIX11.cs:
25815           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
25816           OnMouseEnter/Leave()
25818 2004-08-16 15:34  jackson
25820         * XplatUIX11.cs: Group multiple expose events in HandleData, make
25821           sure messages get the message field set to WM_NULL if they are not
25822           handled.
25824 2004-08-16 15:24  jackson
25826         * HandleData.cs: HandleData is used for storing message information
25827           for window handles
25829 2004-08-15 17:23  ravindra
25831         * ColorDepth.cs: Added attribute.
25833 2004-08-15 17:23  ravindra
25835         * SWF.csproj: Updated project for ToolBar Control.
25837 2004-08-15 17:20  ravindra
25839         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
25840           control and also dos2unix format.
25842 2004-08-15 17:13  ravindra
25844         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
25845           ToolBarButtonClickEventArgs.cs,
25846           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
25847           ToolBarTextAlign.cs: First Implementation of ToolBar control.
25849 2004-08-15 15:31  pbartok
25851         * ButtonBase.cs:
25852           - First (mostly) working version
25854 2004-08-13 16:15  pbartok
25856         * Control.cs:
25857           - Fixed Anchor default
25859 2004-08-13 15:43  pbartok
25861         * Control.cs:
25862           - Changed GetCursorPos signature
25864 2004-08-13 15:42  pbartok
25866         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
25867           - Changed signature for GetCursorPos
25869 2004-08-13 15:25  pbartok
25871         * XplatUIX11.cs:
25872           - Cleanup
25873           - Fixed resizing/exposure handling
25875 2004-08-13 15:22  jordi
25877         * ThemeWin32Classic.cs: removes redundant code and fixes issues
25878           with tickposition
25880 2004-08-13 14:55  jordi
25882         * TrackBar.cs: change from wndproc to events
25884 2004-08-13 13:00  jordi
25886         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
25887           XplatUIX11.cs: implements PointToClient (ScreenToClient)
25889 2004-08-13 12:53  pbartok
25891         * XplatUIWin32.cs:
25892           - Changed GetWindowPos to also provide client area size
25893           - Fixed broken prototypes for several win32 functions
25895 2004-08-13 12:53  pbartok
25897         * XplatUI.cs, XplatUIDriver.cs:
25898           - Changed GetWindowPos to also provide client area size
25900 2004-08-13 12:52  pbartok
25902         * XplatUIX11.cs:
25903           - Added generation of WM_POSCHANGED
25904           - Changed GetWindowPos to also provide client area size
25906 2004-08-13 12:52  pbartok
25908         * Control.cs:
25909           - Added Dispose() and destructor
25910           - Fixed resizing and bounds calculation
25911           - Fixed Layout
25912           - Added memory savings for invisible windows
25914 2004-08-13 12:46  jordi
25916         * TrackBar.cs: adds timer and grap window
25918 2004-08-13 10:25  jackson
25920         * Timer.cs: SWF Timer
25922 2004-08-12 16:59  pbartok
25924         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
25925           - Implemented method to get current mouse position
25927 2004-08-12 14:29  jordi
25929         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
25930           enhancement, fix mouse problems, highli thumb, etc
25932 2004-08-12 13:31  pbartok
25934         * Control.cs:
25935           - Fixed Anchoring bugs
25937 2004-08-12 13:01  jackson
25939         * StatusBar.cs: Don't forget things
25941 2004-08-12 12:54  jackson
25943         * ThemeWin32Classic.cs: Handle owner draw status bars
25945 2004-08-12 12:54  jackson
25947         * StatusBar.cs: Implement missing properties, events, and methods.
25948           Handle mouse clicking
25950 2004-08-12 10:19  jackson
25952         * StatusBarPanelClickEventArgs.cs,
25953           StatusBarPanelClickEventHandler.cs: Classes for handling status
25954           bar panel click events
25956 2004-08-12 10:10  jackson
25958         * Control.cs: Add missing properties
25960 2004-08-12 09:46  pbartok
25962         * BindingsManagerBase.cs:
25963           - Name changed to BindingManagerBase.cs
25965 2004-08-12 09:25  jordi
25967         * ScrollableControl.cs: calls ctrlbase instead of exeception
25969 2004-08-11 16:28  pbartok
25971         * InputLanguageChangingEventArgs.cs:
25972           - Never check in before compiling. Fixes the last check-in
25974 2004-08-11 16:26  pbartok
25976         * InputLanguageChangingEventArgs.cs:
25977           - More signature fixes
25979 2004-08-11 16:20  pbartok
25981         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
25982           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
25983           ImageListStreamer.cs, InputLanguage.cs,
25984           InputLanguageChangedEventArgs.cs,
25985           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
25986           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
25987           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
25988           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
25989           - Signature fixes
25991 2004-08-11 16:16  pbartok
25993         * Application.cs:
25994           - Fixed Signature
25995           - Added .Net 1.1 method
25997 2004-08-11 15:25  pbartok
25999         * SWF.csproj:
26000           - Fixed BindingManagerBase.cs filename
26002 2004-08-11 15:22  pbartok
26004         * BindingManagerBase.cs:
26005           - Was checked in with wrong filename
26007 2004-08-11 14:50  pbartok
26009         * SWF.csproj:
26010           - Updated
26012 2004-08-11 13:41  jordi
26014         * XplatUIWin32.cs: Fixes ClientRect
26016 2004-08-11 13:19  pbartok
26018         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
26019           XplatUIX11.cs:
26020           - We had SetWindowPos and MoveWindow to set window positions and
26021             size, removed MoveWindow. We have GetWindowPos, so it made sense to
26022             keep SetWindowPos as matching counterpart
26023           - Added some X11 sanity checking
26025 2004-08-11 12:59  pbartok
26027         * Control.cs:
26028           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
26029             (It seems that SetBounds is just a front for SetBoundsCore and
26030              SetBoundsCore updates the underlying window system and
26031              UpdateBounds is responsible for updating the variables associated
26032              with the Control and sending the events)
26033           - Major cleanup of Size handling; we now have two sizes, client_size
26034             and bounds. Bounds defines the window with decorations, client_size
26035             without them.
26037 2004-08-11 12:55  pbartok
26039         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
26040           - Added method to calculate difference between decorated window and
26041             raw client area
26043 2004-08-11 12:54  pbartok
26045         * Label.cs:
26046           - Forcing redraw on resize
26048 2004-08-11 11:43  pbartok
26050         * ImageList.cs:
26051           - Removed disposing of the actual images when the list is disposed
26053 2004-08-11 09:13  pbartok
26055         * Control.cs:
26056           - Now properly reparents windows
26058 2004-08-11 08:37  pbartok
26060         * Control.cs:
26061           - Duh!
26063 2004-08-11 07:47  pbartok
26065         * Control.cs:
26066           - Rewrote the collection stuff. Might not be as fast now, not
26067             keeping the number of children around and accessible directly, but
26068             it's more straightforward
26070 2004-08-11 07:44  pbartok
26072         * AccessibleObject.cs:
26073           - Fixed to match ControlCollection rewrite
26075 2004-08-11 07:43  pbartok
26077         * ImageList.cs:
26078           - Added missing creation of the collection list
26080 2004-08-10 20:08  jackson
26082         * StatusBar.cs: Get the paint message from WndProc
26084 2004-08-10 19:31  jackson
26086         * ThemeWin32Classic.cs: Create Brushes as little as possible
26088 2004-08-10 19:20  jackson
26090         * UICues.cs: Add Flags attribute
26092 2004-08-10 19:19  jackson
26094         * StatusBarPanel.cs: Signature cleanup
26096 2004-08-10 19:10  jackson
26098         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
26099           Initial implementation of status bar item drawing
26101 2004-08-10 17:27  jordi
26103         * TrackBar.cs: add missing methods, properties, and restructure to
26104           hide extra ones
26106 2004-08-10 16:24  jackson
26108         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
26109           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
26110           attribute
26112 2004-08-10 13:21  jordi
26114         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
26115           enhancements and standarize on win colors defaults
26117 2004-08-10 12:52  jackson
26119         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
26120           ThemeWin32Classic.cs: Implement DrawItem functionality
26122 2004-08-10 12:47  jordi
26124         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
26126 2004-08-10 12:32  jordi
26128         * Control.cs: throw ontextchange event
26130 2004-08-10 11:43  pbartok
26132         * Control.cs:
26133           - Added more to the still unfinished Dock/Anchor layout code
26135 2004-08-10 11:39  pbartok
26137         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
26138           - Added GetWindowPos method
26140 2004-08-10 11:36  pbartok
26142         * XplatUIWin32.cs:
26143           - Implemented several methods
26145 2004-08-10 09:47  jackson
26147         * TrackBar.cs: Allow control to handle buffering
26149 2004-08-10 09:41  jackson
26151         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
26153 2004-08-10 09:24  jackson
26155         * Label.cs, LinkLabel.cs: Let Control handle buffering.
26157 2004-08-10 09:09  jackson
26159         * StatusBar.cs: Let Control handle all the buffering.
26161 2004-08-10 09:08  jackson
26163         * Control.cs: Control will now handle the buffering code, so each
26164           control does not have to implement this.
26166 2004-08-10 08:34  jackson
26168         * XplatUIDriver.cs: Use default colors from the theme
26170 2004-08-09 17:12  pbartok
26172         * ImageList.cs:
26173           - Fixed several bugs Ravindra pointed out
26175 2004-08-09 16:11  pbartok
26177         * Control.cs:
26178           - Added incomplete dock layout code
26179           - Added support for mouse wheel
26181 2004-08-09 16:09  pbartok
26183         * XplatUIX11.cs:
26184           - Added handling for middle and right mousebutton
26185           - Added handling for mouse wheel
26186           - Added handling for key state and mouse state and position
26187           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
26188           messages
26190 2004-08-09 15:40  jackson
26192         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
26193           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
26194           checkin
26196 2004-08-09 15:37  jackson
26198         * StatusBar.cs: Initial implementation of StatusBar
26200 2004-08-09 15:36  jackson
26202         * ITheme.cs: Add support for drawing status bar and getting status
26203           bar item sizes
26205 2004-08-09 15:35  pbartok
26207         * MouseButtons.cs:
26208           - Fixed values
26210 2004-08-09 15:34  jackson
26212         * ThemeWin32Classic.cs: Add support for drawing status bar and get
26213           status bar item sizes
26215 2004-08-09 15:21  jackson
26217         * ThemeWin32Classic.cs: Use known colors for default control
26218           colours
26220 2004-08-09 15:12  jackson
26222         * ThemeWin32Classic.cs: Make the default font static, it is static
26223           in control so this doesn't change functionality and creating fonts
26224           is sloooooow.
26226 2004-08-09 14:56  pbartok
26228         * X11Structs.cs:
26229           - Added GrabMode enum
26231 2004-08-09 14:55  pbartok
26233         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
26234           - Removed Run method, was only required for initial development
26236 2004-08-09 14:51  pbartok
26238         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
26239           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
26240           capture
26242 2004-08-09 13:48  pbartok
26244         * XplatUIX11.cs:
26245           - Fixed default sizing for child windows
26247 2004-08-09 12:56  pbartok
26249         * XplatUIX11.cs:
26250           - Added generation of WM_DESTROY message
26251           - Added handling of window manager induced shutdown
26253 2004-08-09 11:31  jackson
26255         * ThemeWin32Classic.cs: New names for control properties
26257 2004-08-09 11:25  jackson
26259         * Control.cs: Use new color names
26261 2004-08-09 11:02  jackson
26263         * XplatUI.cs: Get default window properties from the theme
26265 2004-08-09 11:01  jackson
26267         * ITheme.cs: The theme engine now controls default window
26268           properties
26270 2004-08-09 11:00  jackson
26272         * ThemeWin32Classic.cs: Add default window color properties
26274 2004-08-09 10:17  jackson
26276         * ThemeWin32Classic.cs: Use correct default back color
26278 2004-08-09 10:05  jackson
26280         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
26281           the theme now.
26283 2004-08-09 09:56  jackson
26285         * XplatUI.cs: Remove defaults, these are handled by the theme now.
26287 2004-08-09 09:54  jackson
26289         * Control.cs: Get default properties from the theme.
26291 2004-08-09 09:53  jackson
26293         * ITheme.cs: Themes now handle default control properties
26295 2004-08-09 09:53  jackson
26297         * ThemeWin32Classic.cs: Themes now handle default control
26298           properties so coloring will be consistent
26300 2004-08-08 16:54  jordi
26302         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
26304 2004-08-08 15:08  jordi
26306         * XplatUIX11.cs: fixes keyboard crash
26308 2004-08-08 13:47  jordi
26310         * Label.cs: add cvs header info
26312 2004-08-08 12:09  jackson
26314         * ThemeWin32Classic.cs: Add pen_buttonface
26316 2004-08-08 11:52  jordi
26318         * Label.cs, LinkLabel.cs: [no log message]
26320 2004-08-08 11:34  jordi
26322         * ThemeWin32Classic.cs: Use Windows Standard Colours
26324 2004-08-07 17:32  jordi
26326         * TrackBar.cs: throw exceptions of invalid enums values
26328 2004-08-07 17:31  jordi
26330         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
26331           draw method name
26333 2004-08-07 16:56  jackson
26335         * HorizontalAlignment.cs: Initial checkin
26337 2004-08-07 13:16  jordi
26339         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
26340           methods
26342 2004-08-07 13:05  jordi
26344         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
26345           GetSysColor defines
26347 2004-08-06 18:01  pbartok
26349         * ThemeWin32Classic.cs:
26350           - Fixed some rounding issues with float/int
26352 2004-08-06 18:00  jackson
26354         * DockStyle.cs, AnchorStyles.cs:
26356                   Add flags and serializable attributes.
26358 2004-08-06 17:46  pbartok
26360         * XplatUIX11.cs:
26361           - Implemented GetParent
26363 2004-08-06 17:18  pbartok
26365         * TrackBar.cs:
26366           - Fixed some rounding issues with float/int
26368 2004-08-06 17:17  pbartok
26370         * X11Structs.cs, XplatUIX11.cs:
26371           - Fixed Refresh and Invalidate
26373 2004-08-06 15:30  pbartok
26375         * Control.cs, X11Structs.cs, XplatUIX11.cs:
26376           - Fixed recursive loop when resizing
26377           - Improved/fixed redrawing on expose messages
26379 2004-08-06 09:53  jordi
26381         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
26382           keyboard navigation
26384 2004-08-06 08:02  pbartok
26386         * X11Structs.cs, XplatUIX11.cs:
26387           - Fixed reparenting
26388           - Fixed window border creation
26390 2004-08-05 15:38  pbartok
26392         * XplatUIX11.cs:
26393           - Attempted fix for reparenting problems
26395 2004-08-04 15:14  pbartok
26397         * Control.cs:
26398           - Fixed Invalidation bug (calculated wrong client area)
26399           - Added ClientSize setter
26401 2004-08-04 15:13  pbartok
26403         * Form.cs:
26404           - Added AutoScale properties
26406 2004-08-04 15:13  pbartok
26408         * SWF.csproj:
26409           - Added latest files
26411 2004-08-04 14:11  pbartok
26413         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
26414           XplatUIX11.cs:
26415           - Added Invalidate handling
26417 2004-08-03 17:09  jordi
26419         * XplatUIDriver.cs: fixes spelling mistake
26421 2004-07-27 09:53  jordi
26423         * TrackBar.cs: fixes trackbar events, def classname, methods
26424           signature
26426 2004-07-27 09:29  jordi
26428         * ScrollBar.cs: fixes scrollbar events
26430 2004-07-27 04:38  jordi
26432         * Control.cs: changes to be able to run winforms samples
26434 2004-07-26 11:42  jordi
26436         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
26437           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
26439 2004-07-26 05:41  jordi
26441         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
26442           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
26443           implementation
26445 2004-07-22 09:22  jordi
26447         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
26448           check link overlapping, implement events, and fixes
26450 2004-07-21 10:28  jordi
26452         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
26454 2004-07-21 10:19  jordi
26456         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
26457           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
26458           LinkLabelLinkClickedEventArgs.cs,
26459           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
26460           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
26461           implementation
26463 2004-07-19 13:09  jordi
26465         * Control.cs, Label.cs: label control re-written: added missing
26466           functionlity, events, and properties
26468 2004-07-19 10:49  jordi
26470         * Control.cs: fixes SetBounds logic
26472 2004-07-19 01:29  jordi
26474         * Control.cs: Call RefreshWindow only if the window has created
26476 2004-07-15 14:05  pbartok
26478         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
26479           - Implemented ImageList and ImageList.ImageCollection classes
26480           - Added ColorDepth enumeration
26481           - Updated SWF VS.Net project
26483 2004-07-15 11:06  jordi
26485         * XplatUIStructs.cs: added MsgButons enum
26487 2004-07-15 11:03  jordi
26489         * Control.cs: added basic mouse handeling events
26491 2004-07-15 03:38  jordi
26493         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
26494           Vertical TrackBar control implementation
26496 2004-07-13 09:33  jordi
26498         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
26500 2004-07-13 09:31  jordi
26502         * Control.cs, Form.cs: commit: new properties and fixes form size
26503           problems
26505 2004-07-09 14:13  miguel
26507         * ProgressBar.cs: Spelling
26509 2004-07-09 11:25  pbartok
26511         * ProgressBar.cs:
26512           - Removed usage of Rectangle for drawing. Miguel pointed out it's
26513           faster
26515 2004-07-09 11:17  miguel
26517         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
26519                 * ProgressBar.cs: Fixed spelling for `block'
26521                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
26522                 style guidelines.
26524                 Avoid using the += on rect.X, that exposed a bug in the compiler.
26526 2004-07-08 23:21  pbartok
26528         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
26529           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
26530           BaseCollection.cs, Binding.cs, BindingContext.cs,
26531           BindingMemberInfo.cs, BindingsCollection.cs,
26532           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
26533           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
26534           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
26535           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
26536           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
26537           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
26538           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
26539           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
26540           FrameStyle.cs, GiveFeedbackEventArgs.cs,
26541           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
26542           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
26543           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
26544           InputLanguageChangedEventArgs.cs,
26545           InputLanguageChangedEventHandler.cs,
26546           InputLanguageChangingEventArgs.cs,
26547           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
26548           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
26549           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
26550           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
26551           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
26552           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
26553           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
26554           QueryAccessibilityHelpEventArgs.cs,
26555           QueryAccessibilityHelpEventHandler.cs,
26556           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
26557           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
26558           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
26559           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
26560           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
26561           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
26562           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
26563           XplatUIX11.cs, lang.cs:
26564           - Initial check-in