In Test/System.Windows.Forms:
[mono-project.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
blob81f3703719aa423640ebe2460d8197086bababce
1 2007-03-15  Chris Toshok  <toshok@ximian.com>
3         * BindingSource.cs: get a lot of the unit tests working.
5 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
7         * Control.cs: Modify UpdateStyles to store distances when bounds >=
8         0 instead of just bounds > 0.  [Fixes bug #80912]
10 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
12         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
13         and methods.
15 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
16         
17         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
18         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
19         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
20         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
22 2007-03-15  Chris Toshok  <toshok@ximian.com>
24         [ Fixes #81101 ]
25         
26         * Control.cs: add Ivan's fix for 81101, with a slight modification
27         - you can set control.Target to null.
29 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
31         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
32         HideDropDown, use Hide instead to prevent an NRE.
33         [Fixes bug #81147]
35 2007-03-14  Jackson Harper  <jackson@ximian.com>
37         * TextBoxBase.cs: Mess with the creation stuff a little. We need
38         to calculate the document before the handle is created, in some
39         cases. (Actually just one case).
41 2007-03-14  Jackson Harper  <jackson@ximian.com>
43         * TextBoxBase.cs: Need to display the caret after letting the base
44         wndproc handle the focus methods, because the caret display
45         methods check the focus state.
46         - Try to display the caret after updating it's position with SelectWord.
47         - Don't need to do an immediate update on this recalc, since there
48         will be an invalidate anyways.
50 2007-03-14  Jackson Harper  <jackson@ximian.com>
52         * TreeView.cs: Some workarounds so that we can match event order a
53         little better.
55 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
57         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
58         #80803. Avoid NullReferenceException when Control does not have
59         parent. Fixed different blinkstyle issues. Only subscribe to Tick
60         event a single time. Only draw error icon when control is created and
61         visible. Fixes failing unit tests.
63 2007-03-14  Andreia Gaita  <avidigal@novell.com>
65         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
66         Selecting events. Fire Leave and Enter events when changing tabs.
68 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
70         * TreeView.cs: Add TreeViewNodeSorter.
71         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
73 2007-03-14  Chris Toshok  <toshok@ximian.com>
75         * Form.cs: go ahead and remove the RecreateHandles that jpobst
76         removed earlier and I had him add back it.  It turns out metacity
77         *does* in fact handle the MOTIF_WM_HINTS property changing, it
78         just doesn't redraw the window titlebar until you resize the
79         window.  This also means we aren't recreating the entire window
80         hierarchy on X when you change this property.  And it looks better
81         on windows, too.
83 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
85         * ListViewItem.cs:
86         * ListView.cs: Collecting selection information
87         is now done in SelectedIndexCollection rather than in
88         SelectedListViewItemCollection. This is done so we can
89         have the selection information code in one single place
90         (virtual mode selection information entirely depends on
91         SelectedIndexCollection).
93 2007-03-13  Miguel de Icaza  <miguel@novell.com>
95         * ErrorProvider.cs: Add stubs for ISupportInitialize
97 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
99         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
100         in the right order with the right values, from the Checked property, 
101         just as MS does (instead of triggering them from ListView).
103         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
105 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
107         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
108         the correct handler in OnItemCheck method (ItemCheckEventHandler 
109         instead of EventHandler). This used to throw an InvalidCastException.
111 2007-03-13  Jackson Harper  <jackson@ximian.com>
113         * TextBoxBase.cs: Calculate the document before the handle is
114         created, so there isn't an extra invalidate called.
116 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
118         * Form.cs: Don't set owner in ShowDialog until we are sure
119         that we aren't going to throw an exception.  [Fixes bug #80773]
121 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
123         * TreeView.cs: Make it compile.
125 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
127         * Control.cs: Another place we don't call SizeFromClientSize.
128         * Form.cs: Another place we don't call SizeFromClientSize.
129         [Fixes bug #81125]
131 2007-03-12  Jackson Harper  <jackson@ximian.com>
133         * TreeView.cs: Basically emulating some strangness here with
134         exanding nodes and setting node positions when windows aren't
135         created.
136         - Also attempting to walk the node tree less than previously, and
137         just use visible order calculations for determining offsets.
138         - oops made scrolling backwards.
139         * TreeNode.cs: We need to start nodes with a zero visible order,
140         because the order calcs are based on the first nodes order.
142 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
144         * Form.cs: Don't exit the program if RecreateHandle is called on
145         the main form.
147 2007-03-12  Chris Toshok  <toshok@ximian.com>
149         * XEventQueue.cs: remove the use of PostQuitState.
151         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
152         WM_QUIT message in GetMessage, return false (and if we're in the
153         nested WaitForHwndMessage, repost the WM_QUIT message).
155 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
157         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
158         or the MaximizeBox properties.  [Part of bug #80640]
160 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
162         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
163         no links.
165 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
167         * ToolStripItem.cs: Fix some tests I broke by checking Visible
168         instead of visible.
170 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
172         * FileDialog.cs: Use text of File name combobox to determine what
173         files the user selected. Added tokenizer to parse the file names.
174         Fixes bug #81123.
176 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
178         * Control.cs: We can't call SizeFromClientSize in the constructor,
179         but we still need to do the same work, so make an internal version.
180         [Fixes bug #80621]
182 2007-03-12  Jackson Harper  <jackson@ximian.com>
184         * TreeView.cs:
185         * TreeNode.cs:
186         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
187         IsExpanded.
189 2007-03-12  Jackson Harper  <jackson@ximian.com>
191         * TextBoxBase.cs: Now that the handles are being created a little
192         later, we need to make sure that the document is recalculated when
193         the handle is created.
195 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
197         * Theme.cs: GetLinkFont abstract method added.
198         
199         * LinkLabel.cs: 
200         - Remove CalcTrimRectangle, no longer needed.
201         - Factor also remove, position issues must be fixed in libgdiplus.
202         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
203         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
204         care about font used to draw links.
205         - Set TabStop to true when control is "Selectable", control is selectable
206         when have one or more links. Fixes #80501 (test case is also added).
207         - Set the LinkArea values after links change, LinkArea values must be
208         based in first link position and size, a test case was created.
209         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
210         the attribute must be true LinkArea.Length > 0. The same was applied to
211         TabStop.
212         
213         * ThemeWin32Classic.cs: 
214         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
215         in draw method.
216         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
217         color change.
218         - Draw focus rectangle for every parts focused, including parts that 
219         is on another line, its because regions returns various rectangles
220         and not only one. Needed to mimic W32 look.
221         - Uses Graphics.Clip to delimite region painted, it mean that now 
222         complete text is passed to DrawString, with this we solve layout
223         issues without create another text renderer.
224         - Uses Region.Intersect to fix some flickers problems, now only needed
225         parts will redrawed.
226         - This changes fixes #79614 and some other unreported issues, on Linux 
227         some layout problems still remain, the problem is under 
228         MeasureCharacterRanges but it is an libgdiplus bug.
230 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
232         * TextBox.cs: Set for foreground color.
233         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
234         this is already done in Control.
236 2007-03-10  Jackson Harper  <jackson@ximian.com>
238         * TextBox.cs: Set the background color, but reset the
239         backcolor_set flag which is just for the user setting the
240         background color.
242 2007-03-09  Chris Toshok  <toshok@ximian.com>
244         * Control.cs: really remove the call to XplatUI.SetVisible from
245         CreateHandle(), like I said I did when I merged the branch.
247         * BindingSource.cs: implement some more of this stuff.
249 2007-03-09  Jackson Harper  <jackson@ximian.com>
251         * TextBox.cs: Don't explicitly set our background colors.
252         * TextControl.cs:
253         * TextBoxBase.cs: Draw readonly text.
254         - Need to invalidate when backcolor or readonly are changed.
255         
256 2007-03-09  Jackson Harper  <jackson@ximian.com>
258         * TextBoxBase.cs: Don't set the forecolor until the handle is
259         created.
260         - Do not raise OnPaint, and removed some old debug code.
262 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
264         * ScrollableControl.cs: Fix mouse wheel scrolling.
266 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
268         * Control.cs: Wire up MouseDoubleClick event.
270 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
272         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
273         top or bottom.
274         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
275         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
276         item is added.  This logic was moved to ToolStrip.OnItemAdded.
277         [Fixes bug #81090]
279 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
281         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
283 2007-03-08  Jackson Harper  <jackson@ximian.com>
285         * TreeView.cs: Show the correct image for selected node (this used
286         to work, not sure how the code got deleted). Also implemented 2.0 feature
287         SelectedImageKey.
289 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
291         * ListView.cs:
292         * ListViewItem.cs: Cache index in items when retrieving them
293         in VirtualMode.
295 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
297         * ToolStripItem.cs: Don't return the explicit_size if we are using 
298         AutoSize.  Fixes invalidation issue when user has explicitly set a
299         size and has AutoSize = true.
301 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
303         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
305 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
307         * DataGridView.cs: Remove event handler from DataView when a
308         DataTable is used as DataSource.
310 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
312         * Control.cs: Create internal setter for client_size to allow it to be
313         set without triggering resizing code.
314         * Form.cs: Calculate client_size in constructor, only change client_size
315         in FormBorderStyle property if Handle has been created.
316         [Fixes #80574, #80791]
318 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
320         * SystemInformation.cs: Add TerminalServerSession.
322 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
324         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
325         TreeView code.
327 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
329         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
330         Handle before we were supposed to.  Now checks ActivateOnShow property
331         in Control.
332         * Control.cs: Add internal ActivateOnShow property.
333         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
334         for ActivateOnShow.
335         * Hwnd.cs Remove no longer needed no_activate field.
337 2007-03-07  Jackson Harper  <jackson@ximian.com>
339         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
340         2.0 properties
341         * DrawTreeNodeEventHandler.cs: Add
342         * DrawTreeNodeEventArgs.cs: Correct default value.
343         
344 2007-03-07  Chris Toshok  <toshok@ximian.com>
346         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
347         to be called before NativeWindow.WndProc.  Put the HwndCreating
348         magic there to hook up our Hwnd's to handles.
350 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
352         * DataGridView.cs: Comment out debug code.
354 2007-03-07  Chris Toshok  <toshok@ximian.com>
356         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
357         to make the rest of the world happy]
359         * Control.cs (CreateHandle): there's no need to call
360         XplatUI.SetVisible here, it's effectively done by
361         XplatUI.CreateWindow on X now, and always was on windows.
363         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
364         shortcircuit out of the loop if we have a message loop running on
365         this thread.
367         [Changelog from merge]
369         2007-03-05  Chris Toshok  <toshok@ximian.com>
371                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
372                 causes handle creation.
374         2007-02-28  Chris Toshok  <toshok@ximian.com>
376                 * ApplicationContext.cs: Add a flag to make sure we only raise the
377                 ThreadExit event once (ExitThreadCore can be indirectly called
378                 from a few places.)  I don't like the additional flag, but it
379                 makes the event ordering/count correct.
381                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
382                 without locking the collection.  An enumerator doesn't give us any
383                 protection from modification anyway.  Lock the thread hash and
384                 replace the complicated enumerator loop with a foreach.
385                 (Application.CloseForms): make internal so it can be called from
386                 ApplicationContext.  This should probably be moved to MWFThread.
387                 (Application.ExitThread): don't call MWFThread.Current.Exit()
388                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
389                 when the runloop exits (in response to WM_QUIT.)
390                 (Application.RunLoop): add a comment (and check) for
391                 context.MainForm being null after setting context.MainForm.Visible
392                 = true.  This is because you're perfectly free to dispose of a
393                 form in VisibilityChanged.  Chalk this up to another case where we
394                 need to synchronously generate WM_ACTIVATE from Control.Show.
395                 Also, add handling for WM_QUIT here so we'll exit the loop.
396                 
397                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
398                 fact that we don't wait if we're only unmapping the whole_window
399                 makes me a bit nervous, but it doesn't seem to cause any problems
400                 yet.
402                 also, add a comment about the stupid, broken and wrong resetting
403                 of PostQuitState to false in GetMessage().
405                 In PostQuitMessage, we need to add a WM_QUIT message to the
406                 thread's queue.  We use the FosterParent to get the right
407                 handle/hwnd/queue.
409                 Lastly, in SetVisible, we need to unmap both windows, since the
410                 waiting only happens when we're unmapping the client window.  So
411                 now, the *only* time we unmap just the whole_window is in the hack
412                 for resizing a control to 0,0.
413                 
414         2007-02-21  Chris Toshok  <toshok@ximian.com>
416                 * Application.cs (CloseForms): rewrite this so that we don't
417                 modify the list while we're traversing it.
419         2007-02-20  Chris Toshok  <toshok@ximian.com>
421                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
422                 of OnHandleCreated.
423                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
424                 handle is created.  otherwise we'll create it here.
425                 (VerticalScrollEvent): same here.
427                 * Application.cs (CloseForms): call Form.Dispose, don't post
428                 WM_CLOSE_INTERNAL.
430                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
431                 here. Application should Dispose() of the Form's.
433                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
434                 WM_DESTROY as well.
435                 (MapWindow,UnmapWindow): only actually do the waiting for
436                 SHOWWINDOW if the control we're dealing with is a Form.
437                 (CreateWindow): if the control isn't a form, SendMessage
438                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
440                 * Control.cs (SetVisibleCore): always use is_visible here, not
441                 value.  If we use value, we can end up re-setting something
442                 visible if, for instance, you do Control.Hide() in a delegate
443                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
445         2007-02-20  Chris Toshok  <toshok@ximian.com>
447                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
448                 the message we need.  PeekMessage returning false should not be a
449                 condition under which we exit the loop.
451         2007-02-15  Chris Toshok  <toshok@ximian.com>
453                 * Control.cs (Refresh): only refresh if we've got a handle and are
454                 visible.
455                 (CreateAccessibilityInstance): CreateControl() here.
456                 (UpdateChildrenZOrder): complicate the code loop even more by
457                 taking into account controls that haven't had their handle
458                 created, and those that aren't visible.  But on the flip side,
459                 simplify the code by splitting it into two loops.  one which
460                 builds up the list of child controls we're interested in, and the
461                 other that sets the z order of those children.
463         2007-02-14  Chris Toshok  <toshok@ximian.com>
465                 * Control.cs: Control.AccessibilityObject causes the control to be
466                 created, not just the handle.
468         2007-02-14  Chris Toshok  <toshok@ximian.com>
470                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
471                 problem on X where a window might have its handle created (and be
472                 visible) while the window is unmapped.  calling XConfigureWindow
473                 on an unmapped window is bad, and generates X errors.
475         2007-02-13  Chris Toshok  <toshok@ximian.com>
477                 * Control.cs (CreateHandle): don't loop over our children setting
478                 their parent here.  do it when in WndProc when we're shown.
479                 (UpdateChildrenZOrder): make this internal so we can call it from
480                 ScrollableControl.
481                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
482                 creating its handle.  Also, remove the calls to PerformLayout from
483                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
484                 OnVisibleChanged only seems to be called directly here for the
485                 toplevel control.  It's propagated down the window hierarchy by
486                 calls to child.OnParentVisibleChanged.
487                 (OnVisibleChanged): don't do layout here - it's done (oddly
488                 enough, according to a glance at stack traces on ms.net..) in
489                 ScrollableControl.
490                 
491                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
492                 z order of our children before calling PerformLayout.
494         2007-02-12  Chris Toshok  <toshok@ximian.com>
496                 [big change, fixes #80020]
497                 
498                 * AccessibleObject.cs: we need to make owner internal again to fix
499                 some of ControlAccessibleObject.
501                 * Control.cs: lots of changes here.  add support for WM_CREATE,
502                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
503                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
504                 we create child controls.  leave the MonoTODO's for the
505                 accessibility calls, but fix the exceptions so the tests pass.
507                 Add the InvalidOperationExceptions to Invoke methods, and remove a
508                 couple of InvokeInternal methods we aren't using.
509                 
510                 Also, add a couple of CreateHandle calls in places where we know
511                 the handles are being created but our code doesn't reference
512                 .Handle.
514                 Make SetVisibleCore call OnVisibleChange if the handle isn't
515                 created.  If the handle is created, we rely on XplatUI.SetVisible
516                 generating the event synchronously.
517                 
518                 Lastly, make sure we don't use this.Handle inside CreateHandle,
519                 because we can call back into client (and that code can dispose of
520                 the control).
522                 * XplatUIStructs.cs: misc/cleanup.
524                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
525                 although we don't populate the wParam properly.
526                 (CreateWindow): generate WM_CREATE.
527                 (MapWindow,UnmapWindow): make these calls synchronous, at great
528                 performance expense (particularly in the unmap case), to match
529                 win32 behavior.
531                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
532                 to call it.
533                 (set_MdiParent): don't recreate the handle unless it's been
534                 created already.
535                 
536                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
537                 it's created.
539                 * NativeWindow.cs: this is probably the weirdest part of the
540                 patch.  We need a way to link up the window being created to the
541                 WM_CREATE message.  Since we can only be creating one window at a
542                 time on a given thread, we keep track of a per-thread reference so
543                 we can dispatch it properly.  We also need to keep track of the
544                 Hwnd currently being created so that the win32 backend doesn't
545                 have problems.
546                 
547                 * XplatUIWin32.cs: a similar change to the one we made in
548                 NativeWindow.cs.
550 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
552         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
553         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
554         to draw the menu shortcut string.
556 2007-03-07  Jackson Harper  <jackson@ximian.com>
558         * TreeNode.cs: Add the 2.0 collapse method.
560 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
562         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
564 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
566         * DataGridView.cs: Change DataSource will clear column and row
567         lists. Call Invalidate() to reflect DataSource change.
569 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
571         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
572         and a new row is added to it.
574 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
576         * DataGridView.cs: Add columns when DataSource is en empty list but
577         is a System.Data.DataView (from a System.Data.DataTable).
579 2007-03-06  Andreia Gaita  <avidigal@novell.com>
581         * Label.cs: Implement AutoEllipsis (2.0)
583 2007-03-06  Jackson Harper  <jackson@ximian.com>
585         * TreeView.cs: Implement 2.0 TopNode setter property.
586         - Use a local var instead of the skipped_nodes field for computing
587         how many nodes to skip.  Otherwise we won't scroll because the
588         valuechanged handler checks if skipped_nodes is equal to the new
589         value.
590         - Implement 2.0 Sort method.
591         - Add useless 2.0 DoubleBuffer property
592         - Implement 2.0 LineColors property.  Lets you change the color of
593         the lines in the tree. Terribly useful for creating non cohesive
594         desktops.
595         - Implement 2.0 image key feature.
597 2007-03-06  Jackson Harper  <jackson@ximian.com>
599         * TreeView.cs: We can't get the bounds of the nodes before raising
600         the AfterSelect event, because that event could change the node's
601         bounds (scrolling, font change, etc).
603 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
605         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
606         * Form.cs: Don't recreate handle when creating FormWindowManager, just
607           update window styles. In CreateParams us VisibleInternal instead of
608           VIsible to get the actual visible flag set for this form.
609         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
610           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
611           handle the case when the form is already maximized, in which case
612           it should be restored. Fixes #81043.
614 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
616         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
618 2007-03-05  Jackson Harper  <jackson@ximian.com>
620         * TreeViewHitTestInfo.cs: implement.
622 2007-03-05  Jackson Harper  <jackson@ximian.com>
624         * InternalWindowManager.cs: class status fix.
626 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
628         * InternalWindowManager.cs: All windows that have a parent
629         are confined to their parent when they're being moved.
630         Fixes #80822.
632 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
634         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
635         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
637 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
639         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
640           buttons invisible before deciding which ones should be visible
641           (fixes minimize/maximize buttons showing up in toolwindows). Remove
642           an unused variable.
643         * InternalWindowManager.cs: Remove warning.
645 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
647         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
648         to throw an InvalidOperationException is virtual mode is being used.
650 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
652         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
653         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
654         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
655         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
656         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
657         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
659 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
661         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
662           driver.KeyboardDelay from XplatUI.KeyboardDelay 
663         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
664           (patch by Sergey Volk)
666 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
668         * ToolWindowManager.cs: Added, contains logic for
669           tool windows.
670         * CreateParams.cs: Add a few helper methods and an
671           internal variable to know which control the CreateParams belongs
672           to.
673         * Control.cs: Call Form.ChangingParent when the
674           parent is about to be changed.
675         * XplatUIX11.cs: DeriveStyles (): Set
676           caption_height for all windows that have captions and are children.
677           Update to use ToolWindowManager instead of InternalWindowManager
678           for ToolWindows.
679         * XplatUIWin32.cs: Set fake window styles for all
680           windows that have window managers.
681         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
682           now duplicated for mdi windows when they are
683           maximized, first for the buttons the window itself has, then for
684           the buttons that appear in the menu bar. Makes things a little
685           easier). Updated UpdateWindowDecorations, SetWindowState and the
686           mouse eventhandlers accordingly.
687         * Form.cs: Add ChangingParent (), contains the
688           logic of what should happen when the parent changes. In MdiParent
689           don't set things that ChangingParent () is doing. When handling
690           WM_CLOSE, we can close the form if there are any other modal forms
691           and the current form is a descendent of the modal form.
692         * InternalWindowManager.cs: A lot of refactoring,
693           the title buttons are now extracted to a separate container class
694           that takes care of all button code (clicks, tooltips, etc). Moved
695           Iconic|Maximized|Normal Bounds properties to this class from
696           MdiWindowManager, so that the window state logic can succeed for
697           other than mdi wm's. Implemented general window state change logic.
698           Moved CreateButtons to ThemeWin32Classic, since the theme might
699           override which buttons are available when as well as the exact
700           location.
701         * FormWindowManager.cs: Added, contains logic for
702           normal forms.
703         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
704           which buttons go where (and if they are at all visible). 
705           Removed special handling of maximized windows, since they aren't special. 
706           In DrawManagedWindowDecorations don't try to draw the text if it is
707           empty.
708         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
709           use whatever the wm gives us.
711 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
713         * ButtonBase.cs: Add 2.0 properties.
714         * Button.cs: Override Draw for 2.0.
715         * Control.cs: Add Entered and Selected properties.
716         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
717         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
718         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
719         buttons.
720         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
722 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
724         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
726 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
728         * XplatUIWin32.cs: Register a new class with Windows each time we get
729         a new ClassStyle.  [Fixes bugs #79432, #80817]
730         * Controls.cs: Set the correct ClassStyle in CreateParams.
731         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
733 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
735         * ListView.cs: Add fireEvent argument to ReorderColumn since the
736         ColumnReordered event must not be signaled when modifying DisplayIndex
737         of a ColumnHeader. Added internal ReorderColumns method which takes
738         care of drawing, and updating the internal DisplayIndex of the
739         ColumnHeader. Added AddColumn method which is invoked from
740         ColumnHeaderCollection when adding or inserting columns, and which
741         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
742         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
743         Recalculated dispay indices after removing a ColumnHeader.
744         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
745         match MS. Allows last display index to be returned after ListView
746         is disposed. Update actual location of ColumnHeader when DisplayIndex
747         is modified.
749 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
751         * LinkLabel.cs: Improve CalcTrimRectangle.
752         
753         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
755 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
757         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
758         get rectangle as a result value.
760 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
762         * LinkLabel.cs: Theres some diferences between rectangle return from 
763         MeasureCharacterRanges and the area used for DrawString to fix this 
764         CalcMeasurementFactor method was created, it calcules the diferences
765         to be use later to adjust rectangle in draw operations. Fixes #80473.
766         
767         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
768         to adjust draw rectangle.
770 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
772         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
773         text and some other changes to reduce and optimize source code.
775 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
777         * RadioButton.cs: Implement 2.0 event.
778         * RelatedImageListAttribute.cs: Implement new class.
780 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
782         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
784 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
786         * CheckBox.cs: Implement 2.0 functionality.
788 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
790         * ListView.cs: Refactor Add and AddRange methods of
791         ListViewItemCollection, to not update the ListView
792         everytime an item is added in AddRange. Also move the update
793         code to a new CollectionChanged method, and call it
794         from other methods that need it as well (this should also fix some
795         bugs when Sorting is used).
797 2007-02-27  Jackson Harper  <jackson@ximian.com>
799         * TextControl.cs: Try to never let the caret stay in a non-text
800         tag.
801         * TextBoxBase.cs: Update the caret.
803 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
805         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
806         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
807         delete POINT structure, duplicate of one in XplatUIStructs.
808         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
810 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
812         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
813         edit box since otherwise the Label would immediately be set (even if
814         the user did not modify the label). In OnKeyDown set Handled to true
815         if Return or Escape was pressed. In ColumnHeaderCollection unlink
816         columns that are to be removed. In ListViewItemCollection unlink items
817         that are to be removed.
819 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
821         * TextRenderer.cs: If we set a GDI clip region, we need to clear
822         it when we are done.  [Fixes bug #80949]
824 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
826         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
828 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
830         * ListView.cs: I forgot to commit the changes for ListView 
831         in my previous patch.
833 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
835         * Clipboard.cs: Partially implement an overload of SetDataObject.
836         * Form.cs: Implement ShowWithoutActivation.
837         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
839 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
841         This is a first set of changes to make the Virtual mode works,
842         by avoiding the retrieval of ListViewItem instances until
843         draw time.
845         * ListView.cs: Store item position in the ListView instead of the
846         ListViewItem, this way we don't request the Bounds property of
847         ListViewItem inside the ListView calculations, as well as cache the item
848         size in item_size field. Store indexes instead of ListViewItem
849         instances in the matrix used by icon view. Add a ItemMatrixLocation
850         struct to hold the row and col info of the matrix info.
852         * ListViewItem.cs: Don't store the location anymore, and only cache
853         the rectangles for GetBounds. Use the ListView.GetItemLocation
854         method to retrieve the actual location.
856 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
858         * TextRenderer.cs: Add clipping support, thanks to George.
859         [Fixes bug #80949]
861 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
863         * ListViewItem.cs: Cancel label edit when item is removed from 
864         ListView.
865         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
866         event before the edit textbox is displayed.  Added CancelEdit method
867         which is used end to editing while ignoring the value set by the
868         user. In EndEdit, set focus to ListView to avoid losing focus to
869         other controls. In ListViewItemCollection.Clear, cancel editing of
870         any of the items.  In Remove, cancel editing of item being removed.
871         Avoid udplicate code by modifing RemoveAt to invoke Remove.
873 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
875         * FileDialog.cs: Update FSEntry when move is successful. Fixes
876         bug #80948.  
878 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
880         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
881         compatible with non X11 systems. Fixes #80901.
883 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
885         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
886         whether the item should be unselected and reselect. We do no want this
887         when we're starting to edit the label. Do not fire the 
888         SelectedIndexChanged event from ListView when its already been fired
889         by modifying ListViewItem.Selected. Fixes bug #80943.
891 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
893         * TextRenderer.cs: Previos commit logic was backwards.
895 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
897         * TextRenderer.cs: Don't add padding on MeasureText if we were
898         sent the NoPadding flag.
900 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
902         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
903         after DrawButton. To prevent image overlaps button borders SetClip and 
904         ResetClip added before and after draw image. Fixes #79129.
906 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
908         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
909         window size, it fix problem when you run under win32 that theres
910         Size diferent than ClientSize. Also fix controls size and positions
911         to mimic Win32. Fixes #80837.
913 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
915         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
916         menu area to fix some problems for non X11 systems. Fixes #80613.
918 2007-02-22  Jackson Harper  <jackson@ximian.com>
920         * TreeNode.cs: When a node is expanded, set its is_expanded flag
921         even if it doesn't have any children.
923 2007-02-22  Jackson Harper  <jackson@ximian.com>
925         * TreeView.cs: Calculate the top node 'on the fly', this
926         eliminates issues where you need to click on the tree before
927         scrolling it to get the top node computed correctly.
928         * TreeNodeCollection.cs: We don't need to mess with the top node
929         anymore.
931 2007-02-22  Jackson Harper  <jackson@ximian.com>
933         * DataGridViewRow.cs: Fix typo so height can actually be set.
934         Patch by Peter Grimm.
936 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
938         * FileDialog.cs: Fixed support for renaming files and directories.
939         * ListView.cs: Do not lose focus when edit is canceled. Process
940         Escape as regular key (to prevent closing of dialogs).
942 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
944         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
945         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
947 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
949         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
950         did not modify label.
951         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
952         modified the text. Reset Label when user presses Escape in edit mode.
953         Move focus to ListView after having cancelled or finished editing the
954         label.
956 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
958         * ComboBox.cs: Removed unnecessary initializations. Marked items field
959         private. Clear textbox when Text is set to null and SelectedIndex is
960         already -1.
961         * FileDialog.cs: Removed unnecessary initializations. Removed 
962         workarounds for ComboBox bugs that are now fixed. Modified
963         DefaultExt, InitialDirectory and Title property to change null to
964         zero-length string in getters. Avoid directly accessing fields.
966 2007-02-20  Jackson Harper  <jackson@ximian.com>
968         * TextControl.cs: Remove RecalAlignments call, that was some
969         debugging leftovers.
970         - Don't use the line indent when we shouldn't.
971         * RichTextBox.cs: Add support for paragraph left indents.
973 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
975         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
976         Seems like the class status pages doesn't catch params differences.
978 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
980         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
982 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
984         * ComboBox.cs: Setting Text should have no effect if item text of
985         selected item exactly matches value. First lookup text using
986         case-sensitive comparison, and fallback to case-insensitive comparison.
987         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
988         allow startIndex to be last index. Changed ArgumentOutOfRangeException
989         paramname to match MS. Restart from first item if string is not found
990         after startIndex. Fixed paramname of ArgumentNullException that is
991         thrown for null value in ObjectCollection.Contains.
993 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
995         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
997 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
999         * ListControl.cs: In SelectedValue use value.Equals to compare for
1000         equality instead of ==, otherwise it will fail for strings.
1001         Fixes #80794.
1003 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1004         
1005         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
1006         since the caret won't show up unless ShowSelection is true. 
1007         Fixes #80795.
1009 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1011         * Application.cs: When disabling all forms but the main form, do not
1012           disable any descendants of the main form (such as mdi children or
1013           other parented forms). Fixes #80822 on Windows.
1014         * Form.cs: If we have a parent, set the WS_CHILD style.
1015         * Control.cs: Update the window styles if the control whose parent has
1016           changed is a form (the WS_CHILD style has to be switched).
1018 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
1020         * XplatUIStructs.cs: MsgUIState structure added.
1022 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
1024         * FileDialog.cs: Removed need for separate fileName field. On 2.0
1025         profile, do not check filename(s) for illegal character if filename(s)
1026         were set non-interactively but always check on 1.0 profile. Fixed NRE
1027          in DefaultExt and only strip off first leading dot. Improve exception
1028         message when invalid Filter is set. Do not ignore InitialDirectory if
1029         it does no exist. Store specified Title, and if empty use default
1030         title (depending on type of dialog). Added an internal DialogTitle 
1031         property for retrieving dialog title. Fixed logic of displayed dir to
1032         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
1033         string as its buggy.
1034         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
1035         FileName is a zero-length string (it can never be null). Override 
1036         DialogTitle property to set default title of dialog box.
1037         * SaveFileDialog.cs: Override DialogTitle property to set default
1038         title of dialog box.
1040 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
1042         * FileDialog.cs: Modify default text of filename and filetype labels
1043         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
1044         after we've updated the SelectedIndex. Fixes part of bug #80887.
1045         * SaveFileDialog.cs: Set text of filetype label.
1047 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1049         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
1050         label field. Needed by latest Jackson's fixes for ListView.
1052 2007-02-16  Andreia Gaita  <avidigal@novell.com>
1054         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
1055         print preview images.
1057 2007-02-16  Jackson Harper  <jackson@ximian.com>
1059         * ListView.cs: Make AfterLabelEdit work correctly.
1060         * FileDialog.cs: After changing the name of the folder, we have to
1061         make sure that it is created, or that we pop up an error because
1062         it already exists.
1064 2007-02-16  Jackson Harper  <jackson@ximian.com>
1066         * X11Dnd.cs: Implement aliases on mime handlers, so things like
1067         System.String are mapped to text.
1068         - Handle dataobjects, getting all the possible formats out of them
1069         - We dont need the drag event args before we give feedback. This
1070         allows feedback cursors to be immediate before selections have
1071         been converted.
1073 2007-02-16  Jackson Harper  <jackson@ximian.com>
1075         * TextBoxBase.cs: Modified the method for inserting images to
1076         taking a line and position instead of tag and position.
1077         * RichTextBox.cs: Handle PngBlip data by inserting the png image
1078         into the RTF file.
1079         * TextControl.cs: Allow images to be inserted as the first tag of
1080         a line.
1081         - Fix some off by one issues when we assume the first tag is a
1082         text tag, not an image tag.
1084 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1086         * ListView.cs: Set focus to ListView when ItemControl gets a
1087         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
1088         Fixes part of #80467.
1090 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1092         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
1093           validate Text input (if null or empty string reset Value to default
1094           value). Fixes #80830.
1096 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1098         * ListView.cs: Set owner as null for columns and items when
1099         Dispose is invoked. Fixes #80607.
1101 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
1103         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
1104         showing DropDowns, don't show a Grip when doing Flow layout.
1105         [This fixes the toolbox in PDN 2.72.]
1106         * ToolStripItem.cs: Add Anchor property and some internal properties to
1107         reduces needed changes to FlowLayout.
1108         * ToolStripOverflow.cs: Remove unused variable.
1109         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
1110         use it in the layout calculations.
1112 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
1114         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
1115         reported in #79640.
1116         
1117         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
1118         size calculation.
1120 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
1122         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
1123         MeasureString format, it can make button very large in some cases, it is
1124         strange but is what win32 do.
1126 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
1128         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
1129         size calculation.
1131         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
1132         rendering, the value is based on MenuAccessKeysUnderlined.
1134 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
1136         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
1137         for most themes.
1138         
1139         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
1140         
1141         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
1142         and use MenuAccessKeysUnderlined instead.
1144 2007-02-13  Andreia Gaita  <avidigal@novell.com>
1146         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
1147         A selected control would not get a Focus call if:
1148                 - the default active control of the container is the same as
1149                   the one that was selected
1150                 - we are switching from one container to another
1151         Under these conditions, the container being selected already has
1152         an active_control, which is the same as the one being activated, 
1153         so set_ActiveControl would always return and not send the Focus
1154         call. Fix to check if the currently active control of the container
1155         is actually focused.
1157 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
1159         * StatusStrip.cs: Implement the spring layout.
1160         * ToolStripControlHost.cs: Make sure the hosted control's visibility
1161         always matches the host.
1162         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
1163         and TextAfterImage.
1165 2007-02-13  Andreia Gaita  <avidigal@novell.com>
1167         * Control.cs: Code reorganization only.
1168           - Reorganize the WndProc cases so that each case has it's own handling method, 
1169           to help with the no-line-numbering stack traces.
1170           - Formatting changes (it's vstudio's fault, really :p)
1172 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1174         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
1175           Thread.CurrentUICulture to match DateTimePicker's (and MS)
1176           behaviour.
1178 2007-02-12  Jackson Harper  <jackson@ximian.com>
1180         * RichTextBox.cs:
1181         * TextBox.cs: By default we have a non multiline document
1182         - use the multiline property instead of the internal variable
1183         * TextBoxBase.cs: Treat multiline and non multiline the same in
1184         most places.
1185         - Use the documents multiline flag instead of tracking it ourself
1186         * TextControl.cs: Attempt at getting multiline to match MS
1187         behavior.  Lines now track an offset, which is either their X or Y
1188         offset depending on whether or not we are in multiline mode.
1189         - Update all the methods to understand that lines have an X value.
1190         - Fix crash in Undo::Duplicate when empty lines are deleted.
1192 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
1194         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
1195         code moved to properties PreferredHeight and PreferredWidth. It solve the
1196         all problems when preferred sizes must be recalculated. Fixes #80801.
1198 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
1200         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
1201         font height when compatible_text_rendering is false. Partially fix #80801.
1203 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
1205         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
1207 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
1209         * Form.cs: Improved exception messages in ShowDialog.
1211 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
1213         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
1214         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
1215         if not set. Fixes bug #80764. Avoid accessing current_settings field
1216         directly.
1218 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
1220         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
1221         false.
1223         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
1224         public in 2.0 and for easy maintenance and dont break compatibility it is 
1225         internal in 1.1.
1226         
1227 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
1229         * ToolStripItem.cs: Implement using images from ImageList.
1231 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1233         * DateTimePicker.cs: Change default date-formatting culture from
1234           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
1235           seems to be the way MS does it.
1237 2007-02-08  Andreia Gaita  <avidigal@novell.com>
1239         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
1240         (the 6 was cut off on the right side)
1242 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
1244         * Form.cs: Tell MenuStrips to close when the form is clicked.
1245         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
1246         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
1247         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
1248         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
1249         support for Overflow, where items that do not fit are automatically
1250         reparented to a drop down menu.
1251         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
1252         Also: fixes bug #80747.
1254 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1256         * ComboBox.cs: Remove warning (unused code).
1257         * ScrollableControl.cs: Remove warning for 1.1 profile.
1259 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1261         * Form.cs: Remove a warning.
1263 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1265         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
1266           'g' specifier, not documented anywhere, but seems to always show up
1267           as a single space (might have something to do with the DateTime 'g'
1268           specifier, which is the era format, but since DateTimePicker can't
1269           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
1270           won't crash if the format has an unmatched quote. Now shows
1271           single-character formats correctly. Fixes #80744.
1273 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
1275         * StatusStrip.cs: Stretch property needs to call base.Stretch,
1276         not this.Stretch to fix stack overflow. [Fixes bug #80760]
1278 2007-02-07  Chris Toshok  <toshok@ximian.com>
1280         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
1281         background color.  it overwrites the background image we've
1282         already painted.  Fixes #80599.
1284 2007-02-07  Chris Toshok  <toshok@ximian.com>
1286         * DataGrid.cs: return immediately from Edit() when there are no
1287         columns.  Fixes #80662.
1289 2007-02-07  Chris Toshok  <toshok@ximian.com>
1291         * MessageBox.cs: fix #80625.  don't always show the Help button in
1292         2.0.  use the displayHelpButton parameter to determine if we
1293         should show it. Also, make the internal show_help field private.
1295 2007-02-07  Chris Toshok  <toshok@ximian.com>
1297         * Control.cs (SetVisibleCore): check in the proposed patch for
1298         80604, and set is_visible before calling CreateControl.
1300 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
1302         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
1303         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
1304         on it.
1306 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
1308         * MenuAPI.cs: hotkey_active internal field added, it is required because
1309         we need to know when hotkeys must be draw, before this change a keystate
1310         Navigating was used but we can have menu in navigating state without
1311         hotkeys. Fixes #80694.
1312         
1313         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
1315 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1317         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
1318           corresponding events and methods to be internal for 1.1 profile and
1319           public for 2.0 profile (required by SizeGrip).
1320         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
1321           implicit control list). Don't set the size nor the location of the
1322           SizeGrip anymore as it's not needed.
1323         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
1324           draw directly on the captured control (fixes #80656). Removed
1325           ShowGrip (it wasn't used anywhere), redraw (always true), added
1326           GetDefaultSize and GetDefaultRectangle to calculate defaults.
1327         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
1328           be called from SizeGrip.
1330 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1332         * Timer.cs: Throw ArgumentException if Interval <= 0.
1334 2007-02-05  Jackson Harper  <jackson@ximian.com>
1336         * TreeView.cs: We need to check scrollbar visibility when window
1337         visibility is updated, because non visible trees don't ever add
1338         scrollbars.
1339         * Cursor.cs: We want the override cursor to be reset to NULL when
1340         we set current cursor to the default cursor.
1342 2007-02-05  Jackson Harper  <jackson@ximian.com>
1344         * TextControl.cs: Don't have crlfs when we are non multiline.
1345         - Consolidate the line position.
1347 2007-02-05  Jackson Harper  <jackson@ximian.com>
1349         * X11Keyboard.cs: BACK+CTRL gets a special char code.
1351 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1353         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
1354           handling LeaveNotify->NotifyUngrab in order to send
1355           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
1356           after calling XUngrabPointer, so we call WindowUngrabbed directly
1357           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
1358         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
1359           MouseCaptureChanged correctly. Also create handles if changing
1360           Capture (matches MS behaviour).
1362 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1364         * SizeGrip.cs: Make the last change 2.0 only.
1366 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1368         * SizeGrip.cs: If resizing and the capture is lost, revert any size
1369           changes to initial size (fixes #80597).
1371 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1373         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
1375 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1377         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
1378           background) and only allow dragging if enabled. This way the
1379           sizegrip can be used to fill the open square that otherwise would
1380           have been shown in the bottom right corner of ScrollableControl
1381           when ScrollableControl is not suppose to support sizing.
1382         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
1383           sizegrip is shown and enabled, and hook up with necessary events.
1385 2007-02-01  Chris Toshok  <toshok@ximian.com>
1387         * DataGridTextBoxColumn.cs: clean up the
1388         GetFormattedString/GetColumnValueAtRow combination of functions.
1389         Also fix UpdateUI, and the initial state of
1390         IsInEditOrNavigateMode.
1392         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
1393         aren't supposed to scroll the textbox here, we're supposed to
1394         scroll the datagrid.
1396 2007-02-01  Chris Toshok  <toshok@ximian.com>
1398         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
1399         setting the position.
1401 2007-02-01  Chris Toshok  <toshok@ximian.com>
1403         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
1404         here, since the most recent focus fixes keep us from generating
1405         the Leave event when our textbox gets focus.
1406         (Edit): we should be passing null for the column style's
1407         instantText parameter.
1408         
1409 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
1411         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
1412         raised.  Fixes menu text/icons not showing up in PDN.
1414 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1416         * Control.cs: Remove code in constructor that makes every
1417         control with WS_CHILD set have initial location -1, -1.
1419 2007-01-31  Jackson Harper  <jackson@ximian.com>
1421         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
1422         XplatUIX11.
1423         * XplatUIX11.cs: Give teh keyboard to teh dnd.
1425 2007-01-31  Jackson Harper  <jackson@ximian.com>
1427         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
1428         - Remove some debug code.
1430 2007-01-31  Jackson Harper  <jackson@ximian.com>
1432         * XplatUIX11.cs: If you set the override cursor during a grab, it
1433         should actually override the grab cursor.  This comes into play
1434         when you are setting custom cursors in a DND feedback method.
1436 2007-01-31  Jackson Harper  <jackson@ximian.com>
1438         * X11Dnd.cs: Add support for handling the QueryContinue and
1439         GiveFeedback events.
1440         - Cancel drag and drop actions when the escape key is clicked.
1441         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
1442         can handle the ESCAPE key.
1443         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
1444         done when dnd events are continued after the button is released.
1445         - Add a new helper method so that dnd can translate key events.
1447 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
1449         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
1450         make it more obvious what is happening.
1452 2007-01-30  Jackson Harper  <jackson@ximian.com>
1454         * XplatUIX11.cs: Don't break when handling button release in drag
1455         and drop operations. We need that BUTTONUP message to get through
1456         so capture is released.
1457         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
1458         this is handled automatically when the mouse is down.
1460 2007-01-30  Jackson Harper  <jackson@ximian.com>
1462         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
1463         is closed, so we need to make sure that we aren't changing the
1464         dialog result when the OK (Open or Save) button has been clicked
1465         and we are closing the window ourselves.  Note we don't need to
1466         worry about the cache being written in this case, because it was
1467         already done in the previous FilOk call.
1469 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1470         
1471         * DateTimePicker.cs: Remove a warning.
1472         * ComboBox.cs: Remove a couple of warnings.
1474 2007-01-29  Chris Toshok  <toshok@ximian.com>
1476         * XplatUIX11.cs: don't crash, and remove the icon if the user has
1477         set one, if SetIcon is passed a null icon.
1479 2007-01-29  Andreia Gaita  <avidigal@novell.com>
1481         * TextBox.cs: Redraw when the password characters changes
1482         * TextControl.cs: Check if textbox has a password char and draw 
1483         a line of password chars instead of the text in the line. LineTag gets 
1484         an extra Draw() method which allows document.Draw to override the text 
1485         that will be drawn. Removes 1024 char limitation on length of passworded 
1486         lines.
1488 2007-01-29  Jackson Harper  <jackson@ximian.com>
1490         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
1491         single chars is not.
1493 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
1495         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
1496         one pixel.  Fix a StackOverflowException caused by an overload wrongly
1497         calling itself.
1499 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
1501         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
1502         also remove ProcessArrowKey and put the code inside ProcessKeys.
1504 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
1506         * PaddingConverter.cs: Added.
1508 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1509         
1510         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
1511         ShowPanels is false (fixes #80600). Only draw up to 127 characters
1512         of text (fixes #80601). For panels clip the text to draw to the
1513         panel (fixes #80603).
1515 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1517         * ComboBox.cs: Fixed implementation of ResetText.
1519 2007-01-25  Jackson Harper  <jackson@ximian.com>
1521         * TextControl.cs: For the last char of a line we need to use the
1522         line size, not that chars width, since it won't actually be
1523         computed since the right side of a char is based on the start of
1524         the left side of the next char, and the next char does not exist.
1526 2007-01-25  Chris Toshok  <toshok@ximian.com>
1528         * Splitter.cs: fix the new unit tests, and reindent some switch
1529         statements.
1531 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1533         * ComboBox.cs: Implemented 2.0 methods and events.
1534         * TextBoxBase.cs: Added OnTextUpdate, so that
1535         ComboBox.ComboTextBox can inform ComboBox of it.
1537 2007-01-25  Jackson Harper  <jackson@ximian.com>
1539         * TextControl.cs: Respect ShowSelection when deciding whether or
1540         not to display the caret, this allows comboboxes to have carets
1541         when the combotextbox does not have focus.
1543 2007-01-25  Jackson Harper  <jackson@ximian.com>
1545         * TextControl.cs: Add a Suspend/Resume for updating, basically the
1546         same as the Suspend/Resume for recalc, except this will do actual
1547         Invalidates.
1548         - New Undo manager, works much like the MS version.
1549         - Implemented Redo
1550         * TextBoxBase.cs: The Cut operation is undoable.
1552 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1553         
1554         * TextBoxBase.cs: Don't antialias text. Makes it look way better
1555         on Windows (no difference on Linux).    
1557 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1559         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
1560         we don't want to activate any windows. Fixes #79433.
1562 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
1564         - ButtonBase.cs: Fix capitalization of parameter: disposing.
1565         [Fixes bug #80609]
1567 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
1569         * FileDialog.cs:
1570         - Move to using System.ComponentModel.EventHandlerList
1571         - Replace Refresh with Invalidate
1572         - Clear the mime filecache on closing
1573         - Some other memory reducing work. After beeing closed FD now uses
1574           only about 300 KB for the fdo mime stuff plus the memory of the
1575           cached icons.
1576         * Mime.cs: Changed coding style and removed unnecessary commented
1577         code. Some more memory memory reducing work.
1579 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1581         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
1582         a few other missing 2.0 properties.
1583         * Theme.cs: Added DrawFlatStyleComboBox.
1584         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
1586 2007-01-24  Chris Toshok  <toshok@ximian.com>
1588         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
1589         wake_waiting flag, not just when there's data to be read.  if we
1590         don't, then future wakeup's won't reach us and we'll be doomed to
1591         wait for the entire 1 second timeout forever (unless there are X
1592         events to be had).
1594 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
1596         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
1597         until you pass Items.Count, not Items.Count - 1 like 1.1.
1599 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
1601         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
1603 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
1605         * ToolStripContainer.cs: The recent Dock fix exposed that I was
1606         adding the panels in the wrong order.
1608 2007-01-24  Jackson Harper  <jackson@ximian.com>
1610         * TextBoxBase.cs: When we move the caret we also need to move the
1611         selection, this fixes some random crashing after doing select
1612         text, unselect, delete a char, paste.
1614 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1616         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
1618 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
1620         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
1621         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
1622         * ToolBar.cs: Force redraw in BackgroundImageChanged.
1624 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
1626         * ToolBar.cs:
1627         - Implement support for vertical toolbars. Fixes #80539;
1628         - Call LayoutToolBar when resize, it fix some other problems in layout.
1629         - Rename requested_height to requested_size, as we can have width on it
1630         when toolbar is vertical.
1631         - Create a private property "Vertical" that uses Dock to verify when 
1632         toolbar is vertical or not.
1633         - Set ControlStyles when change Dock property.
1634         - Refactory in LayoutToolBar to have better variables names and to support
1635         vertical toolbars.
1636         - Fixes default value for ButtonSize when button count is equal zero, size
1637         must be (39, 36) test case writed.
1639 2007-01-23  Chris Toshok  <toshok@ximian.com>
1641         * Control.cs: fix the checks so that they work correctly for mdi
1642         parents/children.
1644 2007-01-23  Chris Toshok  <toshok@ximian.com>
1646         * Control.cs: ControlCollection seems to have super-secret
1647         abstraction breaking knowledge of Mdi containers.  allow MdiClient
1648         to add toplevel controls.
1650 2007-01-23  Chris Toshok  <toshok@ximian.com>
1652         * Control.cs: throw an ArgumentException if a toplevel control is
1653         added to our control collection from ControlCollection.Add, as
1654         well as from ControlCollection.IList.Add.  This fixes the
1655         ControlSetTopLevelTest.TestTopLevelAdd unit test.
1657         Also, in ControlCollection.IList.Add, don't through an
1658         ArgumentNullException, throw an ArgumentException, when value ==
1659         null.  This matches MS.
1661 2007-01-23  Chris Toshok  <toshok@ximian.com>
1663         * BindingSource.cs: initial, incomplete, implementation of
1664         BindingSource.
1666 2007-01-23  Jackson Harper  <jackson@ximian.com>
1668         * TextControl.cs:
1669         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
1670         that I can fix a broken unit test (TextBoxTest::ClearUndo)
1671         
1672 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
1674         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
1676 2007-01-23  Andreia Gaita  <avidigal@novell.com>
1678         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
1679         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
1680         IndexOfKey() for 2.0
1682 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1684         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
1685         to prevent it from changing z-order.
1686         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
1687         leave UI updates in MdiWindowManager.
1688         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
1689         1 sized (NC handling goes weird on Linux otherwise).
1690         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
1691         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
1692         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
1693         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
1694         and SetWindowState(s) to allow for changing the size of an activated child
1695         before activating it (reduces a lot of flicker).
1697 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
1699         * Form.cs: Changing FormBorderStyle has different semantics based
1700         on whether the Form is visible or not.  If not visible, don't change
1701         the Size.  But InvalidateNC needs to be called to force the window
1702         to pick up the changes and redraw itself.  [Fixes bug #80574]
1704 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
1706         [Moma work]
1707         * ContainerControl.cs: ProcessCmdKey.
1708         * ErrorProvider.cs: new constructor.
1709         * Form.cs: fix AutoValidateEvent compiler warning.
1710         * Label.cs: fix OnAutoSizeChanged compiler warning.
1711         * MenuStrip.cs: fix CanOverflow compiler warning.
1712         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
1713         * TextBox.cs: Dispose.
1714         * ToolStrip.cs: CanOverflow, re-enable double buffering.
1715         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
1716         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
1717         * ToolStripItem.cs: Overflow, RightToLeft properties.
1719 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1721         * Form.cs: Move the layout of the main form to MdiWindowManager.
1722         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
1723         do a layout of the main window to update MdiClient's client area to
1724         the right area. Fixes #80533. Remove the calculation of nc size, 
1725         it was just wrong and the correct one is the same as for 
1726         InternalWindowManager. 
1728 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
1730         * Control.cs: Setting Anchor or Dock needs to reset the other
1731         to its default.  [Fixes bug #80556]
1733 2007-01-20  Chris Toshok  <toshok@ximian.com>
1735         * CheckedListBox.cs: class status changes.
1737         * ScrollableControl.cs: same.
1739         * RichTextBox.cs: same.
1741         * ContainerControl.cs: same.
1743         * ListView.cs: same.
1745         * NotifyIcon.cs: same.
1747         * MenuStrip.cs: same.
1749         * RadioButton.cs: same.
1751         * CheckBox.cs: same.
1753         * PrintPreviewDialog.cs: same.
1755         * Form.cs: same.
1757 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
1759         * TreeNode.cs: Apply Alan's patch for Name property.
1761 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1762         
1763         * Form.cs: Implemented SizeGripStyle.
1764         * SizeGrip.cs: Check for minimum and maximum size for the
1765         control being resized and only resize if size has actually
1766         changed.
1768 2007-01-19  Chris Toshok  <toshok@ximian.com>
1770         * DataGridColumnStyle.cs: stop setting _readonly in the
1771         PropertyDescriptor setter.  fixes a unit test failure.
1773         also, rename ParentReadOnly to TableStyleReadOnly, and have it
1774         just consult our table style (if we have one).  We don't need to
1775         consult the datagrid readonly attribute because that's passed in
1776         as the _ro arg to Edit.  this simplifies things a little.
1777         
1778         * DataGrid.cs: use CurrentColumn instead of
1779         current_cell.ColumnNumber just to simplify some of the code.
1781         switch the order of some things in the CurrentCell setter to keep
1782         the previous cell from getting a textbox again -
1783         EnsureCellVisibility causes scrolling to happen, which calls Edit.
1784         So we need to set the new cell before calling it.
1785         
1786         call Edit in OnEnter, as does Microsoft.
1787         
1788         also, make sure the current table style isn't the one we create
1789         initially when checking to see if it's different than the one
1790         we're setting it to in BindColumns (this fixes #80421).
1792         * GridTableStylesCollection.cs: table styles can have "" for a
1793         mapping name.  part of the fix for #80421.
1795         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
1796         Edit significantly.
1798 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
1800         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
1801         and less GDI object leaky-er.
1803 2007-01-18  Andreia Gaita  <avidigal@novell.com>
1805         * LinkLabel.cs: Add opaque control style
1807 2007-01-18  Jackson Harper  <jackson@ximian.com>
1809         * TextControl.cs: Calculate width properly.
1810         - Don't store the tag's X offset, this can be figured out very
1811         easily.
1812         - When getting the caret tag make sure to get the last empty tag.
1814 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
1816         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
1817         [Fixes bug #79959]
1819         * Control.cs: Color.Empty shouldn't count for previous transparent
1820         redraw changes.
1822 2007-01-18  Jackson Harper  <jackson@ximian.com>
1824         * TextBox.cs:
1825         * RichTextBox.cs:
1826         * TextControl.cs: Starting to merge in some pieces of my older
1827         undo work.  Basically just some slight cleanup of the undo API.
1829 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1831         * TrackBar.cs: Fix signature of RightToLeftLayout.
1832         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
1833         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
1834         * Application.cs: Implemented UseWaitCursor.
1836 2007-01-18  Jackson Harper  <jackson@ximian.com>
1838         * TextControl.cs: We can't skip tags if any part of the tag is
1839         visible.
1841 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
1843         * ContainerControl.cs: Override OnLayout.
1845 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
1847         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
1849         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
1850         everything else.
1852 2007-01-18  Chris Toshok  <toshok@ximian.com>
1854         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
1855         (leftover from the container_selected days, I'd wager).  fixes bug
1856         #80546.
1858 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
1860         * Control.cs: Apply patch from George to fix the new testcase on
1861         bug #80451.  We can't just check for Color.Transparent, we need 
1862         to check if the back color's alpha channel is < 255.
1864 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
1866         * Form.cs: Move setting show_icon = true to before the constructor
1867         so that the base constructor has that information when it calculates
1868         the form's size.  Was causing forms to be (6, 6) bigger than they
1869         were supposed to be.  Thanks for catching this Rolf!
1871 2007-01-18  Jackson Harper  <jackson@ximian.com>
1873         * TextControl.cs: When replacing a selection we need to invalidate
1874         from the initial selection start, because selection start is moved
1875         to the end of the replacement.
1877 2007-01-18  Andreia Gaita  <avidigal@novell.com>
1879         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
1881 2007-01-18  Chris Toshok  <toshok@ximian.com>
1883         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
1884         I just added.
1886 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
1888         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
1889         layout methods and properties from ToolBarButton must be available
1890         into ToolBarButtonInfo.
1892 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
1894         * Control.cs: If the control has a transparent background, we
1895         need to refresh it when it moves and when it's parent's background
1896         image changes.  [Fixes bug #80451]
1898 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
1900         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
1902 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
1904         * XplatUIWin32.cs: Implement proper double buffering for Windows.
1905         [Fixes bug #80447, and probably speeds up things as well]
1907 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1909         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
1910         * XplatUIWin32.cs: We need to recalculate NC size after changing 
1911         window style to toolwindow (otherwise the client rectangle will be
1912         3 pixels to small for some reason).
1913         * MdiWindowManager.cs: Revert NC size calculations to match how
1914         they are calculated only based on window styles (to match
1915         Win32AdjustWindowRectEx, since otherwise when setting size or 
1916         location, Control will call Win32AdjustWindowRectEx to update client 
1917         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
1918         calculate a different value of client size causing another paint 
1919         (and flickering))
1920         * InternalWindowManager.cs: When moving or resizing a window only
1921         update size or location if they actually changed.
1922         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
1923         (seems to match Windows behaviour better). Cleaned up 
1924         ManagedWindowDecorations to draw what's needed and nothing else
1925         (was drawing borders and lines where they shouldn't be)
1926         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
1927         (style = 0xFFFF) and takes into account caption height when 
1928         calculating window rectangle.   
1930 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
1932         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
1933         can be added to toolbar multiple times, we need to maintain a list of 
1934         button information for each positions.
1936 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
1938         * ToolBar.cs: Some small stetic changes.
1940 2007-01-16  Jackson Harper  <jackson@ximian.com>
1942         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
1943         that allow us to have nested recalc = false blocks.
1944         - Add paste support for images in the RichTextBox
1945         * RichTextBox.cs: flush the text after the color is changed, so
1946         the change takes effect.
1947         - Use SuspendRecalc
1948         - Some extra debugging info
1949         * TextControl.cs: Tags no longer track their length, it is just
1950         computed from the next tags length, this makes things a little
1951         simpler and reduces places that we have to track length changes.
1952         - Refactored the linetag class a little so we could make it
1953         a base class for different kinds of tags
1954         - Created a image tag, a tag that can have a single image inserted
1955         into it
1956         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
1957         that we can call suspend multiple times.
1958         - Add some debugging methods
1960 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1962         * MdiClient.cs: Add ActivatePreviousChild for 
1963         mdi child window navigation.
1964         * Form.cs: Use MdiClient.ActivateNextChild/
1965         ActivatePreviousChild instead of Form.SelectNextControl
1966         to select the next/previous child since 
1967         SelectNextControl doesn't do it in the same order
1968         as mdi children should do it.
1970 2007-01-16  Chris Toshok  <toshok@ximian.com>
1972         * Control.cs: remove container_selected field.
1974 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1976         * MdiClient.cs: Update main form's ActiveChild when
1977         updating keyboard focus for the mdi child.
1979 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
1981         * Control.cs: PreferredSize fix.
1983         * Form.cs: Add several 2.0 events, properties, and methods.
1985 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
1987         * Form.cs: Provide meaningful message when MdiParent is assigned a
1988         Form that is not an MdiContainer.
1990 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1992         * MdiClient.cs: Update main form's ActiveChild when
1993         activating a mdi child.
1995 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1997         * MdiWindowManager.cs: Fix NRE when merging menus and main form
1998         doesn't have a menu.
2000         * Form.cs: Request NCRecalc after creating a mdi child window.
2001         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
2002         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
2003         
2004         * MdiClient.cs: Add new method SendFocusToActiveChild that either
2005         sends keyboard focus to the active child, or to the MdiClient
2006         if there are no child forms.
2007         
2008 2007-01-15  Chris Toshok  <toshok@ximian.com>
2010         * ListView.cs: drop the *Internal overrides, just do our work in
2011         ItemControl's WndProc instead.
2013         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
2014         of the various controls, and forward the events properly (in the
2015         same manner as MS) from the textbox to the UpDown.  Also the
2016         ActiveControl of the UpDownBase gets set properly now.  Finally,
2017         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
2019         * NumericUpDown.cs: set Text in the ctor.
2021         * DomainUpDown.cs: call UpdateEditText in the ctor.
2022         
2023         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
2024         so even a Selectable = false textbox can be focused if you click
2025         in it.  Go figure.
2027         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
2028         just add their handling in their respective WndProc's.  Also add
2029         an explicit FocusInternal method that doesn't consult CanFocus
2030         before calling Select(this).
2032         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
2033         do our work in WndProc instead.
2035         * TabControl.cs: same.
2037         * ComboBox.cs: same.
2039 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
2041         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
2042         Fixes #80006.
2044 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
2046         * ListViewItem.cs:
2047         * ThemeWin32Classic.cs: Don't draw the item text outside
2048         item bounds in Details view, as well as use trimming.
2049         Fixes bug #80376.
2051 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
2053         * Form.cs: Implement Form.ShowIcon.
2054         
2055         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
2056         null, which when combined with the DlgModalFrame window style removes
2057         the icon from the title bar.
2059 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
2061         * Control.cs: Call OnMouseClick after OnClick. (2.0)
2063 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
2065         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
2066         menu when mdi child windows theres a menu, uses insert to get icon
2067         at first position. Partially fix #80006.
2069 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
2071         * Clipboard.cs: Implement 2.0 methods.
2073 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
2075         * Menu.cs: Implement Insert method of MenuItemCollection class
2076         to fix MenuMerge.
2078 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2080         * ListView.cs: Implement 2.0 FindItemWithText method.
2082 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
2084         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
2085         to calculate menu bar size. Fixes #80290.
2087 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
2089         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
2091 2007-01-11  Chris Toshok  <toshok@ximian.com>
2093         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
2094         initial form.
2096 2007-01-11  Chris Toshok  <toshok@ximian.com>
2098         * LinkLabel.cs: make sure to call base.Select in our Select method
2099         if it turns out we're going to be selected (i.e. if we have a link
2100         that is going to receive focus).  That way our container's
2101         ActiveControl is updated properly.
2103 2007-01-11  Chris Toshok  <toshok@ximian.com>
2105         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
2106         they have 1 or more links.  this fixes the crash gert reported.
2108 2007-01-11  Andreia Gaita  <avidigal@novell.com>
2110         * ContainerControl.cs: Remove ContainerSelected flag, not needed
2111         anymore.
2113         * Control.cs (Controls.Add): Check if control to be added to the collection
2114         is a top level control, and throw an ArgumentException if it is.
2115         Remove ContainerSelectedFlag, not needed anymore.
2117         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
2118         top most control doesn't activate the form. This fixes a problem in the
2119         MessageBox, where the default button wouldn't get focus because the form
2120         was activated before being Loaded - when the Owner is set, SetTopMost is
2121         called, and it would activate it.
2123 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
2125         * Button.cs: When clicked and setting the parent form's DialogResult,
2126         use FindForm instead of Parent, since parent could be a container
2127         control and not the Form.  Fixes bug #80495.
2129 2007-01-10  Chris Toshok  <toshok@ximian.com>
2131         * Form.cs: move the call to SendControlFocus into the same
2132         is_loaded check.
2134 2007-01-10  Chris Toshok  <toshok@ximian.com>
2136         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
2137         It breaks in the face of the new ActiveControl stuff, and should
2138         be unnecessary.
2140         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
2141         activecontrol's focus if it's not already set, after we set
2142         ActiveControl, but before we call OnActivated.  Re-fixes #79667
2143         after the previous focus/active control fixes regressed it.
2145         * Control.cs: reindent some code.
2146         
2147 2007-01-10  Chris Toshok  <toshok@ximian.com>
2149         * Splitter.cs: clearing some outstanding changes from my tree.
2150         Replace all accesses (not writes) to the internal dock_style field
2151         with the Dock property.
2153 2007-01-10  Chris Toshok  <toshok@ximian.com>
2155         * Control.cs: make FireEnter, FireLeave, FireValidating, and
2156         FireValidated virtual.
2158         * Form.cs: override and don't chain up calls to FireEnter and
2159         FireLeave.
2161 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2163         * ListView.cs: Add more text padding space when using
2164         auto resize for columns (the previous value didn't work fine).
2166         * ThemeWin32Classic.cs: Update text position inside columns,
2167         to match the appeareance of .Net.
2169         * ColumnHeader.cs: When using auto resize, only the Width should
2170         depend on the sub items, not the Height. Also, set width after
2171         auto resizing (the value of Width should never remain as -1 or -2).
2173 2007-01-10  Chris Toshok  <toshok@ximian.com>
2175         * Application.cs: fix compilation errors when debug is enabled.
2177 2007-01-10  Chris Toshok  <toshok@ximian.com>
2179         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
2180         add some nice ascii art pictures and explanation of the process).
2181         (GetMostDeeplyNestedActiveControl): new utility function we need
2182         because our ActiveControl can refer to a child container with its
2183         own ActiveControl.
2185         * Form.cs (OnActivated): remove the call to SelectActiveControl
2186         from here, since you can override this method and not chain up,
2187         and winforms still sets the active control.
2188         (OnCreateControl): also remove the unnecessary SelectActiveControl
2189         call from here.
2190         (WndProc): it's actually called from the WM_ACTIVATE block, just
2191         before calling OnActivated.
2193         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
2194         inside the else.  the ActiveControl setter will end up setting
2195         focus on @control.  This keeps us from setting it again (and
2196         generating an extra LostFocus/GotFocus pair).
2197         (Select (bool, bool)): reindent.
2199 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
2201         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
2202         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
2203         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
2204         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
2205         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
2206         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
2207         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
2208         ToolStripTextBox.cs: Another wave of corcompare work.
2210 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2212         * ColumnHeader.cs: Implement 2.0 AutoResize method using
2213         the Width property.
2215         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
2216         methods by callling Column.AutoResize method on columns.
2218 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
2220         * Control.cs: Provide proper implementations of PreferredSize
2221         and GetPreferredSize (2.0).
2223 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
2225         * Form.cs: Remove one character (!) to make my previous OnClosing
2226         stuff work for modal windows like MessageBox.
2228 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2230         * ListView.cs:
2231         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
2232         ListView.Columns to get the last displayed column. Fixes #80452.
2234 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
2236         * Label.cs, LinkLabel.cs: Source code identation fixes.
2238 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
2240         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
2241         we dont need to invalidate only borders because when we invalidate four
2242         border lines the invalidate's generates a complete redraw of button, 
2243         because it now invalidate a complete rect some other redraws operations
2244         are fixed. Fixes #80196.
2245         
2246         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
2247         Remove ToolBarInvalidateEntireButton as it is not used.
2249 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
2250         
2251         * Form.cs: Make sure that both OnClosing and OnFormClosing are
2252         called for 2.0 profile.
2253         * CloseReason.cs: Make class internal for 1.1.
2255 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
2257         * ToolStripManager.cs: Implement FindToolStrip functionality.
2258         * ToolStrip.cs: Register and unregister with ToolStripManager.
2260 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
2262         * Control.cs: This was messy.  2.0 moves much of ControlCollection
2263         to ArrangedElementCollection.  Implemented this with as few #if's as 
2264         possible (which is still too many).
2266 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
2268         * Control.cs: Implement SizeFromClientSize() [2.0].
2270 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
2272         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
2273         use Theme.BorderSize to calculate area instead of static value 1, 
2274         by the way use new BorderStaticSize instead     Border3DSize when 
2275         border_static is true. Fixes #79537.
2276         
2277         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
2278         
2279         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
2280         it is not needed.
2282 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
2284         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
2286 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
2288         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
2289         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
2290         
2291         * Hwnd.cs: 
2292         - border_static field added, it will used to define when a control 
2293         theres 3D border but it must be static (thin).
2294         - In GetWindowRectangle use Theme.BorderSize to calculate area 
2295         instead of static value 1, by the way use new BorderStaticSize instead
2296         Border3DSize when border_static is true.
2298         * XplatUIX11.cs, XplatUIOSX.cs: 
2299         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
2300         
2301         * Theme.cs: BorderStaticSize field added.
2303 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
2305         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
2307 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
2309         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
2310         mimic same behavior than win32 that set border only in CreateParams,
2311         it fix problems under CreateParams overrides. Fix #79442 and partial
2312         fix #79537.
2313         
2314         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
2315         of thi control you must call recreate handle. 
2316         
2317         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
2318         need to do anything as RecreateHangle will take care about borders.
2320 2007-01-05  Mike Kestner  <mkestner@novell.com>
2322         * ListView.cs: hack to eliminate Lost/Got focus notifications on
2323         cycles between the ItemControl and parent.  Fixes #80388.
2325 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
2327         * Control.cs: Lazy init layout engine. Do not directly use 
2328         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
2330 2007-01-05  Chris Toshok  <toshok@ximian.com>
2332         * DataGrid.cs: don't forceably rebind columns in SetDataSource
2333         unless our list manager has changed (i.e. unless we have reason to
2334         believe our columns have changed).  Fixes #80422.
2335         
2336         also, disable the call do BindColumns in
2337         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
2338         1.1 the event isn't raised in response to a column addition on a
2339         table.)
2341 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
2343         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
2344         that inheritors can not call it if they choose.  Fixes bug #80456.
2346 2007-01-05  Andreia Gaita  <avidigal@novell.com>
2348         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
2349         doesn't blow up with a null exception on marshalling.
2350         
2351 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
2353         * Control.cs: Implement several 2.0 protected properties and methods.
2354         Ensure that all necessary events are being called when properties
2355         are set.
2357 2007-01-05  Mike Kestner  <mkestner@novell.com>
2359         * ListView.cs: implement PgUp/PgDn for Details view.  Also
2360         fixes First/LastVisibleIndex to use the item_control.ClientRect 
2361         instead of the parent control.  Fixes #80378.
2363 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
2365         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
2366           determine whether to use yard-pound or not (bug #78399).
2368 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
2370         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
2371         problems. So it is time to bring back the old popupbutton colors.
2373 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2375         * ColumnHeader.cs:
2376         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
2377         property by using the internal information of the
2378         columns order in ListView.
2380 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
2382         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
2383         Add 2.0 Tag properties.
2385         * LinkArea.cs: Add 2.0 ToString method.
2387 2007-01-03  Chris Toshok  <toshok@ximian.com>
2389         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
2390         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
2391         when we're editing, which fixes #80047.
2393 2007-01-03  Chris Toshok  <toshok@ximian.com>
2395         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
2396         #80404.
2398 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
2400         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
2401         property and implementation.
2403         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
2404         for MdiWindowListItem property.
2406         * ToolStripDropDown.cs: Don't consider hidden menu items while
2407         laying out the menu.
2409 2007-01-03  Andreia Gaita  <avidigal@novell.com>
2411         * SendKeys.cs: window handle is not needed in win32, so just
2412         get the active window for X after parsing keys and don't use
2413         it when building the message; it is passed by parameter to the 
2414         Xplat method and used there to build the message instead. Also,
2415         wait for events to be processed on SendWait, as opposed to Send,
2416         which doesn't wait :) Playing with threads and Send() completely 
2417         hangs on ms.net, only SendWait() works.
2418         
2419         XplatUIX11.cs
2420         X11Display.cs: Check for valid window handle.
2422 2007-01-03  Jackson Harper  <jackson@ximian.com>
2424         * TextControl.cs: Need to prevent wrap calculations when replacing
2425         text (this was there before i removed it accidently).
2426         - Don't update the cursor during the positioning, just set it to
2427         selection_start at the end of the operaion.
2429 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2431         * Control.cs:
2432         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
2433         
2434 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2436         * MonthCalendar.cs: Added Click and DoubleClick events again,
2437         but this time they only hide Control's Click and DoubleClick.
2438         
2439 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
2441         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
2442         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
2444 2007-01-02  Jackson Harper  <jackson@ximian.com>
2446         * TextBoxBase.cs: We move the caret with the split now, so we
2447         don't need to explicitly move the caret after splitting.  This
2448         fixes the caret bumping down an extra line on Enter.
2450 2007-01-02  Miguel de Icaza  <miguel@novell.com>
2452         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
2453         2.72). 
2455         * ScrollableControl.cs: Add Scroll event.
2457 2007-01-02  Mike Kestner  <mkestner@novell.com>
2459         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
2460         to fix all hdr height padding codepaths.  Fixes #80207.
2462 2007-01-02  Chris Toshok  <toshok@ximian.com>
2464         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
2465         setting it to the Control defaults anyway, and it being after the
2466         Dock set was screwing up layout.
2467         (set_Dock): don't short circuit out of setting base.Dock.  Also,
2468         no need to call UpdateStatusBar here, as it'll be re-layed out if
2469         it needs to be.
2471 2007-01-02  Mike Kestner  <mkestner@novell.com>
2473         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
2474         to header height for width == -1. Fixes the rest of #80207.
2476 2007-01-02  Mike Kestner  <mkestner@novell.com>
2478         * ListView.cs: rework the mouse event forwarding everaldo added
2479         to translate the coordinates to the parent control not
2480         raise the parent events until after we've done our work. Hover
2481         needs more work, in the case where HoverSelection is on, because
2482         the item control receives more than one MouseHover per Enter
2483         event, so we need to ensure only the "first" hover gets forwarded.
2484         Opening a minor bug for that.
2486 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
2488         * CheckedListBox.cs: Fixed SelectionMode to match MS.
2489         * ListControl.cs: Implemented AllowSelection property. Removed extra
2490         tabs.
2491         * ListBox.cs: Implemented AllowSelection property.
2493 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
2495         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
2496         SelectedItem, it prevent for errors when you must disable item
2497         before perform click. Fixes #80409.
2499 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
2501         * MenuAPI.cs: Prevent second level and beyond submenus to close
2502         until first level when move out side of popup.
2503         
2504 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
2506         * MenuAPI.cs:
2507         - Down submenu positin in three pixels.
2508         - Closes sub menu when mouse leaves from menu. Fixes #80402.
2510 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
2512         * ThemeWin32Classic.cs:
2513         - Fix popup menu size adding one pixel on the top.
2514         - Down menu item border from two to one to mimic Win32.
2515         - Some source identation fixes. 
2517 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
2519         * ThemeWin32Classic.cs: Use float numbers to calculate size and
2520         position of menu arrows, it fix wrong arrow size.
2522 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
2524         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
2525         instead of line, it simplify draw operation and fix it using 3D
2526         borders to mimic Win32.
2528 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
2530         * StatusStrip.cs: Add implementation of the sizing grip.
2532         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
2533         StatusStrip rendering.
2535 2006-12-31  Chris Toshok  <toshok@ximian.com>
2537         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
2538         override the layout style (anchor/dock) of the control.  assign to
2539         Dock instead.  Fixes bug #80416.
2541         * ToolStrip.cs: same.
2543 2006-12-31  Andreia Gaita  <avidigal@novell.com>
2545         * ContainerControl.cs: Use ContainerSelected flag to check if 
2546         a Container is directly selected, or if Select is called on a 
2547         non-container. If a container is directly selected, focus events 
2548         should not be raised.
2549         Apply #80411 patch to throw exception on set_ActiveControl if 
2550         control is the same as the current one.
2551         
2552         * Control.cs: Use ContainerSelected flag (see above).
2553         Add invalidation check to raise event but not invalidate if 
2554         dimensions are 0.       
2555         Apply #80411 patch.
2556         
2558 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
2560         * MenuAPI.cs: After click, dont close popup menu when menu is
2561         ContextMenu. Fixes #80399.
2563 2006-12-30  Chris Toshok  <toshok@ximian.com>
2565         * ContainerControl.cs: make sure we throw the exception if the
2566         container control doesn't contain the control we're setting
2567         ActiveControl to.
2569 2006-12-30  Chris Toshok  <toshok@ximian.com>
2571         * Control.cs (SetTopLevel): fix the exception raised by
2572         SetTopLevel for child controls.
2573         (set_Anchor): call UpdateDistances when setting the anchor type.
2574         This fixes bug #80336.
2576 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
2578         * Theme.cs: For now, revert back to 8pt font.
2580 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
2582         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
2583         Fixes #80395.
2585 2006-12-29  Chris Toshok  <toshok@ximian.com>
2587         * Control.cs: reorder the code in OnResize to give the same event
2588         ordering as MS.
2590 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2592         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
2593         TileHorizontally and TileVertically.
2594         
2595 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
2597         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
2598         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
2599         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
2600         Corrected copyright and email adress.
2602 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
2604         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
2605         of Exception in FullPath property if no TreeView is associated with
2606         the TreeNode.
2608 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
2610         * Theme.cs: Marked default_font as private, and initialize it in ctor
2611         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
2612         on 2.0 profile.
2613         * ThemeGtk.cs: Removed default_font intialization.
2614         * ThemeWin32Classic.cs: Removed default_font initialization.
2616 2006-12-28  Chris Toshok  <toshok@ximian.com>
2618         * Control.cs: fix a couple of place where we were creating handles
2619         more aggressively than we should be.  Fixes ControlRefresh unit
2620         tests.
2622 2006-12-28  Chris Toshok  <toshok@ximian.com>
2624         * Control.cs: contrary to what the comment said, Control.Dock does
2625         not supercede Control.Anchor - the last one you assign to decides
2626         the layout behavior.  so we need to keep track of which was the
2627         last set.  Also, fix some of the affected property arguments in
2628         PerformLayout calls, and remove an redundant parent.PerformLayout
2629         call in OnResized.
2631         Add a VisibleInternal property, which returns is_visible.  We
2632         can/should get rid of all the usage of this field elsewhere.
2634 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2635         
2636         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
2637         control style, not DoubleBuffer. Added UseDoubleBuffering property
2638         that indicates whether doublebuffering is enabled and supported.
2639         (comment from and code based on Gert Driesen's patch in #80324).
2640         Fixes #80324.
2642 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2643         
2644         * Control.cs: Fixed a NRE.
2646 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2648         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
2649         for 2.0.
2651 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2653         * Control.cs: Rewrote double buffering, now a seperate
2654         class handles all the buffering, no Graphics is disposed of
2655         until the painting is finished (earlier implementation 
2656         would crash if the control was resized in the OnPaint, 
2657         since it would cause the double buffer to be recreated
2658         and the old one disposed), a separate Graphics is 
2659         created for every paint (MS behaviour and anyways the state
2660         of the Graphics would have to be saved and restored otherwise)
2661         
2662         * XplatUIDriver.cs: 
2663         * XplatUIX11.cs:
2664         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
2665         so that we can get the graphics for the back buffer without
2666         having to create a new one and remove the offscreen_dc parameter
2667         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
2668         
2669 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2671         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
2672         Also make virtual all the key-related methods.
2674         * ListViewItem.cs: Make virtual the key related methods for
2675         ListViewSubItemCollection.
2677 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2679         * ListView.cs:
2680         * ListViewItem.cs:
2681         * ThemeWin32Classic.cs:
2682         * Theme.cs: Initial support for Tile view in ListView,
2683         as well as the implementation of the required bits for it (Item
2684         and Subitem).
2686 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
2688         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
2689         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
2690         Provide useful exception messages.
2692 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2694         * TrackBar.cs: Remove a warning.
2695         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
2696         when used by DateTimePicker, fixes #80287. This also requires that 
2697         MonthCalendar implements it's own drawing for the yearly updown control,
2698         otherwise the Capture tracking would be too complicated. Removed the Click 
2699         and DoubleClick events (according to comments they were hiding the base class
2700         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
2701         raise these events, not that they cannot be raised. It is possible to raise 
2702         them by calling OnClick and OnDoubleClick). Added two internal fields in 
2703         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
2704         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
2705         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
2706         event, no longer needed.
2707         
2708 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
2710         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
2711         true if new value differs from current value.
2713 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
2715         * Control.cs: ControlCollection.Count must be public. Fixed build of
2716         unit tests.
2718 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
2720         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
2722 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
2724         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
2726 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
2728         * Control.cs: Invalidates control including when Width and Height is 
2729         equal zero or is not visible, only Paint event must be care about 
2730         this. Fixes #79913.
2732 2006-12-26  Chris Toshok  <toshok@ximian.com>
2734         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
2735         more corcompare work.
2737         * DataGridView.cs: fix compiler warning.
2739         * ColumnHeader.cs: some corcompare work, and also take the
2740         opportunity to make the internal fields private.
2742         * ListView.cs: fix the fallout from the above field change.
2744 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
2746         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
2747         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
2748         ToolStripTextBox.cs: Fixes to events and corcompare.
2750 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
2752         * ListView.cs: Call owner.OnMousexx event to propagate events from
2753         item to ListView. Fixes #80367.
2755 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
2757         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
2758         if value is less than one. ItemHeight should not be set to a value
2759         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
2760         Removed extra tabs.
2762 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
2764         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
2765         * ToolStripStatusLabel.cs: Add Spring for Moma.
2767 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
2769         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
2770         Fixed code formatting. Removed debug code.
2771         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
2773 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
2775         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
2776         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
2777         ArgumentOutOfRangeException if ColumnCount is negative. In 
2778         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
2779         less than 4 or higher than 32768.
2780         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
2781         Fixed FormatProvider to return CurrentCulture unless explicitly set.
2782         Fixed IsFormatProviderDefault to return true if FormatProvider has
2783         not been explicitly set.
2785 2006-12-25  Chris Toshok  <toshok@ximian.com>
2787         * Application.cs: add a couple of 2.0 events.
2789 2006-12-25  Chris Toshok  <toshok@ximian.com>
2791         * Control.cs: fix compiler warning.
2793         * AxHost.cs: corcompare fixes.
2795         * ApplicationContext.cs: corcompare fixes.
2797 2006-12-25  Chris Toshok  <toshok@ximian.com>
2799         * Control.cs: only update dist_right/dist_bottom if the
2800         width/height is > 0.  this fixes anchored controls being resized
2801         smaller until they disappear and then resized larger again.
2803 2006-12-25  Chris Toshok  <toshok@ximian.com>
2805         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
2806         since they're nothing more than X/Left and Y/Top, respectively.
2808         Also, move back to a per-control Bitmap/Graphics for
2809         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
2810         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
2811         Height.
2813 2006-12-25  Miguel de Icaza  <miguel@novell.com>
2815         * MessageBox.cs: Implemented overload that takes a new "bool
2816         displayHelpButton" by adding a new internal field "show_help".
2817         When clicked this will raise the HelpRequested on the owner or the
2818         main form. 
2820         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
2821         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
2823         * ListView.cs: Add support ColumnWidthChanged and
2824         ColumnWidthChanging. 
2826         Add support for ColumnReordered event.
2827         (ReorderColumn): Add NET_2_0 specific support for cancelling the
2828         reorder.
2830         Very nice codebase!
2832         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
2834         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
2836 2006-12-24  Chris Toshok  <toshok@ximian.com>
2838         * GridTablesFactory.cs: 2.0 corcompare work.
2840         * ToolStripContainer.cs: add "override" to
2841         ContextMenuStripChanged, and remove the local event object.
2843         * ToolStripDropDown.cs: same with a couple properties.
2845         * ToolStripPanel.cs: same with AutoSizeChanged event.
2847         * TextBoxBase.cs: add "override" to AutoSizeChanged.
2849         * Form.cs: add the remaining 2.0 events, and do some corcompare
2850         attribute work.
2852         * DateTimePicker.cs: add "new" to padding.
2854         * ButtonBase.cs: use Control's use_compatible_text_rendering.
2856         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
2858         * DataGridView.cs: PaddingChanged is overridden.
2860 2006-12-24  Chris Toshok  <toshok@ximian.com>
2862         * Control.cs: corecompare work here too.
2864         * DataGridViewElement.cs, DataGridView.cs,
2865         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
2866         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
2867         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
2868         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
2869         work.
2871 2006-12-24  Miguel de Icaza  <miguel@novell.com>
2873         * Control.cs: Switched the error message on the console for a
2874         todo.  A review of the code will have to cope with this anyways
2875         (since its a large feature, it is in our radar) and it was
2876         producing too much output when running PDN.
2878         * ToolStripComboBox.cs: Set the text when the SelectedIndex
2879         changes.  Applications depend on this (PDN 2.72)
2881 2006-12-23  Chris Toshok  <toshok@ximian.com>
2883         * TableLayoutSettings.cs: finish up the corcompare work for this
2884         class.
2886 2006-12-23  Chris Toshok  <toshok@ximian.com>
2888         * Control.cs: make SetImplicitBounds internal, do some futzing
2889         with LayoutEngine so that it's available in 1.1, and remove the
2890         entire duplicated code mess from PerformLayout.  Use
2891         System.Windows.Forms.Layout.DefaultLayout instead.
2893         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
2895 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
2897         * Form.cs: Add MainMenuStrip property.
2899 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
2901         * Control.cs: Add ContextMenuStrip property and implementation.
2902         Fix ContextMenu implementation to show menu centered on control when
2903         activated using the keyboard instead of showing at screen (0,0).
2905         * ToolStripDropDown.cs: Fix needed overload of Show ().
2907 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
2909         * Menu.cs: Name property added for 2.0 profile.
2910         
2911 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
2913         * Menu.cs: Update information about FindMenuItem, method to be
2914         implemented soon.
2916 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
2918         * MenuAPI.cs: When deselect items deselect also selected subitems.
2919         
2920 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
2922         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
2923         FindSubItemByCoord to found itens that is not active, also an
2924         cheking added to FindSubItemByCoord to search for items only 
2925         in visible popup windows. Fixes #80274.
2927 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
2929         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
2930         internal property, it be care about change ExStyle. 
2932 2006-12-22  Andreia Gaita  <avidigal@novell.com>
2934         * ContainerControl.cs: set activeControl for parent forms up the 
2935         tree when the new activecontrol is a container.
2936         When validating the active control, if it is a container, also
2937         raise up the validation for it's active control. Fixes #80280
2938         
2939         * Control.cs: Add internal property flag and check to prevent
2940         Focus events from getting raised when Select() is called for
2941         a ContainerControl. There are still too many focus events being
2942         raised at the moment though.
2943         Cleaned up the code a bit.
2945 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2947         * Control.cs: Added all missing 2.0 events.and
2948         fixed a couple of corcompare issues.
2949         * TrackBar.cs: Implemented missing 2.0 bits.
2950         * MonthCalendar.cs, 
2951         * DateTimePicker.cs, 
2952         * MdiClient.cs: Fixed some corcompare issues.
2954 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
2956         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
2957         SplitterPanel.cs: corecompare work.
2959 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
2961         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
2962         Clean up warnings for BackgroundImageChanged and PaddingChanged
2963         events now that they are implemented in Control.cs.
2965 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
2967         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
2968         
2969         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
2970         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
2971         of TableLayoutPanel and supporting cast.
2973 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2975         * XplatUIWin32.cs: 
2976         - GrabWindow now confines the mouse pointer to the confine window.
2977         - Added Win32ClipCursor and Win32GetClipCursor.
2979         * Control.cs: 
2980         - Added CaptureWithConfine to be able to capture and confine 
2981         mouse pointer.
2982         
2983         * InternalWindowManager.cs: 
2984         - Call CaptureWithConfine instead of Capture if we're an
2985         MdiChild (fixes #79982).
2987 2006-12-21  Chris Toshok  <toshok@ximian.com>
2989         * DataGrid.cs: guard against the initial state of selection, where
2990         selection_start == -1.  make sure we only select from index >= 0.
2991         Fixes bug #80291.
2993 2006-12-21  Chris Toshok  <toshok@ximian.com>
2995         * Control.cs: we don't need to be so draconian with
2996         UpdateDistances, and we thusly don't need to call it before
2997         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
2999 2006-12-21  Daniel Nauck  <dna@mono-project.de>
3001         * ComboBox.cs,
3002         TextBox.cs: Implemented AutoComplete properties.
3004 2006-12-20  Chris Toshok  <toshok@ximian.com>
3006         * DataGridView*.cs: some corecompare work.
3008 2006-12-20  Jackson Harper  <jackson@ximian.com>
3010         * XplatUIX11.cs: We need to hide the caret when deleting it,
3011         otherwise you get carets left lying around everywhere.
3012         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
3013         prevents getting some weird half drawn caret tracers when
3014         scrolling.
3015         * TextControl.cs: Attempt to reduce the number of times we need to
3016         recreate the caret.
3018 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
3020         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
3022 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3024         * DateTimePicker.cs:
3025         - Implemented missing 2.0 bits.
3026         - Changed some default values to match MS.
3027         
3028 2006-12-20  Jackson Harper  <jackson@ximian.com>
3030         * TextBoxBase.cs: When changing the font across the document we
3031         can't recalculate after changing each line, since that will cahnge
3032         the line count.
3033         - PreferredHeight is a little different than i thought.
3034         - When backspacing, move the caret before we do the actual char
3035         delete, because when that delete crosses a wrap boundary the
3036         positional information will change.
3038 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3040         * Control.cs: Added some missing 2.0 bits: 
3041         BackgroundImageLayout, BackgroundImageLayoutChanged, 
3042         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
3043         add IBindableComponent and IDropTarget implementation.
3044         
3045         * MonthCalendar.cs: 
3046         - Added all missing 2.0 features:
3047         BackgroundImageLayout, RightToLeftLayout, 
3048         OnHandleDestroyed, RightToLeftLayoutChanged, 
3049         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
3050         PaddingChanged.
3051         - Rewrote all the BoldDate code, it was completely broken.
3052         - Fixed all the tests (the tests can now be re-enabled, the
3053         problems were not with the tests, but with the control, it was
3054         mostly broken).
3055         
3056         * DateTimePicker.cs: Changed the location where the 
3057         MonthCalendar is shown.
3058         
3059 2006-12-19  Chris Toshok  <toshok@ximian.com>
3061         * DataGridView.cs: add IDropTarget implementation.
3063         * ToolStripPanel.cs: add IDropTarget implementation.
3065 2006-12-19  Jackson Harper  <jackson@ximian.com>
3067         * TextControl.cs: soft now means something different than what it
3068         used to mean, we want to move the caret regardless of whether or
3069         not this break was soft (would we really have wanted the caret
3070         to not move with the break in the old context?)
3071         * TreeView.cs: Make sure we factor in the vert scrollbar when
3072         calculating the horizontal scrollbar's maximum.
3074 2006-12-19  Andreia Gaita  <avidigal@novell.org>
3076         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
3077         check for keywords in alternate casing, close bug #80049.
3079 2006-12-19  Chris Toshok  <toshok@ximian.com>
3081         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
3082         methods (which all do nothing).
3084         * IDropTarget.cs: add the 4 missing methods.
3086 2006-12-19  Chris Toshok  <toshok@ximian.com>
3088         * TableLayoutRowStyleCollection.cs: corcompare work.
3089         
3090         * TableLayoutSettings.cs: same.
3092         * TableLayoutStyle.cs: same.
3094         * TableLayoutColumnStyleCollection.cs: same.
3096 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
3098         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
3099         TableLayoutPanel I've had in my local tree for way too long.
3101 2006-12-19  Miguel de Icaza  <miguel@novell.com>
3103         * TableLayoutSettings.cs: Finish the public API (still needs all
3104         the logic to update on changes). 
3106         * TableLayoutPanelCellPosition.cs: new file.
3107         
3108         * TableLayoutRowStyleCollection.cs,
3109         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
3110         TableLayoutSettings.cs: Track the final 2.0 table api.
3112 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3114         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
3115         and Image List 2.0 members for ColummnHeader.
3116         * ListView.cs: Add key-related 2.0 methods for
3117         ColumnHeaderCollection.
3119 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
3121         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
3122         ArgumentNullException if items argument is null. Ignore null item in
3123         arrays. Removed extra tabs.
3125 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
3127         * MonthCalendar.cs: Fixed InvalidCastException.
3129 2006-12-19  Jackson Harper  <jackson@ximian.com>
3131         * TextControl.cs: Don't increment the position here.
3132         - When calculating char positions only add in the line break size
3133         for hard line breaks.
3135 2006-12-19  Andreia Gaita  <avidigal@novell.org>
3137         * SendKeys.cs: Changed some things to match ms.net behaviour
3138         when parsing shifted capital letters.
3139         
3140         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
3141         Add window handle as parameter to SendInput. X11 needs the 
3142         window handle, and the handle being passed      to it in the keys 
3143         queue is the active control handle (which windows needs), not 
3144         the window handle.
3145         
3146         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
3147         to support SendKeys on X.       
3148         
3149         * X11Keyboard: Implement helper method to lookup a linux keycode
3150         given the virtual keycode. Added table of keycode-2-virtualkey
3151         values to support this.
3153 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3155         * ListView.cs: Add support for SelectedIndexCollection
3156         and SelectedItemCollection 2.0 methods. Implement support
3157         for ImageKey too.
3158         * ListViewItem.cs: Add support for ListViewSubItemCollection
3159         2.0 methods. Also, fix an incorrect behavior of AddRange method
3160         (it shouldn't call Clear).
3161         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
3163 2006-12-19  Jackson Harper  <jackson@ximian.com>
3165         * RichTextBox.cs: 
3166         * TextBoxBase.cs: New args for FormatText
3167         * TextControl.cs: Rewrote the main drawing method, this version
3168         feels a little easier to understand and debug to me.  Hopefully it
3169         does to others also
3170         - Fix FormatText to OR in the new formating values.  Added
3171         FormatSpecified param, basically this works in the same way as
3172         BoundsSpecified in Control.
3173         - Set the caret properties when the caret is positioned.
3174         - When wrapping text make sure that we calculate the width of the
3175         last character
3176         - when calculating alignments we might have wrapped down to the
3177         next line, so don't search for an individual tag, search for the
3178         end of the line
3179         - We need to invalidate the selection area when we replace the
3180         selection.
3181         
3182 2006-12-19  Daniel Nauck  <dna@mono-project.de>
3184         * Application.cs: add Restart () 2.0 support
3186 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
3188         * MenuItem.cs: Invalidate menu item rectangle after change Enable
3189         property. Fixes #80268.
3190         
3191 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
3193         * MenuAPI.cs: Dont trigger select event when closes top menu
3194         item. Fixes #80270.
3196 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
3198         * MenuAPI.cs: When you click on menuitem only trigger onselect
3199         event for top menu itens. Fixes #80271.
3200         
3201 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3203         * MdiWindowManager.cs: Make IconicBounds depend on
3204         the bottom of MdiClient, not the top (fixes #80267)
3205         
3206 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3208         * MdiClient.cs: Added missing 2.0 attribute
3210 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3212         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
3213         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
3215 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
3217         * MenuAPI.cs: Fix click when menuitem is not popup,
3218         this regression was caused by last commit (#80272).
3220 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
3222         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
3223         fire click event or close menu. Fixes #80272.
3225 2006-12-17  Daniel Nauck  <dna@mono-project.de>
3227         * ListViewHitTestInfo.cs: add
3229 2006-12-17  Daniel Nauck  <dna@mono-project.de>
3231         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
3232         * FlatButtonAppearance.cs: add
3233         * DockingAttribute.cs: add
3235 2006-12-17  Chris Toshok  <toshok@ximian.com>
3237         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
3238         and rebind our columns when it does - this way, if you make
3239         changes to the DataTable (or set the Table attribute on a DataView
3240         after setting it as the DataGrid's DataSource, the changes are
3241         made visible.)  Fixes bug #80107.
3243 2006-12-17  Daniel Nauck  <dna@mono-project.de>
3245         * ListViewGroup.cs: add internal Location property for layouting.
3246         * Theme.cs: add abstract ListViewGroupHeight function.
3247         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
3249 2006-12-16  Andreia Gaita  <avidigal@novell.com>
3251         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
3252         Added reset of selected index to 0 when adding first tab page.
3253         Fixes #80264
3254         
3255         * NumericUpDown.cs: Fix NET_2_0 check
3257 2006-12-16  Daniel Nauck  <dna@mono-project.de>
3259         * ListViewGroup.cs: fixed DefaultValueAttribute value
3261 2006-12-16  Daniel Nauck  <dna@mono-project.de>
3263         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
3265 2006-12-15  Miguel de Icaza  <miguel@novell.com>
3267         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
3268         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
3269         ScrollableControl.cs: Add a handful of methods that are
3270         overwritten in 2.0 
3272 2006-12-15  Chris Toshok  <toshok@ximian.com>
3274         * XplatUIWin32.cs: initial implementation of the Reversible
3275         drawing functions.  there are some problems.  DrawReversibleFrame
3276         doesn't seem to work at all for Dashed FrameStyle, and in the
3277         Thick case there are drawing errors at the corners (we probably
3278         need to bind Rectangle instead of doing moveto/lineto's.)
3280 2006-12-16  Andreia Gaita  <avidigal@novell.com>
3281         
3282         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
3283         to send blocks of key messages. Send accumulates keys to send with Flush, 
3284         while SendWait sends all keys immediately.
3285                 
3286         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
3287         XplatUIX11.cs,  XplatUIX11-new.cs:
3288         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
3289         to Win32 SendInput.
3290         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
3291         
3292         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
3293         testing for ms.net on this class is very tricky, as the tests run too fast 
3294         to allow the hook to release, essentially freezing the keyboard and the 
3295         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
3296         category :p
3298 2006-12-16  Daniel Nauck  <dna@mono-project.de>
3300         * Padding.cs: fixed serialization compability to MS ("_var" field names),
3301                         added missing attributes.
3303 2006-12-15  Daniel Nauck  <dna@mono-project.de>
3305         * ListViewGroup.cs: Added missing attributes.
3306         * ListViewGroupCollection.cs: Added missing attributes.
3308 2006-12-15  Daniel Nauck  <dna@mono-project.de>
3310         * ListViewItem.cs: fixed ListViewSubItem text property.
3312 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3313         
3314         * Control.cs: Added missing 2.0 attributes
3315         
3316 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3317         
3318         * MdiClient.cs: Added missing 2.0 attribute.
3319         * MonthCalendar.cs: Added some missing 2.0 attributes 
3320         and properties.
3321         
3322 2006-12-15  Daniel Nauck  <dna@mono-project.de>
3324         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
3326 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
3328         * MainMenu.cs: Add the new 2.0 constructor to help out people
3329         using the MainMenu in VS2005.
3331 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3332         
3333         * MdiChildContext.cs: Removed it, no longer used.
3334         * MdiClient.cs: Added missing 2.0 attributes.
3335         
3336 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3337         
3338         * InternalWindowManager.cs: Fix a NullRef with previous 
3339         changes for toolwindows.
3340         
3341 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3343         * Control.cs: 
3344         - Added AfterTopMostControl to allow for certain controls 
3345         to always stay on top when normal controls are brought to 
3346         front.
3347         
3348         * XplatUIWin32.cs: 
3349         - (DrawInversibleRectangle): Get window rectangle from Win32 
3350         in stead of from control, since Win32 doesn't calculate
3351         screen coords correctly from control's Location if it 
3352         have docked siblings.
3353         
3354         * MdiWindowManager.cs:
3355         - Correct the control menu popup location when clicked on
3356         the maximized form icon. (fixes #80223.1)
3357         - Don't show moving rectangle if mouse hasn't moved from
3358         the original clicked point.
3359         - Removed FormGotFocus handler (not used).
3360         - Calculate the control buttons location from the main
3361         window's size and not client size (fixes #79770).
3362         - Form is now closed when the form icon is double-clicked
3363         (fixes #79775). 
3364         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
3365         
3366         * InternalWindowManager.cs:
3367         - Moved some MDI-only methods to MdiWindowManager.
3368         - Removed unused properties and methods.
3369         - Unified method naming for methods handling wm messages.
3370         - Moved all message handling to seperate methods for
3371         each message.
3372         
3373         * ThemeWin32Classic.cs:
3374         - DrawManagedWindowDecorations now draws the title bar 
3375         with a gradient brush.
3376         - Add a CPDrawButtonInternal that allows us to specify
3377         light, normal and dark colors for the buttons (control 
3378         buttons for MDI children were drawn with the same light
3379         color as the background, therefore loosing the 3D effect).
3380         
3381         * SizeGrip.cs:
3382         - Add a CapturedControl property that is used to 
3383         determine the control to resize (defaults to parent). 
3384         Needed for MdiClient, since its SizeGrip's parent is
3385         MdiClient, but the control to resize is the main form.
3386         
3387         * MdiClient.cs:
3388         - Set SizeGrip's CapturedControl to the main form in order
3389         to resize the main form and not the MdiClient.
3390         - Override AfterTopMostControl to leave the scrollbars 
3391         always on top.
3393 2006-12-15  Daniel Nauck  <dna@mono-project.de>
3395         * ListView.cs: fixed ListViewItemCollection AddRange and
3396                         implemented ListViewItemCollection AddRange 2.0 support.
3398 2006-12-15  Daniel Nauck  <dna@mono-project.de>
3400         * ListViewGroup.cs: Add.
3401         * ListViewGroupCollection.cs: Add
3402         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
3403         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
3404                                 stub for ImageKey 2.0 support.
3406 2006-12-14  Mike Kestner  <mkestner@novell.com>
3408         * ListView.cs: add text padding to the autocalculation for columns
3409         of width -2.  Fixes #80207.
3411 2006-12-14  Mike Kestner  <mkestner@novell.com>
3413         * ListView.cs: add some index guarding for partial row navigation 
3414         logic.  Fixes #80250.
3416 2006-12-14  Mike Kestner  <mkestner@novell.com>
3418         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
3419         are added or inserted to the collection.  Fixes #81099.
3421 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
3423         * MenuAPI.cs: Closes menu when right click out side of popup
3424         it fix problem in ContextMenu and MainMenu. Fixes #80252.
3426 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3428         * ListViewItem.cs: Fix dumb error.
3430         * ListView.cs: Add Find and ContainsKey methods in 
3431         ListViewItemCollection, and also return true for IsReadOnly
3432         and IsFixedSize (changes for 2.0). 
3434 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
3436         * Control.cs: Allow Region to be set to null.
3438 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3440         * MdiWindowManager.cs: Remove unused (commented out) code.
3441         * Form.cs: When the MdiChild is maximized, the form needs 
3442         WM_NCMOUSELEAVE, so request it.
3443         * InternalWindowManager.cs: 
3444         - Added tooltips to control buttons.
3445         - Removed duplicated control button handling code.
3446         - Removed unused (commented out) code.
3447         
3448 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
3450         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
3451         was used because we must set cursor without trigger ChangeCursor event
3452         and without change Cursor control property. Fixes #79963.
3454 2006-12-12  Andreia Gaita  <avidigal@novell.com>
3455         
3456         * Control.cs: Check if Region setter value is null, and ignore
3458 2006-12-12  Jackson Harper  <jackson@ximian.com>
3460         * TextControl.cs: We were almost always drawing one more line then
3461         needed, since the GetLineByPixel will return the last line found
3462         at that pixel. In most cases though, we were invalidating up to
3463         the junction between two lines.
3464         - Improve debug code.
3466 2006-12-12  Chris Toshok  <toshok@ximian.com>
3468         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
3469         and FillReversibleRectangle.
3471         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
3472         and FillReversibleRectangle.
3474         * XplatUIWin32.cs: add stubs which do nothing for
3475         DrawReversibleFrame, DrawReversibleLine, and
3476         FillReversibleRectangle.
3478         * XplatUIOSX.cs: add stubs which raise NIE for
3479         DrawReversibleFrame, DrawReversibleLine, and
3480         FillReversibleRectangle.
3482         * XplatUIX11.cs: add working implementation for
3483         DrawReversibleFrame, DrawReversibleLine, and
3484         FillReversibleRectangle.
3485         
3486         * ControlPaint.cs: implement DrawReversibleFrame,
3487         DrawReversibleLine, and FillReversibleRectangle, by calling into
3488         the appropriate XplatUI method.
3490 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3492         * Form.cs: Make MdiClient have the focus even if it's
3493         not selectable, since it should receive WM_KEY* and WM_MOUSE 
3494         messages. Fixes #79907.
3495         
3496 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3498         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
3499         queried after the window is created.
3500         
3501         * XplatUIX11.cs: Added SendParentNotify to implement 
3502         WM_PARENTNOTIFY logic. Fixes #79965.
3503         
3504         * Control.cs: Added MakeParam.
3505         
3506 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3508         * MdiClient.cs: Resume Layout before setting window
3509         states (fixes #80201).
3511 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3513         * MenuAPI.cs: Deselect a menu item after performing
3514         the click (fixes #80197).
3516 2006-12-11  Jackson Harper  <jackson@ximian.com>
3518         * TextBoxBase.cs: We need to cap this value, since Maximum -
3519         ViewPortHeight can be less than zero.
3520         - Only do selection with the left mouse button.
3521         * TextBox.cs: Don't tell the world that we have a context menu.
3522         * Control.cs: New method so that we can control whether or not the
3523         context menu is visible outside MWF.
3525 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
3527         * ToolBarButton.cs: Fix text positon. 
3529 2006-12-11  Miguel de Icaza  <miguel@novell.com>
3531         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
3533         * Control.cs (DoubleBuffered): Add implementation.
3535         * Application.cs (OpenForms): Add.
3537 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
3539         * Form.cs: Use opacity instead of Opactiy to determine if we need
3540         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
3542 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
3544         * Control.cs: Fix NRE if Control.Site was set to null.
3546 2006-12-11  Chris Toshok  <toshok@ximian.com>
3548         * Control.cs: ControlCollection.Remove should return if the arg is
3549         null, and ControlCollection.SetChildIndex should raise a ANE.
3551 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
3553         * Control.cs: Verify value set for Dock property. Code formatting
3554         updates.
3556 2006-12-11  Jackson Harper  <jackson@ximian.com>
3558         * TextControl.cs: Draw the caret and the selection when a flag is
3559         set on the owner.
3560         * TextBoxBase.cs: We want to draw the caret and the selection for
3561         TextBox but not for TextBoxBase.
3562         - If the window is resized and scrolling is no longer needed (the
3563         whole doc is visible) set the scroll position to zero.
3564         - The default SelectWord (the one TextBox uses) should move the
3565         caret to the end of the word.
3566         - SelectAll moves the caret to the end of the selection.
3567         * TextBox.cs: We don't selectall on focus, we just do it when the
3568         control is created.
3569         
3570 2006-12-11  Mike Kestner  <mkestner@novell.com>
3572         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
3574 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3576         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
3577         2.0 support.
3578         * ListViewItem.cs: Add Name 2.0 property.
3580 2006-12-11  Andreia Gaita  <avidigal@novell.com>
3582         * TabControl.cs: Set visibility on selected or default tab 
3583         when tabcontrol handle is created, so that it's contents
3584         actually show up (duh). Fixes #80193
3585         Don't redraw the control if there is no handle created, as
3586         the selected index might be completely invalid. Added some tests
3587         to check for this.
3589 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
3591         * ToolBar.cs: Uses maximun width and height of all buttons as 
3592         button rectangle when ButtonSize specified, it looks strange but
3593         is what happens in Win32. Fixes #80189.
3595 2006-12-11  Jackson Harper  <jackson@ximian.com>
3597         * TextControl.cs: Need to track undo levels ourself, since
3598         compound actions will mess them up.
3600 2006-12-10  Andreia Gaita  <avidigal@novell.com>
3602         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
3603         SelectedIndex value is changed (even if it's not valid).
3604         Reset SelectedIndex to 0 when the handle is created and if
3605         the current index is invalid.
3606         Fixes SelectdeIndex unit tests and #80128
3608 2006-12-08  Chris Toshok  <toshok@ximian.com>
3610         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
3611         calls EndEdit, it needs to be called before we set current_cell to
3612         its new value.  Otherwise, we end up committing the value in the
3613         textbox to the new cell as well.  Fixes bug #80160.
3615 2006-12-08  Chris Toshok  <toshok@ximian.com>
3617         * Form.cs (set_CancelButton): if the button's DialogResult is
3618         None, set it to Cancel.  Fixes bug 80180.
3620 2006-12-08  Jackson Harper  <jackson@ximian.com>
3622         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
3623         to watch ourselves when setting the canvas size and setting the
3624         scrollbar values.
3626 2006-12-08  Chris Toshok  <toshok@ximian.com>
3628         * DataGrid.cs: comment out the two MakeTransparent calls for the
3629         time being so people using trunk (and not 1.2.2) on windows can
3630         actually use the datagrid.  This deals with bug #80151.
3632 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
3634         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
3635         Graphics.DrawImage (image, int, int, int, int) overload instead
3636         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
3637         the dpi difference and was blurring images it drew.
3638         [Fixes bug #79960]
3640 2006-12-08  Chris Toshok  <toshok@ximian.com>
3642         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
3643         rowcnt is 0 (such as with an empty datasource), and make sure we
3644         initialize not_usedarea.Y to cells.Y, so we don't draw over the
3645         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
3647 2006-12-08  Chris Toshok  <toshok@ximian.com>
3649         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
3650         grid.
3652 2006-12-08  Chris Toshok  <toshok@ximian.com>
3654         [ Fixes bug #80167 ]
3655         
3656         * ThemeWin32Classic.cs: don't draw the image if the button's flat
3657         style is FlatStyle.System.
3659         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
3660         ButtonBase.flat_style private, and switch uses of it to the public
3661         property.
3662         
3663 2006-12-08  Chris Toshok  <toshok@ximian.com>
3665         [ Fixes bug #80121 ]
3666         
3667         * ThemeWin32Classic.cs: center the caption text in the datagrid
3668         when we draw it.
3670         * DataGrid.cs: lessen the amount we add to the caption height from
3671         6 to 2.  6 was making it huge.
3673 2006-12-08  Andreia Gaita  <avidigal@novell.com>
3675         * UpDownBase: Handle MouseWheel call directly instead of capturing
3676         the inner textbox's OnMouseWheel. Fixes #80166
3678 2006-12-08  Jackson Harper  <jackson@ximian.com>
3680         * TextControl.cs: We need to invalidate the textbox when we empty
3681         it (how had this not been discovered before?)
3683 2006-12-08  Jackson Harper  <jackson@ximian.com>
3685         * TextBoxBase.cs: Reworked the mouse down code so I could get it
3686         to behave like MS, we now ignore the eventargs.Click and just
3687         track state ourself, which we were already doing anyways.
3688         - Constrain the double click handler to the double click size.
3689         
3690 2006-12-08  Chris Toshok  <toshok@ximian.com>
3692         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
3693         direction if that scrollbar isn't shown.  fixes bug #80158.
3695 2006-12-08  Andreia Gaita  <avidigal@novell.com>
3697         * NumericUpDown.cs: Update value on getter. Fixes #79950
3699 2006-12-08  Chris Toshok  <toshok@ximian.com>
3701         * MenuItem.cs: add back in the event cloning code.  I didn't know
3702         how to do it in the face of the EventHandlerList work i'd done
3703         last week.  Fixes bug #80183.
3705 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
3707         * Control.cs: Add an invalidate to the BackgroundImage setter.
3708         [Fixes 80184]
3710 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
3712         * ToolStrip*: Add some small properties reported by MoMA, fix event
3713         firing and default properties based off of unit tests, and add some
3714         attributes based off of the class status page.
3716 2006-12-07  Jackson Harper  <jackson@ximian.com>
3718         * TextBoxBase.cs: Take HideSelection into account when determining
3719         whether or not to show the selection.
3720         * RichTextBox.cs: After inserting the RTF into the document move
3721         the cursor to the beginning of the document.
3723 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
3725         * Control.cs: Remove static ArrayList "controls" which maintained
3726         a reference to every control created.
3727         * Application.cs: Create a static FormCollection to maintain a reference
3728         to every form created.  Use it in places that formerly enumerated through
3729         the controls one looking for forms.
3730         * Form.cs: Add and remove self from above FormCollection.
3732 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
3734         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
3735           not libgdk (though it makes me wonder why I didn't have any
3736           problems)
3738 2006-12-07  Chris Toshok  <toshok@ximian.com>
3740         [ you had to know this was coming after that last commit...]
3741         
3742         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
3743         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
3744         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
3745         XCopyArea).
3747 2006-12-07  Chris Toshok  <toshok@ximian.com>
3749         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
3750         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
3751         all the behavior we need for double buffering.
3753         * XplatUIDriver.cs: implement the 3 double buffer methods using a
3754         client side Bitmap, just like the old Control-based double buffer
3755         code did.  The methods are virtual, so each XplatUI driver
3756         subclass can replace the implementation to use a faster, platform
3757         specific approach.
3759         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
3760         double buffer code, and clean things up a bit in the process.
3762 2006-12-06  Chris Toshok  <toshok@ximian.com>
3764         * Control.cs: reindent WndProc.
3766 2006-12-06  Chris Toshok  <toshok@ximian.com>
3768         [ I wanna be like BenM when I grow up ]
3769         
3770         * Hwnd.cs: create a single static Graphics object on the static
3771         Bitmap we create.  use this for our text measurements.
3773         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
3774         This was causing us to allocate a backbuffer for every control,
3775         even when it wasn't flagged as double buffered.  Instead use the
3776         single graphics instance.  This might have implications for
3777         multithreaded applications.  If we run into problems we can switch
3778         to creating 1 Graphics per control, on the static Hwnd bitmap.
3780         this change nets us a 7M savings in private dirty mappings when
3781         running FormsTest.exe.
3783 2006-12-06  Chris Toshok  <toshok@ximian.com>
3785         * ListView.cs: the BackgroundImage override is just to set
3786         attributes.  chain up to base.BackgroundImage.
3788         * RichTextBox.cs: same.
3790         * ToolBar.cs: same, but we need to also redraw the toolbar when it
3791         changes, so instead a handler for BackgroundImageChanged.
3792         
3793         * Control.cs: make background_image private.
3795 2006-12-06  Chris Toshok  <toshok@ximian.com>
3797         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
3798         sure we even need this assignment, but roll with it for now.
3800         * Control.cs: make the cursor field private.
3802 2006-12-06  Chris Toshok  <toshok@ximian.com>
3804         * Form.cs: we don't need to explicitly set ImeMode to
3805         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
3806         behavior in the face of ImeMode.Inherit.
3808         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
3809         change the ctor's assignment to use ImeMode instead of ime_mode.
3811         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
3812         ImeModeInherit.  Only check for the parent's imemode (and return
3813         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
3814         This fixes the button unit test, which sets both ImeMode and
3815         DefaultImeMode to ImeMode.Disable.
3817         also make the ime_mode field private.
3819 2006-12-06  Chris Toshok  <toshok@ximian.com>
3821         * Control.cs: make control_style private.
3823         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
3824         setting the styles to true, then setting them to false instead of
3825         reverting to their previous values.
3827         also, call SetStyle on the scrollbars instead of using
3828         control_style directly.
3830 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
3832         * FormCollection.cs: Implement. [2.0]
3834 2006-12-06  Chris Toshok  <toshok@ximian.com>
3836         * Control.cs: make tab_stop private.
3838         * Label.cs: set TabStop, not tab_stop.  reformat some event
3839         add/remove methods to make them more compact.
3841 2006-12-06  Chris Toshok  <toshok@ximian.com>
3843         * RadioButton.cs: fix TabStop handling.
3845 2006-12-06  Chris Toshok  <toshok@ximian.com>
3847         * TextBox.cs: remove the explicit assignments to has_focus.
3848         Control does that.
3850         * ButtonBase.cs: remove the assignment to has_focus.  Control will
3851         manage that.
3852         
3853 2006-12-06  Chris Toshok  <toshok@ximian.com>
3855         * ButtonBase.cs: remove all uses of is_enabled from this code.
3856         it's always true when any of the code containing the checks is
3857         executed.
3859 2006-12-06  Chris Toshok  <toshok@ximian.com>
3861         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
3862         with different semantics (some are present in both 1.1 and 2.0
3863         profiles) so that we match MS's behavior in our unit tests.
3865 2006-12-06  Jackson Harper  <jackson@ximian.com>
3867         * TextControl.cs: Make this operation undoable.
3868         * TextBoxBase.cs: Factor the border width into the preferred
3869         height.
3870         - implement Modified as per the spec.
3872 2006-12-06  Chris Toshok  <toshok@ximian.com>
3874         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
3876 2006-12-06  Chris Toshok  <toshok@ximian.com>
3878         * Control.cs: make right_to_left and context_menu fields private.
3880 2006-12-06  Chris Toshok  <toshok@ximian.com>
3882         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
3883         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
3884         Control.child_controls private.  switch all uses over to
3885         Control.Controls.
3887 2006-12-06  Chris Toshok  <toshok@ximian.com>
3889         * System.Windows.Forms/GroupBox.cs,
3890         System.Windows.Forms/AccessibleObject.cs,
3891         System.Windows.Forms/ErrorProvider.cs,
3892         System.Windows.Forms/Control.cs,
3893         System.Windows.Forms/UpDownBase.cs,
3894         System.Windows.Forms/ScrollBar.cs,
3895         System.Windows.Forms/DateTimePicker.cs,
3896         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
3897         System.Windows.Forms/ToolTip.cs,
3898         System.Windows.Forms/RadioButton.cs,
3899         System.Windows.Forms/LinkLabel.cs,
3900         System.Windows.Forms/Splitter.cs,
3901         System.Windows.Forms/TextBoxBase.cs,
3902         System.Windows.Forms/ToolStripTextBox.cs,
3903         System.Windows.Forms/ContainerControl.cs,
3904         System.Windows.Forms/ThemeWin32Classic.cs,
3905         System.Windows.Forms/SizeGrip.cs,
3906         System.Windows.Forms/ToolStripDropDown.cs,
3907         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
3908         private.  switch all uses over to Control.Parent.
3910 2006-12-06  Chris Toshok  <toshok@ximian.com>
3912         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
3913         Control does this before calling emitting these events.
3915         * TabControl.cs: same.
3917         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
3918         Control.client_rect.
3920         * ButtonBase.cs: use the ClientSize property instead of the
3921         client_size field.
3923         * ScrollableControl.cs: same.
3925         * Control.cs: another pass at making properties private.  also,
3926         move the initialization of tab_stop to the ctor.
3928 2006-12-05  Andreia Gaita <avidigal@novell.com>
3930         * TabControl.cs: Let the selected index be set freely if the 
3931         control handle is not yet created.
3933 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
3935         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
3936         internal until I can rewrite DefaultLayout.
3937         * ToolStrip.cs: Fix build error and some general cleaning.
3938         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
3939         Fix build errors caused by making some of Control's fields private.
3941 2006-12-05  Jackson Harper  <jackson@ximian.com>
3943         * TextControl.cs: Redo Insert a little so that it use IndexOf
3944         instead of Split, this prevents it from messing up on things like
3945         \n\n\n. Also more effecient since the split array doesn't need to
3946         be created.
3947         * TextBoxBase.cs: AppendText doesnt handle multiline and non
3948         multiline text differently, this is the first of many fixes that
3949         will make multiline/non-multiline the same thing as far as the
3950         TextBoxBase is concerned.
3951         - Don't split the text and insert lines, this can lose some line
3952         endings (like is the last line a soft or hard break). Instead use
3953         the new Insert.
3954         - Fix an off by one when combining all the lines in the Text
3955         getter.
3956         - Remove separate multiline handling from the Text getter/setter.
3958 2006-12-05  Chris Toshok  <toshok@ximian.com>
3960         * ButtonBase.cs: a few changes:
3962         - don't reinitialize internal Control fields in the ctor when they
3963         have the same values as Control sets them.
3965         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
3966         this before calling those methods.
3968         - we don't need to call Refresh for anything.  use Invalidate
3969         instead.
3971         - OnEnabledChanged doesn't need to redraw at all - Control.cs
3972         calls Refresh in its OnEnabledChanged.
3973         
3974         - several of the events we were registered for in the ctor to
3975         redraw ourselves already include calls to Invalidate in the
3976         property setters that raise the events.  remove the extra
3977         invalidation.
3979         - reformat a switch statement that was 83274658 columns wide.
3980         
3981 2006-12-05  Mike Kestner  <mkestner@novell.com>
3983         * ComboBox.cs: fix a unit test regression from a TextBox
3984         SelectionLength return of -1 when there's no selection.  
3986 2006-12-05  Chris Toshok  <toshok@ximian.com>
3988         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
3989         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
3990         cleaning up some of the internal Control fields being used by
3991         subclasses.
3993 2006-12-05  Mike Kestner  <mkestner@novell.com>
3995         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
3996         listbox after AddImplicit calls since it defaults to hidden. Add a 
3997         hack to preserve requested heights across DropDownStyle changes.
3999 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
4001         * PropertyGrid.cs: Hide FindFirstItem method from public API.
4003 2006-12-05  Chris Toshok  <toshok@ximian.com>
4005         * DataGridView.cs: fix compiler warnings.
4007         * PrintControllerWithStatusDialog.cs: same.
4009         * ToolBar.cs: same.
4011         * FolderBrowserDialog.cs: same.
4013         * Splitter.cs: same.
4015         * DataGridViewComboBoxCell.cs: same.
4017         * XplatUIWin32.cs: same.
4019         * PictureBox.cs: same.
4021         * Win32DnD.cs: same.
4023         * PageSetupDialog.cs: same.
4025         * FileDialog.cs: same.
4027         * PrintDialog.cs: same.
4029         * DataGridTextBoxColumn.cs: same.
4031         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
4033 2006-12-05  Chris Toshok  <toshok@ximian.com>
4035         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
4036         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
4037         System.ComponentModel.EventHandlerList work.
4039 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
4041         * DrawTreeNodeEventArgs.cs: Added.
4043 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4044         
4045         * InternalWindowManager.cs: Remove an unused field.
4046         
4047 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4049         * InternalWindowManager.cs:
4050         - Save the point where the title bar is clicked.
4051         
4052         * MdiWindowManager.cs:
4053         - Only allow moving of the window as long as the 
4054         clicked point on the title bar does not get out of
4055         MdiClient's rectangle. Fixes #79982.
4056         
4057         * MdiClient.cs:
4058         - Added Horizontal/VerticalScrollbarVisible.
4059         - Simplified the scrollbar sizing algorithm.
4060         - Cache the difference in scrolled value in
4061         H/VBarValueChanged and move the calculation out
4062         of the for loop.
4064 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4066         * Control.cs: Make the Console.WriteLine in WndProc 
4067         write more info.
4069 2006-12-05  Chris Toshok  <toshok@ximian.com>
4071         * ToolStripManager.cs, ToolStripButton.cs,
4072         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
4073         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
4074         ToolStripSplitButton.cs, ToolStripSeparator.cs,
4075         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
4076         ToolStripProgressBar.cs, ToolStripContainer.cs,
4077         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
4078         to using System.ComponentModel.EventHandlerList.
4080 2006-12-04  Chris Toshok  <toshok@ximian.com>
4082         * LinkLabel.cs: fix up compiler warnings.
4084         * TableLayoutSettings.cs: same.
4086         * TreeView.cs: same.
4088         * ToolBar.cs: same.
4090         * TabControl.cs: same.
4092         * RichTextBox.cs: same.
4094         * ListViewItem.cs: same.
4096         * PropertyGrid.cs: same.
4098         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
4100         * ToolTip.cs same.
4102         * TextRenderer.cs: fix up compiler warnings.
4104         * Label.cs: same.
4106         * Form.cs: corcompare fixes.
4108         * PictureBox.cs: fix up compiler warnings.
4110         * ImageListStreamer.cs: same.
4112         * TrackBar.cs: corcompare fix.
4114         * Control.cs: fix up compiler warnings.
4116         * SplitterPanel.cs: same.
4118         * NumericTextBox.cs: same.
4120         * ImageList.cs: same.
4122         * StatusStrip.cs: same.
4124         * ProgressBar.cs: corcompare fix.
4126         * ToolStripButton.cs: fix up compiler warnings.
4128         * ToolStripStatusLabel.cs: same.
4130         * ToolStripSplitButton.cs: same.
4132         * ToolStripSeparator.cs: same.
4134         * ToolStripProgressBar.cs: same.
4136         * ToolStripDropDownMenu.cs: same
4138         * ToolStripDropDown.cs: same.
4140         * ToolStripDropDownButton.cs: same.
4142         * ToolStrip.cs: same.
4144         * ToolStripControlHost.cs: same.
4146         * ToolStripContentPanel.cs: same.
4148         * ToolStripDropDown.cs: same.
4150         * ToolStripContainer.cs: same.
4152         * ToolStripPanel.cs: same, and add "new" where we need it to work
4153         with the new ArrangedElementCollection.
4155         * ToolStripItemCollection.cs: add "new" where we need it to work
4156         with the new ArrangedElementCollection.
4158 2006-12-04  Andreia Gaita <avidigal@novell.com>
4160         * TabControl.cs: Fix default tab selection to after TabControl
4161         gets focus and not before. Fixes #80128
4163 2006-12-04  Chris Toshok  <toshok@ximian.com>
4165         * DataGridTableStyle.cs: remove the gross calling of
4166         datagrid.Refresh from here.  It's a broken idea and it doesn't
4167         work anyway.
4169         * DataGrid.cs: instead, just register/unregister from the
4170         DataGridTableStyle events in CurrentTableStyle.  we play it
4171         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
4172         even though some would most likely not require it.  Fixes bug
4173         #80115 (and one portion of #80117 as a side effect).
4175 2006-12-04  Chris Toshok  <toshok@ximian.com>
4177         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
4178         so the textbox (if any) goes away.  Fixes bug #80117.
4180 2006-12-04  Chris Toshok  <toshok@ximian.com>
4182         * DataGridColumnStyle.cs: set the column's readonly property
4183         initially based on the property descriptor's IsReadOnly.  Fixes
4184         bug #80044.
4186 2006-12-04  Chris Toshok  <toshok@ximian.com>
4188         * ComboBox.cs: wrap the dropdown style changing work in
4189         SuspendLayout/ResumeLayout.  Fixes bug #79968.
4191 2006-12-04  Jackson Harper  <jackson@ximian.com>
4193         * TextBoxBase.cs: Fix off by one, since these are one-based.
4194         * TextBox.cs: Select all the text when we get focus.  The TextBox
4195         does this but the RTB does not.
4197 2006-12-04  Chris Toshok  <toshok@ximian.com>
4199         * DataGridTextBoxColumn.cs: remove some spew.
4201         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
4202         but some part of me is saying "it shouldn't be here.."  At any
4203         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
4204         setting the value.
4206 2006-12-04  Chris Toshok  <toshok@ximian.com>
4208         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
4209         to reassign the propertydescriptor.
4211 2006-12-04  Jackson Harper  <jackson@ximian.com>
4213         * TextBoxBase.cs:
4214         * TextControl.cs: Remove some unused variables.  Maybe this will
4215         patch things up between mike and I.
4216         - don't split lines less then one char wide, if the viewport is
4217         that small text won't be visible anyways.
4218         
4219 2006-12-04  Jackson Harper  <jackson@ximian.com>
4221         * TextBoxBase.cs: Default selection length is -1, need to do some
4222         more testing on windows to see when this is used for the property.
4223         - Redid the Lines [] property to that we properly remove soft line
4224         breaks
4225         - added support for preserving carriage returns
4226         -  CanUndo is not a variable like 'is undo enabled' it just returns
4227         true if there is undo operations available.
4228         - AppendText doesn't need to grab the last tag itself anymore,
4229         this happens automatically when we move the cursor.
4230         * TextControl.cs: Add CompoundActions to the undo class. This
4231         allows combining the other operations into one big option.  ie a
4232         paste will combine { delete old, insert new, move cursor }
4233         - Add InsertString undo operation
4234         - New method for deleting multiline text
4235         - Add carriage returns to lines. So we can preserve carriage
4236         returns when text is 'roundtripped'
4238 2006-12-04  Chris Toshok  <toshok@ximian.com>
4240         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
4241         minimum 0.  Fixes the scrollbar exception in bug #80136.
4243 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4245         * MdiClient.cs: 
4246         * MdiWindowManager: Removed unused fields and methods.
4247         
4248 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4249         
4250         * StatusBar.cs: Update all panels when a AutoSize=Contents
4251         panel needs updating.
4252         
4253         * StatusBarPanel.cs: Remove twidth and only use initialize.
4254         Fixes #80031.
4255                 
4256 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4258         * Form.cs: When a form's MdiParent is set add it directly
4259         on top of the z-order in stead of relying on MdiClient's
4260         ActivateChild to do it. Fixes #80135.
4261         
4262         * MdiClient.cs: 
4263         - Remove original_order, mdi_child_list is already doing
4264         the same thing.
4265         - Create mdi_child_list on construction in
4266         stead of first use (avoids a few null checks).
4268         * MenuItem.cs: Use an already existing list of mdi children
4269         to get the correct order of children and remove the other
4270         redundant list.
4272 2006-12-04  Chris Toshok  <toshok@ximian.com>
4274         * PropertyGridView.cs: cached_splitter_location is only used in
4275         !DOUBLEBUFFER code.
4277         * PropertyGrid.cs: implement the ComComponentNameChanged event
4278         using Events, hoping that would fix the warning.  Looks like a
4279         compiler bug instead (#80144).
4281         * PropertyManager.cs: remove unused method.
4283 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
4285         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
4286         include parentesis to fix expression evaluation. Fixes #79634.
4288 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
4289         
4290         * MenuAPI.cs:
4291         - Changes to fix behavior in Menu control, some reported in #80097
4292         and other detected during behavior refactory like a select event
4293         problems.
4294         - Remove unneded "if's" conditions.
4295         - Created an internal to flag when popup is active in control, we need 
4296         it because in .NET you can have menu active but without popup active
4297         when you active menu using popup without visible items.
4298         - Mimic win32 behavior for Select and Popup events.  
4299         - Dont open popup menu when you dont have visible subitems.
4300         - Do nothing when click on disabled menu item.
4301         - Some small changes to follow the coding style guidelines.
4302         - Unselect menu only when another control gives focus. Fixes #80097.
4303         - Remove unused code.
4304         
4305         * MenuItem.cs: internal VisibleItems method to check if menu
4306         theres visible subitems, it will be usefull to fix some 
4307         behavior in Menu control.
4308         
4309 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
4310         
4311         * Timer.cs: Tag property for 2.0 profile.
4312         
4313 2006-12-01  Chris Toshok  <toshok@ximian.com>
4315         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
4316         
4317         * Win32DnD.cs: comment out some unused fields.
4319         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
4320         some unused properties/methods.
4322         * XplatUIX11.cs: fix MousePosition so we override the base class's
4323         property instead of conflicting with it.
4325         * PictureBox.cs: comment out some unused fields
4327         * OSXStructs.cs: make some struct fields public.
4329         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
4330         MousePosition so we override the base class's property instead of
4331         conflicting with it.
4333         * X11Dnd.cs: comment out some unused fields
4335         * X11DesktopColors.cs: fix some struct field visibility to quiet
4336         the compiler.
4338         * X11Dnd.cs: remove some debug code.
4340         * ThemeClearlooks.cs: comment out unused field.
4342         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
4344         * ThemeGtk.cs: comment out some unused pinvokes.
4346         * Timer.cs: remove some unused fields.
4348         * ThemeClearlooks.cs: comment out unused field.
4350         * UpDownBase.cs: comment out unused field.
4352         * DataObject.cs: comment out unused field.
4354         * DataGridBoolColumn.cs: reomve unused field.
4356         * DataGrid.cs: remove unused field.
4358         * Cursor.cs: remove old ToBitmap code.
4360         * ControlPaint.cs: remove unused method.
4362         * ScrollBar.cs: remove unused fields.
4364         * ComboBox.cs: remove unused field, and chain up to
4365         AccessibleObject ctor.
4367         * ListBox.cs: remove unused field.
4369         * ButtonBase.cs: wrap a couple fields in NET_2_0.
4371         * GridEntry.cs: remove unused fields.
4373         * Binding.cs: remove unused fields.
4375         * AxHost.cs: remove unused method.
4377         * ContainerControl.cs: remove unused field.
4379         * ScrollableControl.cs: remove unused fields.
4381 2006-12-01  Chris Toshok  <toshok@ximian.com>
4383         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
4384         the Where/WhereString stuff.  it's easy enough to CWL
4385         Environment.StackTrace.
4387         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
4388         unused private fields.
4390 2006-12-01  Jackson Harper  <jackson@ximian.com>
4392         * TextControl.cs: Do not update the view while inserting multiline
4393         text. If we update the view we might wrap lines, before entering
4394         the new lines, which causes the new line insertion calculations to
4395         be totally fubared.
4396         - Remove an old TODO
4397         - Make debug output a little nicer
4398         
4399 2006-12-01  Chris Toshok  <toshok@ximian.com>
4401         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
4403 2006-12-01  Chris Toshok  <toshok@ximian.com>
4405         [ fix the majority of the CS0108 warnings we've been suppressing ]
4406         
4407         * TreeView.cs: mark BackgroundImageChanged as 'new'.
4409         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
4410         to "LayoutToolBar" to quiet mcs.
4411         
4412         * TabControl.cs: mark our ControlCollection class as 'new'.
4414         * TextBoxBase.cs: mark some events as 'new'.
4416         * Splitter.cs: TabStop is 'new'.
4418         * ControlBindingsCollection.cs: mark a few methods as new since
4419         they change the visibility from protected to public.
4421         * RadioButton.cs: DoubleClick -> base class, and remove unused
4422         HaveDoubleClick.
4424         * MonthCalendar.cs: ImeMode property -> base class, and mark many
4425         events as new.
4427         * NumericUpDown.cs: TextChanged -> base class.
4429         * CheckedListBox.cs: mark our ObjectCollection class as new to
4430         quiet mcs.
4432         * FolderBrowserDialog.cs: make HelpRequest event new and have it
4433         muck with the base class.
4435         * StatusBar.cs: fix some mcs warnings about Update being the same
4436         name as a base class method.
4438         * RichTextBox.cs: mark some events as new, and make them do things
4439         to the base class impl.
4441         * UserControl.cs: mark TextChanged as new, and have it manipulate
4442         base.TextChanged.
4444         * UpDownBase.cs: mark some things new.
4446         * CheckBox.cs: mark DoubleClick "new", and add some text about
4447         what we need to look at.
4449         * Panel.cs: make the events "new", and manipulate the base
4450         version.  these are just here for attributes.
4452         * AccessibleObject.cs: make owner private.
4454         * Control.cs: deal with AccessibleObject.owner being private.
4455         cache our own copy if we need it.
4457         * Button.cs: add "new" to the DoubleClickEvent.
4459         * ListBox.cs: no need to track our own has_focus here.  let
4460         Control.has_focus do it for us.  Also some other work to clear up
4461         warnings about not overriding base class methods of the same name.
4462         
4463         * ComboBox.cs: clear up some warnings about not override base
4464         class methods of the same name.
4466 2006-12-01  Chris Toshok  <toshok@ximian.com>
4468         * Form.cs: flag a few things as "new" to quiet some of the mcs
4469         warnings.
4471         * AxHost.cs: same.
4473         * PrintPreviewDialog.cs: same.
4475         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
4476         now DGV isn't so horrible on the class status page.  also, move
4477         all events to using System.ComponentModel.EventHandlerList.  my
4478         wrists hurt.
4480 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4482         * MdiWindowManager.cs:
4483         - Set form to active mdi child if shown,
4484         and update the active mdi child to the next 
4485         remaining child in the z-order if the form is hidden.
4487         * Form.cs: 
4488         - Track if the form has been visible and if its 
4489         visibility is beeing changed, so that the MdiClient
4490         can properly decide the ActiveMdiChild. The MdiClient 
4491         cannot track this since the form can change visibility 
4492         before MdiClient is created.
4494         * MdiClient.cs:
4495         - Don't activate anything of the parent form is changing
4496         its visibility.
4497         - Rework ActiveMdiChild to only return visible mdi 
4498         children and take into account several other corner 
4499         cases.
4501 2006-12-01  Chris Toshok  <toshok@ximian.com>
4503         * IBindableComponent.cs: new 2.0 interface.
4505 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
4507         * DataGrid.cs: Font for caption area is bold by default.
4509 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
4511         * Menu.cs: Tag property for 2.0.
4512         
4513 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
4515         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
4516         
4517 2006-12-01  Chris Toshok  <toshok@ximian.com>
4519         * TreeView.cs: doh, the Begin* events should be
4520         TreeViewCancelEventHandler.
4522 2006-12-01  Chris Toshok  <toshok@ximian.com>
4524         * Form.cs: Form.ControlCollection already stores off the
4525         form_owner field.  don't access the base class's internal "owner"
4526         field.
4528         * Control.cs: make all the fields in Control.ControlCollection
4529         private.  there's no need for any internal fields here.
4531 2006-12-01  Chris Toshok  <toshok@ximian.com>
4533         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
4534         OnHandleCreated.  Fixes bug #80109.
4536 2006-12-01  Chris Toshok  <toshok@ximian.com>
4538         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
4539         SplitContainer.cs, Control.cs, StatusStrip.cs,
4540         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
4541         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
4542         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
4543         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
4544         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
4545         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
4546         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
4547         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
4548         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
4549         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
4551         do most of the work to convert our code over to use
4552         System.ComponentModel.Component.Events for
4553         adding/removing/dispatching events.
4556 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
4558         * DataGridView.cs: Fix an ArgumentNullException reported 
4559         twice today in IRC.
4561 2006-11-30  Mike Kestner  <mkestner@novell.com>
4563         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
4564         grabbed listbox.  Fixes #80036 and #80101.
4566 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
4568         * Message.cs: Changed ToString() to match MS.
4569         
4570 2006-11-30  Jackson Harper  <jackson@ximian.com>
4572         * TextBoxBase.cs: You can still change the selected text on a read
4573         only textbox.
4574         * TextControl.cs: Lower magic number for wrap calculations. This
4575         lets text get closer to the right (far) edge.
4577 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
4579         * Control.cs: Tweak 2.0 layout properties.
4580         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
4581         * TextRenderer.cs: Add a new overload.
4582         * ToolStrip*: Huge amount of changes and new features.
4584 2006-11-30  Mike Kestner  <mkestner@novell.com>
4586         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
4587         scroll range correct.  Fixes #79994.
4589 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
4591         * MdiWindowManager.cs: Update main form's text when
4592         a form is closed. (fixes #80038)
4593         
4594 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
4596         * ToolBar.cs:
4597         - Fix an regression in ButtonSize.
4598         - Get ImeMode default value change to "Disable".
4599         - Get ShowTooltips default value change to true, default value is 
4600         "false" but after make a test in .NET we get "true" result as default.
4601         
4602 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
4604         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
4606 2006-11-29  Chris Toshok  <toshok@ximian.com>
4608         * XplatUIWin32.cs (GetWindowTransparency): check return value of
4609         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
4610         SetWindowTransparency hasn't been called.
4612 2006-11-29  Chris Toshok  <toshok@ximian.com>
4614         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
4615         if it's supported.
4616         (set_AllowTransparency): reorder things a little so that the
4617         WS_EX_LAYERED style is removed properly.
4619 2006-11-29  Chris Toshok  <toshok@ximian.com>
4621         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
4622         
4623         * Form.cs: only call the XplatUI transparency method (get/set) if
4624         SupportsTransparency says it's supported. Otherwise fallback to
4625         doing nothing (in the set case) or returning the instance field we
4626         cache (in the get case).
4628         * XplatUIStructs.cs: add TransparencySupport flag enum.
4629         
4630         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
4631         change to SupportsTransparency.
4633         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
4634         TransparencySupport.None from SupportsTransparency.
4636         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
4637         TransparencySupport.Set from SupportsTransparency.
4639         * XplatUIWin32.cs: implement GetWindowTransparency calling
4640         GetLayeredWindowAttributes, and implement SupportsTransparency by
4641         checking whether or not both
4642         GetWindowTransparency/SetWindowTransparency are available
4643         entrypoints.  We need to do this since SetWindowTransparency is
4644         available as of win2k, but GetWindowTransparency requires winxp.
4645         yay win32 api.
4647         * XplatUI.cs: Add GetWindowTransparency, and change
4648         SupportsTransparency to allow for either/both Get/Set.
4650 2006-11-29  Chris Toshok  <toshok@ximian.com>
4652         * DataGrid.cs: keep from going into an infinite loop redrawing a
4653         datagrid that has no datasource.  Fixes bug #80033.
4655 2006-11-29  Chris Toshok  <toshok@ximian.com>
4657         * MenuItem.cs: fix the NRE when we assign text (and therefore call
4658         Invalidate) before the mainmenu has been assigned to a control.
4660 2006-11-29  Chris Toshok  <toshok@ximian.com>
4662         * DataGrid.cs: detect when we should be double the double click
4663         row/column autosize stuff, although that codepath has yet to be
4664         written.  part of the work for bug #79891.
4666 2006-11-29  Chris Toshok  <toshok@ximian.com>
4668         * Binding.cs (SetControl): fix unit test.
4670 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4672         * PageSetupDialog.cs: Validate the margins and set them in
4673         PageSettings. 
4674         * NumericTextBox.cs: New class to mimic the behavior of the
4675         textboxes used in the printing dialogs.
4677 2006-11-29  Andreia Gaita  <avidigal@novell.com>
4678         
4679         * Form.cs: Revert previous change (remove call UpdateBounds
4680         from form constructor), because it messes with the handle creation
4681         order, and that one needs lots and lots of love.
4682         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
4683         for valid printer and throw InvalidPrinterException if document
4684         is set but printer not valid), adding a MonoTODO. Once 
4685         handle creation is done properly, we can put this back in.
4687 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
4689         * MenuItem.cs: Create a invalidate method for menu item, to be
4690         calling from set text, it make text changes to imadiate update
4691         on screen. Fixes #80013. 
4692         
4693 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
4695         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
4696         fixes bug #80070 and some other problem on toolbar buttons
4697         layout.
4699 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
4701         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
4702         with dotted brush.      Fixes #79564
4703         
4704 2006-11-28  Andreia Gaita  <avidigal@novell.com>
4706         * Form.cs: Removed call to UpdateBounds on Form
4707         constructor, it was causing a call to CreateHandle
4708         before it was supposed to.
4709         * PrintControllerWithStatusDialog: Applied patch
4710         by Chris Toshok to hide controller when there are
4711         no printers available.
4712         PrintDialog.cs: initialize printer settings to 
4713         null - correct DefaultValues test #5
4714         * PrintPreviewControl.cs: Move PrintController
4715         initialization to GeneratePreview
4716         * PrintPreviewDialog.cs: 
4717         - Remove Preview generation     from Document_set(). It is 
4718         called on OnPaint
4719         - Throw InvalidPrinterException on CreateHandle if
4720         a Document is set but there are no printers or 
4721         printer is not valid.
4722         * ThemeWin32Classic: don't paint PrintPreviewControl
4723         if there is nothing to paint    
4725 2006-11-28  Miguel de Icaza  <miguel@novell.com>
4727         * Form.cs: Add another popular method.
4729         * TabPage.cs: ditto.
4731 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4733         * MenuItem.cs: Fixed a warning.
4734         * InternalWindowManager: Fixed a warning.
4736 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4738         * MenuItem.cs:
4739         - When cloning a menu also clone MdiList and clone the 
4740           window menu items properly (as the forms and menuitems
4741           are kept in an internal hashtable, these need updating 
4742           as well)
4743         - Rewrote the window menu code, menu items are added in the
4744           order the forms were added to their parent, and they are
4745           updated every time the window menu is shown (before the
4746           list was only generated once, in the current order of the
4747           forms, and would never be updated). A checkmark is shown
4748           next to the item corresponding to the active mdi child.
4750 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4752         * XplatUIStructs.cs: 
4753         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
4754         
4755         * XplatUIWin32.cs: 
4756         - Added TME_NONCLIENT to TMEFlags.
4757         - Handles WM_NCMOUSEMOVE in GetMessage to 
4758           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
4760         * MdiWindowManager:
4761         - Now merges mdi child menu to parent menu when maximized.
4762         - Recalculate NC areas of both mdi child and mdi parent. 
4763           Fixes #79757 (4).
4764           on window state and size changes.Fixes #79844 (3).
4765         - Handle WM_NCCALCSIZE to properly calculate borders.
4767         * Form.cs:
4768         - Add/remove to the mdi containers list of mdi children 
4769           in the order they are added.
4770         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
4771           to the maximized mdi child.
4772         
4773         * InternalWindowManager.cs:
4774         - Only execute a click on the control buttons on the mouse up,
4775           not on the mouse down. Show the state of the button 
4776           (was only showing Normal state, never Pressed state). The
4777           pressed button now follows the mouse (if you click the Close 
4778           button and move the mouse over the Maximize button, the 
4779           Maximize button will be shown as pressed). Since Win32 does
4780           not generate WM_NCLBUTTONUP if you release the button outside
4781           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
4782           it as a mouse up.
4783         
4784         * ThemeWin32Classic.cs:
4785         - Draw a missing border around mdi child forms. Fixes #79844 (2).
4787         * MdiClient.cs:
4788         - Added a list of forms which contains the order the forms are
4789           added to the mdi parent.
4790         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
4791         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
4792         - If the active form changes set the scrollbars to the top
4793           of the Z order, otherwise the form could hide them.
4794         - Scrollbars are now sized according to ClientSize, not 
4795           to Size, and they take into account the other scrollbar
4796           to determine maximum.
4797         
4798 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
4799         
4800         * XplatUI.cs:
4801         * XplatUIDriver.cs:
4802         * XplatUIX11.cs:
4803         * XplatUIWin32.cs:
4804         * XplatUIOSX.cs:
4805         - Added RequestAdditionalWM_NCMessages for windows to 
4806           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
4807           Currently only implemented in XplatUIWin32.
4809 2006-11-27  Chris Toshok  <toshok@ximian.com>
4811         * Hwnd.cs: only add the hwnd to the windows hash in
4812         set_WholeWindow and set_ClientWindow if whole_window/client_window
4813         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
4815 2006-11-27  Mike Kestner  <mkestner@novell.com>
4817         * ComboBox.cs: remove redundant OnDropDown call.  It is called
4818         from the ComboListBox.ShowWindow code. Fixes #79969.
4820 2006-11-27  Chris Toshok  <toshok@ximian.com>
4822         * Hwnd.cs: remove the setters for ExposePending and
4823         NCExposePending - noone uses them.
4825 2006-11-27  Jackson Harper  <jackson@ximian.com>
4827         * TextControl.cs: new param for ReplaceSelection which determines
4828         whether we select the new selection, or set the cursor to the end
4829         of the new selection.
4830         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
4831         pasting, select the new text.
4832         * RichTextBox.cs: Use new param for ReplaceSelection.
4834 2006-11-27  Jackson Harper  <jackson@ximian.com>
4836         * TextBoxBase.cs: Set the selection to the caret after the caret
4837         is moved, otherwise they get out of sync.
4839 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
4841         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
4842         it fixes #80015
4844 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
4846         * ThemeWin32Classic.cs: 
4847         - Fix toolbar drop down arrow position.
4848         - Fix drop down appearance when ToolBar.Appearance is normal,
4849         it fixes #80018.
4850         
4851 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
4853         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
4854         * Control.cs: Same.
4855         * UpDownBase.cs: Same.
4856         * ButtonBase.cs: Same.
4857         * ScrollBar.cs: Same.
4858         * TrackBar.cs: Same.
4859         * PictureBox.cs: Same.
4860         * UserControl.cs: Same.
4861         * Label.cs: Same.
4862         * ListControl.cs: Same.
4863         * TextBoxBase.cs: Same.
4864         * ListView.cs: Same.
4865         * RichTextBox.cs: Same.
4866         * TreeView.cs: Same.
4868 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
4870         * PrintDialog.cs:
4871         - Text label for where 
4872         - Text label comment was not shown
4874 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
4876         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
4878 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
4880         * InternalWindowManager.cs: 
4881         - Handle WM_PARENTNOTIFY to activate the form
4882         if any child control is clicked.
4883         - The form is only sizable if not minimized.
4885         * MdiWindowManager.cs:
4886         - Save the IconicBounds if the form is moved.
4887         - Rework SetWindowState, now the window bounds 
4888         are stored only if the old window state is Normal.
4889         
4890         * MdiClient.cs:
4891         - In SetWindowStates store the old window state if 
4892         the window is maximized and restore window state if
4893         the window looses focus.
4894         - Don't handle any scrollbar value changes if 
4895         initializing the scroll bars. Fixes #79771.
4896         - Reworked ArrangeIconicWindows. Current algorithm
4897         tests bounds agains all other minimized windows, if
4898         any intersections create new bounds (going left to 
4899         right, bottom to top) and then test again. When 
4900         successful the bounds are saved and never computed
4901         again. Fixes #79774.
4903 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
4905         * InternalWindowManager.cs: Added HandleTitleBarUp.
4907 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
4909         * NumericUpDown.cs: In .NET 1.1, user entered text is still
4910         hexadecimal in ParseUserEdit.
4912         
4913 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
4915         * MdiWindowManager.cs: 
4916         - Handle a click on the form's icon to show the 
4917         system menu (when maximized). Fixes #79775.
4918         - Change the existing click handler for the form's
4919         icon when not maximized to show on MouseUp.
4920         Fixes #79776.
4922         * Form.cs: In OnResize only layout the mdi child's
4923         parent if it actually has a parent. Might not if
4924         the window is closing.
4927 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
4929         * MdiClient.cs: Ignore active MDI client for text of parent, if
4930         child has no text set.
4932 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
4934         * ToolBar.cs: Fixed ToString to match MS.
4936 2006-11-22  Andreia Gaita  <avidigal@novell.com>
4938         * NumericUpDown: 
4939         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
4940         update inner values on set. Fixes #79966.
4941         - Override OnLostFocus to update value on NET 2. Fixes #79950.
4942         - Fix hexadecimal parsing.
4943         
4944         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
4945         parent. Fixes #79957
4947 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4949         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
4950         the actual size has to be queried, since if height /
4951         width is negative Win32 changes it to 0. 
4952         Fixes #79999 on Windows.
4953         
4954         * XplatUIX11.cs: Set height / width to 0 if negative
4955         in SetWindowPos. Fixes #79999 on Linux.
4956         
4957 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
4959         * ThemeWin32Classic.cs: Fix text redenring when button is
4960         pressed.
4962 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
4964         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
4965         and later navigate by mouse. Fixes #79528.
4967 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
4969         * ToolBar.cs: Set default value for TabStop to false in
4970         constructor, it fixes remaining behavior of bug #79863.
4972 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4974         * MdiWindowManager.cs:
4975         * InternalWindowManager.cs:
4976         - Moved a few methods specific to Mdi from 
4977         InternalWindowManager to MdiWindowManager.
4978         Fixes #79996.
4979         
4980 2006-11-21  Chris Toshok  <toshok@ximian.com>
4982         * XplatUIOSX.cs: stub out InvalidateNC.
4984         * XplatUIWin32.cs: implement InvalidateNC using the call I found
4985         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
4987         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
4989         * XplatUIDriver.cs: add InvalidateNC abstract method.
4991         * XplatUI.cs: add InvalidateNC.
4993 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
4995         * ToolBar.cs: Invalidate complete button area when pressed status 
4996         was changed.
4997         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
4998         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
4999         by 1 when button is pressed.
5001 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
5003         * ToolButton.cs: Invalidate middle of DropDown button when
5004         ToolBar theres DropDownArrows.
5005         * ThemeWin32Classic.cs: Change position of DropDown arrow and
5006         fix DropDown drawing operations.
5008 2006-11-20  Chris Toshok  <toshok@ximian.com>
5010         * NativeWindow.cs: fix the formatting of functions ('{' on the
5011         following line), and enable the thread exception dialog.
5013         * Application.cs: remove the duplicate exception catching from
5014         here.
5016 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
5018         * Toolbar.cs: Triggers button click event when click on icon
5019         of dropdown ToolBarButton. Fixes #79912.
5020         
5021 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5023         * Theme.cs:
5024         * ThemeWin32Classic.cs:
5025         - Added a property WindowBorderFont to enable themeing
5026           of mdi child windows' Text.
5027           
5028 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5030         * InternalWindowManager.cs:
5031         * Form.cs:
5032         * MdiClient.cs:
5033         * MdiWindowManager.cs: 
5034         - If mdi child is maximized, set mdi parent's
5035           text to "Parent - [Child]". Fixes #79770.
5036         - If there is any maximized mdi child windows, only the active 
5037           window (and any new windows) is maximized, the rest are normal.
5038         - On a WindowState change only save mdi child's window bounds 
5039           if the old window state was normal. Fixes #79774.
5040         - The scroll bars are now calculated on hopefully all
5041           necessary events. Fixed #79771 / #79844->6 / #79906.
5042         - MdiClient.SizeScrollBars() now takes into account docked 
5043           controls in the parent when calculating available space.
5044         - InternalWindowManager now always repaints the entire title
5045           area. Fixes #79844->1/4/5.
5046         - Added RequestNCRecalc on mdi child windowstate changes.
5047           Fixes #79772.
5049 2006-11-20  Mike Kestner  <mkestner@novell.com>
5051         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
5052         in the MouseUp handler of the listbox and move the return handling
5053         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
5055 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
5057         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
5059 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
5061         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
5062           working in 1.2.x anymore. So, updated.
5064 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
5066         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
5067         NumberGroupSeparator of current culture instead of assuming en-US.
5068         Fixed bug #79967.
5070 2006-11-17  Mike Kestner  <mkestner@novell.com>
5072         * Control.cs: Add the concept of implicit bounds setting so that
5073         dock/undock round trips preserve explicitly set size/locations.
5074         Fixes #79313.
5076 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
5078         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
5079           can't handle those filters. (Fixes bug #79961)
5081 2006-11-17  Chris Toshok  <toshok@ximian.com>
5083         [ fixes the exit/crashes associated with #79835.  it's clearly
5084         suboptimal though, we need to figure out a better way to solve
5085         this. ]
5086         
5087         * PrintPreviewControl.cs: deal with the new invalid printer
5088         exceptions.
5090         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
5091         and return false (so CommonDialog.ShowDialog doesn't actually show
5092         the form.)
5094         * PrintDialog.cs: enable/disable the Ok button depending on
5095         whether or not the printer is valid.
5097         * CommonDialog.cs (ShowDialog): only actually show the form if
5098         RunDialog returns true.
5100 2006-11-17  Jackson Harper  <jackson@ximian.com>
5102         * TextControl.cs: When soft splitting a line, mark it as a soft
5103         split line. Also carry over the current line break to the next
5104         line.
5106 2006-11-17  Chris Toshok  <toshok@ximian.com>
5108         * XplatUIX11.cs: when scrolling a window with an invalid area, we
5109         only want to shift the part of the invalid area that overlaps the
5110         area we're scrolling.  we also don't want to clear the invalid
5111         area unless the invalid area was entirely contained within the
5112         scrolling area.
5114 2006-11-16  Chris Toshok  <toshok@ximian.com>
5116         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
5117         also make sure to free the memory returned by XGetWindowProperty
5118         in GetText().
5120         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
5122 2006-11-16  Chris Toshok  <toshok@ximian.com>
5124         * XplatUI.cs: add a new super secret way to get at the totally
5125         unsupported X11 backend.
5127 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
5129         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
5131 2006-11-16  Jackson Harper  <jackson@ximian.com>
5133         * TreeView.cs: Allow more explicit setting of top node position
5134         for scrollbars. Slower algo, but more accurate.
5135         - CollapseAll should maintain the current top node.
5136         * TextBoxBase.cs: When positioning the caret, use the line, pos
5137         method, since the x, y method does not grab the correct tag, and
5138         the caret height never gets set correctly. (Maybe I should just do
5139         away with the caret having its own height, and always use the
5140         carets current tag for height).
5142 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
5144         [Fixes 79778, 79923]
5146         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
5147         Parent to the FosterParent instead.
5149 2006-11-16  Jackson Harper  <jackson@ximian.com>
5151         * TreeView.cs: Need to recalc the topnode when we expand or
5152         collapse. The scrolling methods can't handle this on their own,
5153         since they use differences between the last scroll position, and
5154         those difference get completely messed up since we are expanding
5155         nodes.  This problem should probably be fixed in the scrolling
5156         methods, so they can figure out exactly where they are, but this
5157         will slow things down a little.
5158         * ThemeWin32Classic.cs: Special case for groupboxes with empty
5159         strings, makes nunit-gui look a lot nicer.
5161 2006-11-16  Chris Toshok  <toshok@ximian.com>
5163         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
5164         the broken multithreaded event handling we have in here.  File
5165         this entry under "Why we should move to the new X11 backend".
5167         Any thread can make it into UpdateMessageQueue, which gets events
5168         from the X socket - some of which could belong to hwnds being
5169         managed by a different thread.  We can also have multiple threads
5170         in UpdateMessageQueue at the same time, with each one reading from
5171         the X socket.  This leads to many problems, with the following
5172         solutions:
5174         We can't use hwnd.Queue.Enqueue anywhere in here and must use
5175         EnqueueLocked.
5177         The MotionNotify compression we do can't work across threads
5178         (without locking the entire queue, perhaps) since we call
5179         hwnd.Queue.Peek, so we just punt and don't compress motion events
5180         unless the owning thread is the one which got the X event.
5182         ConfigureNotify is another fun one, since it modifies the hwnd's
5183         bounds and then enqueues the event.  We add a lock to Hwnd which
5184         is held when setting configure_pending to true (and enqueuing the
5185         event).
5187         There is a race wrt the wake socket.  we need to make sure that
5188         only 1 thread is waiting on that socket, or else a thread could
5189         sleep waiting for data that never comes.  It's difficult (but not
5190         impossible) to make happen, because it seems to require something
5191         like the following:
5193             1. Thread 1 polls on wake_receive
5194         
5195             2. poll returns saying there's data to be read on
5196                wake_receive.
5197         
5198             3. Thread 2 polls on wake_receive and immediately returns
5199                saying there's data to be read.
5201             4. Thread 2 reads the wakeup byte from wake_receive
5203             5. Thread 1 attempts to read the wakeup byte from
5204                wake_receive.
5206             6. Thread 2 exits (due to a form closing, perhaps).
5208             7. Thread 1 blocks forever.
5209         
5210         Fun, eh?
5212         Fixing the Expose handling isn't done yet, and the races inherent
5213         in that piece of code are responsible for the drawing mistakes you
5214         see when generating expose events in a MT app (like NPlot).  This
5215         one is the likely to be the hardest to bandaid, and it doesn't
5216         appear to cause anything but drawing problems.  The other issues
5217         caused apps to exit or hang.
5219         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
5220         called from a different thread than the one that should be calling
5221         these functions.
5223         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
5225 2006-11-15  Chris Toshok  <toshok@ximian.com>
5227         * Application.cs: null out the context's MainForm when we exit
5228         RunLoop.  Fixes a newly checked in unit test as well as the last
5229         ODE from bug #79933.
5231 2006-11-15  Chris Toshok  <toshok@ximian.com>
5233         * Form.cs (set_Owner): allow a null value so we can clear the
5234         form's owner.
5235         (Dispose): set all our owned_form's Owner properties to null, and
5236         clear the owned_forms collection.
5237         (WM_CLOSE): clean up this a little bit.. still not right though.
5239         * ApplicationContext.cs: OnMainFormClosed should only call
5240         ExitThreadCore if the main form isn't recreating.  Fixes unit
5241         test.
5243 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
5245         [Fixes 78346]
5247         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
5249 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
5251         [Fixes 79433]
5253         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
5254         keep popup window types from stealing focus from the main form
5255         on Windows.
5257         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
5259         * MenuAPI.cs: Set above flag to true.
5261 2006-11-15  Chris Toshok  <toshok@ximian.com>
5263         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
5264         the button being released is not in wParam.
5266 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
5268         * Form.cs: Add the released button to MouseEventArgs.Button
5269         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
5270         on Win32.
5272 2006-11-15  Chris Toshok  <toshok@ximian.com>
5274         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
5275         GetText().  untested because it's unused in our implementation.
5276         Control.Text always caches the text, even if
5277         ControlStyles.CacheText is not set.
5279         fixes bug #79939.
5281 2006-11-15  Chris Toshok  <toshok@ximian.com>
5283         [ fixes #79933 ]
5284         
5285         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
5286         message.  no hiding, no disposing.
5288         in the WM_CLOSE handler, hide the form if it's modal.
5290 2006-11-15  Chris Toshok  <toshok@ximian.com>
5292         * XplatUIX11.cs: use AddExpose instead of sending a message.
5293         fixes textbox border drawing.
5295 2006-11-15  Chris Toshok  <toshok@ximian.com>
5297         * PropertyGridView.cs: keep from crashing on mouse move/down when
5298         the property grid is empty.
5300 2006-11-14  Jackson Harper  <jackson@ximian.com>
5302         * TextControl.cs: Make PageUp and PageDown more like the MS
5303         versions.
5304         * TextBoxBase.cs: When we set the text property position the
5305         cursor at the beginning of the document.
5307 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5309         * Form.cs: if a mdi child's WindowState has changed
5310         before it's creation, it would display wrong control
5311         buttons.
5312         
5313 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
5315         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
5316           (Fixes bug #79927)
5318 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5320         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
5321         the window gets to paint its borders even if the window is
5322         getting smaller.
5323         
5324         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
5325         otherwise the old control buttons would still be painted 
5326         if the window gets bigger.
5327         
5328         * PaintEventArgs.cs: add an internal method so that the clip 
5329         rectangle can be changed.
5330         
5331 2006-11-13  Chris Toshok  <toshok@ximian.com>
5333         [ fixes bug #79745 ]
5334         
5335         * NotifyIcon.cs: lots of cleanup.
5337         * X11Structs.cs: add an enum for XEMBED messages.
5339         * XplatUIX11.cs: reindent one of the giant switch statements, it
5340         was taking up an additional tab stop, and this file is already way
5341         too wide for my laptop's screen.
5343         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
5344         we get it, resize the hwnd to the WMNormalHints max_width/height.
5346 2006-11-13  Jackson Harper  <jackson@ximian.com>
5348         * TextBoxBase.cs: Compute the value changes for the mouse wheel
5349         teh simple way.
5351 2006-11-13  Chris Toshok  <toshok@ximian.com>
5353         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
5354         #79898.  force a reference to the Region to stick around so the
5355         unmanaged object isn't collected (rendering our handle in the MSG
5356         stale).
5358 2006-11-13  Chris Toshok  <toshok@ximian.com>
5360         * XplatUIX11.cs: fix #79917 for window managers which support
5362         using XStoreName on the raw utf8, and we need to convert to
5363         COMPOUND_TEXT if it's non-latin1.
5365 2006-11-13  Chris Toshok  <toshok@ximian.com>
5367         * Form.cs (set_DialogResult): we need to set closing to false if
5368         we're setting our result to None.  fixes bug #79908.
5370 2006-11-13  Jackson Harper  <jackson@ximian.com>
5372         * TextControl.cs: When formatting text, compute the adjusted tag
5373         lengths correctly, using FindTag for the end tag instead of trying
5374         to figure it out outselves.
5375         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
5376         the item, ItemHeight doesn't work, because trees with large
5377         imagelists use those for their height
5378         * TreeView.cs: ActualItemHeight factors in the image height
5379         - compute left edge of checkboxes correctly
5380         - when expanding/collapsing move the bottom down one pixel, so we
5381         aren't moving part of the node
5383 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5385         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
5386         stack in PaintEventStart so that it won't get disposed by the gc
5387         before reaching PaintEventEnd.
5389 2006-11-13  Jackson Harper  <jackson@ximian.com>
5391         * TextBoxBase.cs: Don't select the word if we are on a line with
5392         no text.
5393         - We don't need to position the caret on mouse up, since the mouse
5394         move handler should be doing this
5395         - When double clicking a blank line, the caret is advanced to the
5396         next line.
5398 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
5400         * TreeNodeCollection.cs: Avoid duplicating indexer code.
5402 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
5404         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
5405         Fixes part of bug #79910.
5407 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
5409         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
5410           (bug #79903). Some minor string updates to match ms.
5412 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
5414         * FileDialog.cs: Don't add an extension if the filename
5415           already ends with that extension.
5417 2006-11-10  Jackson Harper  <jackson@ximian.com>
5419         * TreeView.cs: Use the currently highlighted node for the
5420         BeforeSelect event.
5421         * TextBoxBase.cs: There is no need to expand selection on
5422         MouseMove.
5423         - CanUndo means 'is there any undo operations', not 'is undo
5424         allowed on this textcontrol. Fixed ClearUndo unit test.
5426 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
5428         * Button.cs: only perform click when button is Selectable (so as 
5429         not to activate default buttons when they're disabled)
5430         
5431         * Control.cs: Rewrite of the SelectNextControl and related 
5432         methods. HandleClick now selects next control if the current one
5433         is being disabled.
5434         
5435         * Form.cs: OnActivated selects next active control only if Load 
5436         has already occurred. If Load hasn't run, there's no point in 
5437         selecting here, Load might change the state of controls.
5438         
5439         * FocusTest.cs: Tests marked as working again for these fixes
5441 2006-11-10  Chris Toshok  <toshok@ximian.com>
5443         * XplatUIX11.cs: a couple of fixes.
5445         - use XInternAtoms with almost all the atoms we need to register,
5446         instead of many, many calls to XInternAtom.  should help a bit on
5447         startup time, at the expense of making the code look a little
5448         worse.
5450         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
5451         isn't reparented (which seems to be a clue that we're running fon
5452         compiz) and they have an Owner form.  This fixes the tool windows
5453         in paint.net when running under compiz.
5455         - when setting the opacity of a window, support both the case
5456         where the window has been reparented and also when it hasn't been.
5457         Since compiz/beryl doesn't seem to reparent windows, and these are
5458         the only window managers which support translucency, I'm not sure
5459         why we need the hwnd.reparented case at all.. but leave it in.
5460         now we get translucent windows in paint.net under compiz/beryl.
5462 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
5464         * FileDialog.cs: Always return the value for FilterIndex that
5465           was set. Internally convert it to values that make sense.
5467 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
5468         
5469         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
5471 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
5473         * Toolbar.cs: Change default value of DropDownArrows to true, the 
5474         signature still using false to make it compatible with MS but the 
5475         initial value is true. Fixes #79855.
5477 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
5479         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
5480           only available on Linux.
5482 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
5484         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
5485         reduce number of calls to redraw method during toolbar creation.
5487 2006-11-09  Mike Kestner  <mkestner@novell.com>
5489         * ListView.cs : raise SelectedIndexChanged when an item is selected
5490         programmatically via the Item.Selected property.  Gert's nice 
5491         ListViewSelectedIndexChanged test fixture now runs clean.
5493 2006-11-09  Mike Kestner  <mkestner@novell.com>
5495         * ListView.cs : raise SelectedIndexChanged when a selected item is
5496         removed from the item collection using Remove or RemoveAt.
5498 2006-11-09  Mike Kestner  <mkestner@novell.com>
5500         * ListView.cs : raise SelectedIndexChanged once per selected item
5501         for compat with MS.  Fixes #79849+.
5503 2006-11-09  Chris Toshok  <toshok@ximian.com>
5505         * TabControl.cs: initialize row_count to 0, and set it to 1 when
5506         we need to (if we have any tab pages).  Fixes unit test.
5508 2006-11-09  Chris Toshok  <toshok@ximian.com>
5510         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
5511         width is 0, not 3.  Fixes a unit test.
5513 2006-11-09  Mike Kestner  <mkestner@novell.com>
5515         * ListView.cs : use Implicit scrollbars so that focus isn't 
5516         stolen from the listview when they are clicked. Fixes #79850.
5518 2006-11-09  Chris Toshok  <toshok@ximian.com>
5520         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
5521         have a root item.  Fixes #79879.
5523 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
5525         * FileDialog.cs:
5526           - Fix ToString ()
5527           - An ArgumentException is now thrown if a wrong filter
5528             is applied (matches ms). The previous filter doesn't change
5529             anymore if an exception is thrown.
5530           - Changing the FileName property also affects FileNames
5531         * ColorDialog.cs: The length of the CustomColors array is always
5532           16. It doesn't matter if we use a smaller array or null to update
5533           or change the custom colors property.
5534         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
5535           for RootFolder if we get a undefined value.
5537 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5539         * StatusBarPanel.cs: 
5540         - Width is set to MinWidth if Width is smaller than
5541         MinWidth. Fixes #79842.
5542         - MinWidth now always overrides Width (MSDN says MinWidth
5543         is set to Width when AutoSize = None, but they do not 
5544         behave like that).
5545         - Style has now the the correct default value.
5546         
5547 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5549         * TrackBar.cs: 
5550         - The control is completely invalidated on 
5551         Got/LostFocus to draw the focus rectangle correctly.
5552         - When AutoSize then height is always 45 (width for 
5553         vertical controls).
5554         
5555         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
5556         on the mouse when moved and it doesn't move when grabbed
5557         until the mouse moves as well. Also fixed some wrong 
5558         calculations when clicking on the thumb (control thought
5559         click was outside of thumb and didn't grab it).
5560         Fixes some of the issues in #79718.
5562 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
5564         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
5566 2006-11-08  Chris Toshok  <toshok@ximian.com>
5568         * PropertyGridView.cs: only call ToggleValue if the item is not
5569         readonly.
5571 2006-11-08  Jackson Harper  <jackson@ximian.com>
5573         * TextBoxBase.cs: The RichTextBox and textbox have very different
5574         word selection methods.  Implement the textbox's simple word
5575         selection here, and let the RichTextBox override and provide it's
5576         own.
5577         - Don't do extra selection on mouseup
5578         * RichTextBox.cs: Use the documents word selection algorithm, I
5579         think ideally, this function will be pulled into the
5580         RichTextBox.cs code someday.
5582 2006-11-08  Chris Toshok  <toshok@ximian.com>
5584         * RootGridEntry.cs: new class to represent GridItemType.Root.
5586         * CategoryGridEntry.cs: reformat, and add boilerplate.
5587         
5588         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
5589         returns the UI parent anyway, and we need special handling to
5590         implement the GetTarget method in the face of it.  Also, implement
5591         Select().
5593         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
5594         a root grid item, and use that instead of PropertyGrid.grid_items.
5595         Also, make use of TypeConverters (and add limitted support for
5596         ICustomTypeDescriptors) when initially populating the grid.
5597         Arrays now show up more or less properly.
5599 2006-11-08  Chris Toshok  <toshok@ximian.com>
5601         * Application.cs: set the modal dialog to non modal after we close
5602         it.  Fixes bug #79866.
5604 2006-11-08  Jackson Harper  <jackson@ximian.com>
5606         * TextControl.cs: When combining lines carry over the line end
5607         style from the end line.
5608         - Invalidate the selected area when setting it, if it is visible.
5609         * TextBoxBase.cs: Only rich text box can do full line selects.
5610         - Make sure to set the cursor position when there is a click,
5611         otherwise two clicks in separate areas could cause a large chunk
5612         to be selected.
5614 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
5616         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
5617         Fixes #79863.
5619 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
5621         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
5622         time. Remove tooltips when ToolButton click events.  Fixes #79856.
5624 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
5626         * MenuAPI.cs: Ignore right click for menu actions and fixes
5627         menu border when clicked.  Fixes #79846.
5629 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
5631         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
5632         MouseState after create wParam for message, this fixes mouse button 
5633         equal none in mouse up events.
5634         
5635 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
5637         * Control.cs : Focus() now calls Select to set the Container's
5638         Active Control and to give it focus. To avoid infinite recursion
5639         (because ActiveControl also calls Focus at one point), a check 
5640         is made in Focus with the help of a new internal variable
5641         is_focusing.
5643 2006-11-07  Mike Kestner  <mkestner@novell.com>
5645         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
5646         if there's a selection.  Fixes #79849.
5648 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
5650         * PropertyGrid.cs: Avoid fixed height of help description label.
5651         Fixes part of bug #79829.
5653 2006-11-07  Chris Toshok  <toshok@ximian.com>
5655         * XplatUIX11.cs: fix #79790 again, by using the
5656         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
5658 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
5660         * ToolBar.cs: Fix left click checking.
5662 2006-11-07  Chris Toshok  <toshok@ximian.com>
5664         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
5666 2006-11-07  Chris Toshok  <toshok@ximian.com>
5668         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
5669         PropertyManager unit tests.
5671         * PropertyManager.cs: make property_name internal.
5673 2006-11-07  Chris Toshok  <toshok@ximian.com>
5675         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
5676         pass a unit test.  Also, don't set image_index to anything in
5677         response to setting the ImageList property.
5679 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
5681         * ToolBar.cs: Ignore click events when mouse button is not a
5682         left button, only accepts other button for dropdown menus.  
5683         Fixes #79854.
5685 2006-11-07  Chris Toshok  <toshok@ximian.com>
5687         * DataGrid.cs: make the back and parent row buttons a little less
5688         ugly.
5690 2006-11-07  Jackson Harper  <jackson@ximian.com>
5692         * TextBoxBase.cs: When converting to Text don't put line breaks in
5693         for soft line breaks.
5694         * TextControl.cs: There is an initial "fake" line in the document,
5695         this is now a soft break line, so that an extra line feed doesn't
5696         get added to the end of documents.
5698 2006-11-07  Chris Toshok  <toshok@ximian.com>
5700         [ fix bug #79778 ]
5701         
5702         * CurrencyManager.cs: if the list is readonly, don't bother
5703         checking if IBindingList.AllowNew is true.
5705         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
5706         for non-DataRowView datasources..  or rather, make it not crash.
5707         (DataGridPaintRelationRow): make sure we limit the row painting to
5708         the area not covered by the row header, and make our cell width at
5709         least large enough to cover the relation area.  This allows grids
5710         that have relations but no rows to render correctly.
5711         (DataGridPaintRowContents): same type of changes here.
5712         (SetDataSource): move back to always calling
5713         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
5714         navigating back through relations.
5715         (HitTest): handle the case where we have no cells but have
5716         relations.  Right now we generate a hit in cell 0 of whatever the
5717         row is, not sure if this is strictly correct, but it works for our
5718         purposes.
5719         
5720         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
5721         bother doing anything.
5723 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
5725         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
5726         early version of StatusStrip.  Not responsible for eaten
5727         application or firstborn children.
5729 2006-11-06  Chris Toshok  <toshok@ximian.com>
5731         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
5732         call GetTabRect with a -1 index.  Fixes #79847.
5734 2006-11-06  Jackson Harper  <jackson@ximian.com>
5736         * TreeNodeCollection.cs: Update scrollbars after clearing.
5738 2006-11-06  Chris Toshok  <toshok@ximian.com>
5740         * NumericUpDown.cs: fix the ToString method for some unit test
5741         love.
5743 2006-11-06  Chris Toshok  <toshok@ximian.com>
5745         * PropertyGrid.cs:
5746         - set the initial SelectedGridItem if we can.
5748         - Exclude non-mergable properties only if we're merging > 1
5749         object.  Merging 1 object isn't really merging, obviously.
5751         - Handle PropertySort.NoSort just like Alphabetical, which is
5752         wrong of course, but at least gets things on the screen.
5753         
5754         * PropertyGridView.cs:
5755         - Add method "FindFirstItem" which finds the first property grid
5756         item, so we can select it by default.
5758         - make use of GridEntry.CanResetValue.
5760         - Don't call RedrawBelowItemOnExpansion here anymore, the
5761         individual GridEntry's will do that.
5763         - Remove the ITypeDescriptorContextImpl internal class.
5764         
5765         * GridEntry.cs:
5766         - this class needs to implement ITypeDescriptorContext, as it's
5767         what MS's PropertyDescriptorGridEntry does, which means we can
5768         remove the ITypeDescriptorContextImpl internal class from
5769         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
5771         - keep a reference to our PropertyGridView, and move the call to
5772         RedrawBelowItemOnExpansion here from PGV.  This means
5773         programmaticly setting Expanded actually does something visible.
5775         - add a CanResetValue() function which takes into account our
5776         possibly multiple "selected_objects" in the merged case.  Shifting
5777         PropertyGridView to use this method fixes another unreported
5778         crasher found running the test for #79829.
5780         - when Top or Bounds is updated, make sure the PropertyGridTextBox
5781         is updated to reflect this.
5783         * CategoryGridEntry.cs: the ctor takes the PGV now.
5784         
5785 2006-11-06  Jackson Harper  <jackson@ximian.com>
5787         * TextControl.cs: These are 1 based.
5788         * TextBoxBase.cs: When setting the selected text, don't change the
5789         selected text tags, this is done by ReplaceText, just position the
5790         cursor at the end of the new text.
5792 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
5794         * ListView.cs: Allow label edit only when, when LabelEdit is
5795           set to true.
5797 2006-11-06  Jackson Harper  <jackson@ximian.com>
5799         * TextControl.cs: If a suitable wrapping position isn't found,
5800         just wrap right in the middle of a word.
5802 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
5804         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
5805           bug #79820.
5807 2006-11-06  Jackson Harper  <jackson@ximian.com>
5809         * TreeView.cs: Can't use the VisibleCount property when setting
5810         scrollbar heights, because this doesn't take into account whether
5811         or not the horz scrollbar just came visible.
5813 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
5815         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
5816         activated.  Fixes #79369, #79832.
5818 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
5820         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
5821           had to remove support for links that point to a directory. FileInfo
5822           returns no usefull information (means, the directory they point to)
5823           for such links. Replaced some empty string ("") with String.Empty.
5825 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
5827         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
5828         NullReferenceException when attempting to remove node that is not in
5829         collection. Throw NullReferenceException when null is passed to 
5830         Remove. Allow first element of the collection to be removed. Fixes
5831         bug #79831.  In GetEnumerator ().Current return null if positioned 
5832         before the first element of the collection. In GetEnumerator ().Reset,
5833         position before first element of the collection.
5835 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
5837         * PropertyGrid.cs: To match MS, remove default title and description
5838         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
5839         buttons.
5841 2006-11-04  Chris Toshok  <toshok@ximian.com>
5843         * Theme.cs: add a Clamp method, just for kicks.
5845         * ThemeWin32Classic.cs: clamp all color components to [0..255].
5847 2006-11-04  Chris Toshok  <toshok@ximian.com>
5849         * Form.cs: if the form isn't visible, Close() does nothing.
5851 2006-11-03  Chris Toshok  <toshok@ximian.com>
5853         * Form.cs (Close): if the form is modal, don't Dispose of it, only
5854         Hide it.
5855         (WndProc): don't Dispose after handling the WM_CLOSE message.
5857         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
5858         them as such, instead of using casts from Control to Form.  Also,
5859         don't Dispose of the modal dialog when we fall out of the loop -
5860         Close() it instead.
5862         fixes bug #79813.
5864 2006-11-03  Chris Toshok  <toshok@ximian.com>
5866         * Control.cs (Dispose): only go through the dispose thing if we're
5867         @disposing, and we haven't already been disposed.  Fixes bug
5868         #79814.
5870         * Form.cs: no reason to call "base.Dispose()" here instead of
5871         "Dispose()".
5873 2006-11-03  Mike Kestner  <mkestner@novell.com>
5875         * ComboBox.cs : use ToString instead of casts in AddItem for
5876         sorting functionality.  Fixes #79812.
5878 2006-11-03  Chris Toshok  <toshok@ximian.com>
5880         * Application.cs: pave the way for actually using the thread
5881         exception dialog.  it's ifdefed out at the moment.
5883 2006-11-03  Chris Toshok  <toshok@ximian.com>
5885         * ThreadExceptionDialog.cs: until we get a better layout, actually
5886         hide the details textbox and label when we shouldn't see them.
5888 2006-11-03  Jackson Harper  <jackson@ximian.com>
5890         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
5891         multiline textboxes anymore.  This method also determines the
5892         width/height of a textboxes canvas area.
5893         - Sorta a revert of the last patch.  For multiline just position
5894         the controls, then bail.  This way the scrollbar width won't be
5895         altered.
5897 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
5899         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
5900         it dont need.  Fixes #79537.
5902 2006-11-02  Jackson Harper  <jackson@ximian.com>
5904         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
5905         send the status after firing the DndOver event.
5907 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5909         * TrackBar.cs: Now orientation only switches height / width if
5910         the control's handle is created (Win32 does it like this). Also 
5911         fixed a typo in ToString() for a test to pass, changed the 
5912         exception thrown in set_LargeChange and set_SmallChange to 
5913         match Win32 behaviour, and added TrackBar tests to the unit 
5914         tests.
5916 2006-11-02  Chris Toshok  <toshok@ximian.com>
5918         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
5919         not _NET_WM_STATE_NO_TASKBAR.
5921 2006-11-02  Jackson Harper  <jackson@ximian.com>
5923         * TextControl.cs: Increment count by one, since in the update view
5924         count - 1 is used.
5926 2006-11-02  Jackson Harper  <jackson@ximian.com>
5928         * TextBoxBase.cs: Use client rectangle not bounds for checking if
5929         the mouse is in the client rectangle (duh).
5931 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5932         
5933         * TrackBar.cs: Fixed trackbar jumping around when clicking
5934         on it - the trackbar was not detecting correctly at which
5935         side of the thumb the click was done. (fixes #79718)
5937 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
5939         * ListBox.cs: scroll visible area when change SelectedIndex to
5940         a non visible area.  Fixes #79481.
5942 2006-11-01  Jackson Harper  <jackson@ximian.com>
5944         * TextControl.cs: When replacing the selection move the selection
5945         start/end/anchor to the end of the new text.
5947 2006-11-01  Jackson Harper  <jackson@ximian.com>
5949         * XplatUIWin32.cs: When setting the parent change the controls
5950         visibility to it's visibility flag, not to it's old parents
5951         visibility (.Visible walks the parent chain).
5953 2006-11-01  Chris Toshok  <toshok@ximian.com>
5955         * XplatUIX11.cs: revert the #79790 fix, as the simple.
5956         XSetTransientForHint fix breaks paint .net's tool windows.  more
5957         work needed for that one.
5959 2006-11-01  Chris Toshok  <toshok@ximian.com>
5961         * ScrollBar.cs: throw ArgumentException instead of Exception in
5962         LargeChange/SmallChange setters.  fixes unit tests.
5964 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
5966         * ContainerControl.cs: reverted rev.67183 (which was itself
5967         a reversion of rev.66853... eh).
5968         
5969         * Control.cs: Fixes Reflector hang by changing Focus() call
5970         to what it was before rev.66643 (calling Select() here sets 
5971         ActiveControl, which in some situations calls back Focus and 
5972         eventually does a stack overflow). Temp fix.    
5973         Changes to GetNextControl() to not look for children to select when
5974         parent cannot be selectable (so it looks for siblings instead)  
5975         
5976 2006-10-31  Mike Kestner  <mkestner@novell.com>
5978         * CheckedListBox.cs : off by one error in returned index from
5979         ObjectCollection.Add.  Fixes #79758.
5981 2006-10-31  Chris Toshok  <toshok@ximian.com>
5983         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
5984         calls for the textbox/spinner, to keep from recursing to the point
5985         where we crash.  Fixes #79760.
5987 2006-10-31  Chris Toshok  <toshok@ximian.com>
5989         * ListControl.cs (set_SelectedValue): don't throw exceptions on
5990         null/"" value, just return.  matches ms's behavior and fixes some
5991         failing tests.
5993 2006-10-31  Chris Toshok  <toshok@ximian.com>
5995         * Control.cs (set_Capture): make a logic a little easier to
5996         follow.
5998         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
5999         if it's being destroyed.  A necessary fix surely, but a bandaid
6000         also, to fix the stuck capture problem in bug #78413.
6002 2006-10-31  Chris Toshok  <toshok@ximian.com>
6004         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
6005         convention of clearing hwnd.ClientRect when we set the
6006         width/height (so it'll be recalculated by Hwnd).
6008 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
6010         * ContainerControl.cs: reversed Contains check from
6011         ActiveControl due to hanging problems. This fix
6012         partly regresses #79667 (button does not have
6013         initial focus), so this might be a symptom for 
6014         a larger parenting problem (set_ActiveControl
6015         is being called but the child control does
6016         not have the parent set yet?)   
6017         
6018 2006-10-31  Mike Kestner  <mkestner@novell.com>
6020         * MenuAPI.cs : fix keynav when menu is click activated.
6022 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
6024         * ToolStrip*: Version 0.2.
6026         * MenuStrip.cs: Version 0.1.
6028         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
6030 2006-10-30  Chris Toshok  <toshok@ximian.com>
6032         [ fixes the oversized notify icon issue in bug #79745 ]
6033         
6034         * NotifyIcon.cs: scale the icon down to the size we're given by
6035         the XplatUI layer (this would be faster if we did it once instead
6036         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
6037         since it's never invoked.
6039         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
6040         pixels high by default, so let's hardcode our systray icon to that
6041         size.  The SYSTEM_TRAY protocol should really have a way for
6042         client apps to query for the correct icon size.. but oh well.  A
6043         couple of patches to deal with the screwy client_window ==
6044         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
6045         instance, and also make sure we don't XSelectInput twice).
6047 2006-10-30  Chris Toshok  <toshok@ximian.com>
6049         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
6050         recreating forms.  Control recreation is the bane of my existence.
6051         Fix it in a way that keeps everyone happy.
6053 2006-10-30  Chris Toshok  <toshok@ximian.com>
6055         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
6056         just non-CHILD ones.  otherwise sometimes scrollbars end up with
6057         client_windows not being resized to the proper size (ReportBuilder
6058         shows this extremely well).
6060 2006-10-30  Chris Toshok  <toshok@ximian.com>
6062         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
6063         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
6064         showing up in the gnome taskbar.  Fixes bug #79790.
6066 2006-10-30  Chris Toshok  <toshok@ximian.com>
6068         * ApplicationContext.cs: guard against a NRE.
6070         * Application.cs: null out the old MainForm for the context, so we
6071         don't try to use it again once it's disposed.  Fixes bug #79783.
6073 2006-10-30  Chris Toshok  <toshok@ximian.com>
6075         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
6076         BindingContext, set the data source directly, otherwise do the
6077         lazy approach - the actual ListManager will be created when we get
6078         a BindingContext. Fixes bug #79700.
6080 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
6082         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
6083           XplatUIX11.cs: Remove old 2 parameter SetVisible.
6085         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
6087 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
6089         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
6090         of SetVisible that allows a window to be shown, but not activated.
6091         This is needed on Windows for MenuStrip, and can probably be used
6092         with MainMenu and ComboBox to fix the focus stealing issues on
6093         Windows.
6095         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
6097 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
6099         * PictureBox.cs: Fix the output of the ToString method.
6101 2006-10-29  Chris Toshok  <toshok@ximian.com>
6103         * Control.cs (get_TopLevelControl): fix bug #79781.
6105 2006-10-29  Chris Toshok  <toshok@ximian.com>
6107         * ListControl.cs (set_DataSource): throw Exception here, not
6108         ArgumentException, to match MS behavior.
6110 2006-10-29  Chris Toshok  <toshok@ximian.com>
6112         * Form.cs: remove the try-catch's around calls to GetWindowState.
6113         We can just check the return value.
6115         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
6116         Instead return -1.
6118         * XplatUI.cs: Add note about additional return value for
6119         GetWindowState.
6121 2006-10-29  Chris Toshok  <toshok@ximian.com>
6123         * Control.cs (CreateHandle): when we create our handle, we also
6124         create the handles of our child controls.  Fixes one of the
6125         Control unit tests (CH11).
6127 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
6129         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
6131 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
6133         * ThemeClearlooks.cs: A little speedup.
6135 2006-10-27  Chris Toshok  <toshok@ximian.com>
6137         * Control.cs: implement Control.FromChildHandle in a way that
6138         matches the docs (and fixes the failed test.)
6140 2006-10-27  Chris Toshok  <toshok@ximian.com>
6142         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
6143         comments).
6145         * DataGrid.cs: implement ResetForeColor such that the tests
6146         succeed.
6147         
6148 2006-10-27  Chris Toshok  <toshok@ximian.com>
6150         * ToolBarButton.cs: setting text/tooltiptext to null results in it
6151         being set to "".  Fixes bug #79759.
6153 2006-10-27  Jackson Harper  <jackson@ximian.com>
6155         * TextControl.cs: We need to clear the entire selection area when
6156         setting the start, otherwise multiline selections are still
6157         visible.
6159 2006-10-26  Chris Toshok  <toshok@ximian.com>
6161         * PropertyGridView.cs: 
6163         - ifdef all the code specific to the double
6164         buffer case, and provide some alternatives in the non-doublebuffer
6165         code, which makes heavy use of XplatUI.ScrollWindow to move things
6166         around without having to invalidate (and cause flicker).  There
6167         are still some drawing problems in the non-doublebuffered case, so
6168         DOUBLEBUFFER is defined by default.
6170         - Fix the way dropdowns are handled.  now we explicitly watch for
6171         the events which might cause the dropdown to close, and break out
6172         of the nested event loop there.  This gets rid of all Capture
6173         code, at the expense of the Msg special casing.  Seems to work,
6174         though, and fixes bug #79743.
6176 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
6177         * Control.cs: SetIsRecreating now recreates implicitly added
6178         child controls as well. Finally fixes #79629. The flag passed to 
6179         SetIsRecreating has also been removed since it wasn't used.
6180         
6181 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6183         * PageSetupDialog.cs: Clean some code, fix some bits, 
6184         add some checks, and add a printer sub-dialog.
6186 2006-10-26  Chris Toshok  <toshok@ximian.com>
6188         * PropertyGrid.cs: make set_SelectedObject call
6189         set_SelectedObjects, and move the duplicate logic to the
6190         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
6192         * PropertyGridView.cs: hide the textbox when we get a
6193         SelectedObjectsChanged event.
6195         Fixes bug #79748.
6197 2006-10-26  Chris Toshok  <toshok@ximian.com>
6199         * PropertyGridView.cs: deal with the type converter not supporting
6200         GetStandardValues() or GetStandardValues() returning null, which
6201         is does in the default case.  Fixes #79742.
6203 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
6205         * CheckedListBox.cs: nunit no longer crashes when selecting 
6206         Project/Edit menu option
6207         
6208 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
6210         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
6211         is no menu selected. fixes #79739
6213 2006-10-25  Chris Toshok  <toshok@ximian.com>
6215         * PropertyGridView.cs: factor out the splitter invalidation code
6216         into the SplitterPercent setter, and for kicks implement the
6217         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
6218         amount in either direction.
6220 2006-10-25  Chris Toshok  <toshok@ximian.com>
6222         * PropertyGridView.cs: do some cleanup of the brush used to draw
6223         text - read only fields should be grayed out.  not sure how to do
6224         this with the textbox, though.  but the textbox's should also be
6225         readonly now at least.  Also, hide/show the textbox when resizing
6226         the control.
6227         
6228         * CursorConverter.cs: use System.Reflection when getting the
6229         properties of Cursors, as TypeDescriptor.GetProperties isn't
6230         returning static properties.
6232 2006-10-25  Chris Toshok  <toshok@ximian.com>
6234         * PropertyGridView.cs: factor out the up/down handling, and reuse
6235         it for page up/down.  also add End/Home support.
6237 2006-10-25  Chris Toshok  <toshok@ximian.com>
6239         * PropertyGridView.cs:
6241         - ensure the selected grid item is visible in the scrolled area,
6242         fixes bug #79572.
6244         - fix Keys.Down handling when you're on the last item in the
6245         propertygrid.
6247 2006-10-25  Mike Kestner  <mkestner@novell.com>
6249         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
6250         clicks too.  Fixes #79725.
6252 2006-10-24  Chris Toshok  <toshok@ximian.com>
6254         * PropertyGrid.cs: use property.Converter instead of
6255         TypeDescriptor.GetConverter(property.PropertyType), so we catch
6256         TypeConverters declared on the property as well as on the
6257         PropertyType.  Fixes bug #79678.
6259 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
6261         * MimeIcon.cs, Mime.cs:
6262           Fallback to the default platform handler if no shared mime info
6263           stuff exists (fixes #79693).
6265 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
6266         * ContainerControl.cs: Incorrect contains check in ActiveControl 
6267         from previous fix (duh).
6269 2006-10-20  Chris Toshok  <toshok@ximian.com>
6271         * PropertyGridView.cs: the dropdown should be MIN(number of items
6272         in list, 15).  Fixes #79551.
6274 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
6275         Fixes #79384, #79394, #79652, #79667
6276         * Application.cs: 
6277         
6278         - Modal windows are now destroyed in the proper order for windows
6279         
6280         * ContainerControl.cs:
6281         
6282         - ActiveControl setter has more conditions on when to return:
6283                 - if we're reselecting the active control, but it actually
6284                 didn't have focus (window hidden or some such), it runs
6285                 - if the active control being selected doesn't actually 
6286                 exist in the container, it returns
6287         
6288         * Form.cs
6289         
6290         - The ShowDialog now gets the current form as the owner when
6291         invoking without parameters, and correctly activates the owner 
6292         when returning
6293         
6294         * MessageBox.cs
6295         
6296         - MessageBox now catches the Escape key to exit
6298 2006-10-20  Chris Toshok  <toshok@ximian.com>
6300         * PropertyGridView.cs: fix a number of issues (bug #78565, and
6301         most of bug #79676):
6303         - you can navigate around the property grid with the arrow keys.
6305         - the dropdown is sized properly when the pg has a vertical
6306         scrollbar.
6308         - fix the indentation for subentries, and properly select the
6309         entire label rect.
6311         - fix the gray bar's drawing (only draw it to the last element,
6312         not for the height of the control.  Also make sure we draw that
6313         last horizontal grid line.
6315         - use the same mechanism the datagrid uses wrt the editing textbox
6316         when scrolling/resizing/etc.  Namely, we hide it first, do the
6317         operation, then show it again (if it's still visible).
6318         
6319         - aggressively remove a lot of unnecessary refreshes (and also
6320         calls to Invalidate(). call more limited variants, and only redraw
6321         what we need.)
6322         
6323         * PropertyGrid.cs:
6325         - when we're populating the merged collection, fill in the UI
6326         parent with either the passed in item, or the category item we
6327         create.
6329         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
6331         * GridItem.cs: drop some fully qualified names.
6332         
6333         * GridEntry.cs: add a "UIParent", which is basically the parent
6334         treenode.
6336         * GridItemCollection.cs: add an IndexOf method.
6338 2006-10-20  Mike Kestner  <mkestner@novell.com>
6340         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
6341         a working win32 NC invalidation mechanism, we can't invalidate
6342         menus.  [Fixes #79705]
6344 2006-10-20  Mike Kestner  <mkestner@novell.com>
6346         * ListBox.cs : don't update the VScrollbar if the list is empty,
6347         just hide it.  [Fixes #79692]
6349 2006-10-20  Jackson Harper  <jackson@ximian.com>
6351         * RichTextBox.cs: Handle some special chars better, and don't skip
6352         the entire group when we encounter a special char that we don't
6353         handle correctly.
6355 2006-10-18  Chris Toshok  <toshok@ximian.com>
6357         * PropertyGridView.cs: address a number of issues from bug #79676,
6358         mostly of the cosmetic variety.
6360         - The highlight rectangle for indented items not extends all the
6361         way to the left.
6363         - Indented items aren't indented so much.
6365         - the dropdown is properly sized width-wise if the pg has a
6366         vertical scrollbar.
6368 2006-10-18  Chris Toshok  <toshok@ximian.com>
6370         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
6371         systray stuff is rather convoluted to begin with.
6373         systray icons are a single window for some reason (that I haven't
6374         figured out yet), and for them, client_window == whole_window.
6375         Given the way the tests are structured elsewhere to determine
6376         which paints are pending (client vs. nc), that situation will
6377         always yield PAINT, not NCPAINT.  So, if we have a pending
6378         nc_expose and no pending expose, remove the hwnd from the paint
6379         queue, and also set nc_expose_pending to false, to keep us from
6380         blocking further expose's adding the hwnd to the paint queue.
6382         phew.  like i said, a rather convoluted change.  Fixes the
6383         notifyicon repaint issues in bug #79645.
6385 2006-10-18  Chris Toshok  <toshok@ximian.com>
6387         * Form.cs: when getting the backcolor of the form, don't get
6388         base.BackColor, as this allows parents to influence the background
6389         color.  This breaks mdi forms.  Instead, if the background_color
6390         is empty, return the default.
6392 2006-10-18  Chris Toshok  <toshok@ximian.com>
6394         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
6395         to being private instead of internal static.
6397         * Control.cs: remove all the stupid ParentWaitingOnRecreation
6398         crap, it wasn't working for more deeply nested controls anyway,
6399         and we already have the is_recreating flag - use that instead.
6400         Before calling DestroyHandle in RecreateHandle, recurse through
6401         the control tree setting it to true.  this returns the recreate
6402         code to much of its original simplicity, while now guaranteeing we
6403         actually recreate everything we're supposed to.  This change gets
6404         fyireporting actually showing mdi children.
6406 2006-10-17  Chris Toshok  <toshok@ximian.com>
6408         * Form.cs: remove some debug spew, and collapse some duplicate
6409         code at the end of SetClientSizeCore.
6411         * XplatUIX11.cs: 
6412         - add some more debug spew here too wrt Destroy handling.
6413         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
6414         in Control's handling of WM_DESTROY.
6415         - Remove the handling of zombie window DestroyNotifies from the
6416         event loop - we don't need it.  Now the only DestroyNotifies we
6417         actually handle are ones generated by X.
6418         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
6419         match gtk's (functioning) handling of this. This keep metacity
6420         from leaving droppings in the form of wm borders with no window
6421         contents all over the place.
6423         * Control.cs:
6424         - add a bunch of debug spew wrt control recreation.
6425         - fix a bug where we weren't tracking Visible properly on
6426         recreated hwnds.
6427         - fixed the WM_PAINT double buffer handling to support re-entrant
6428         calls (yes, i know it's gross, but it's happening to us).
6430 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
6431         * ThemeWin32Classic.cs: changed drawing of selected days
6432         to make them look better.
6434 2006-10-16  Chris Toshok  <toshok@ximian.com>
6436         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
6437         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
6439         * XplatUIX11.cs: move away from using hwnd.client_dc and
6440         hwnd.non_client_dc and on to a stack of dc's (and in window's
6441         case, PAINTSTRUCT's), so we can deal with nested Paint calls
6442         without puking or not disposing of Graphics objects.
6444         * XplatUIOSX.cs: same.
6446         * XplatUIWin32.cs: same.
6448 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
6450         * FileDialog.cs: Don't call on_directory_changed inside
6451           OnSelectedIndexChanged (it changes the SelectedIndex too).
6452           Instead move it to OnSelectionChangeCommitted.
6454 2006-10-13  Chris Toshok  <toshok@ximian.com>
6456         * XplatUIX11.cs: more Destroy work.  the current code does the
6457         following things, in order:
6459         1. Enumerates all handles of all controls at or below the one
6460         being destroyed, in pre-order.  As it is doing this, it marks the
6461         handles as zombie and clears all references to them.
6462         
6463         2. calls XDestroyWindow on the window passed in.
6465         3. SendMessage's WM_DESTROY to all he handles in the accumulated
6466         list.
6468 2006-10-13  Chris Toshok  <toshok@ximian.com>
6470         * XplatUIX11.cs: set hwnd.zombie to true before calling
6471         SendMessage (WM_DESTROY).  this keeps us from marking the new
6472         window a zombie, and also keeps us from calling sendmessage at
6473         all.
6475 2006-10-13  Jackson Harper  <jackson@ximian.com>
6477         * TextControl.cs: Do not show the caret and selection at the same
6478         time.  Reduces ugliness by 35%.
6480 2006-10-13  Chris Toshok  <toshok@ximian.com>
6482         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
6483         zombie after we do the recursive call, so we actually do call
6484         SendMessage on the children controls.
6485         (GetMessage): if we find a pending paint event for a zombie hwnd,
6486         remove the hwnd from the paint queue, or else it will always be
6487         there (and we'll effectively loop infinitely)
6489 2006-10-13  Mike Kestner  <mkestner@novell.com>
6491         * MenuItem.cs : add Selected format under keynav too.
6492         Fixes #79528.
6494 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
6496         * PropertyGrid.cs: Fixed some NRE's and small difference between our
6497         implementation and that of MS.
6499 2006-10-13  Chris Toshok  <toshok@ximian.com>
6501         * Control.cs (OnInvalidated) only futz with the invalid_region if
6502         the control is double buffered.  this fixes the apparent hang in
6503         the ListView unit tests.  Someone needs to make the
6504         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
6506 2006-10-13  Chris Toshok  <toshok@ximian.com>
6508         * PropertyGridView.cs:
6510         - do a little refactoring so that only one place calls
6511         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
6512         else call that.  Also make it Refresh, since there are redraw bugs
6513         otherwise (we should take a look at that...)
6515         - do a little more refactoring work to share the body of code
6516         involved with the drop down.  it was duplicated in the code
6517         dealing with the listbox handling and in the code dealing with the
6518         UITypeEditors.
6520         - add a Capture to the dropdown form's control once it's
6521         displayed, and add a MouseDown handler that checks to make sure
6522         the position is inside the control.  If it's not, close the
6523         dropdown.  This fixes #78190.
6525         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
6526         if the value is different than the initial value.
6527         
6528 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
6530         * Control.cs: see #78650
6531         - Fixed GetNextControl for several cases:
6532                 - Changed FindFlatForward to return 
6533                 correct sibling control when more than one
6534                 control has same TabIndex as the currently 
6535                 focused one.
6536                 - Changed FindFlatBackward to loop children
6537                 from last to first and apply same logic as in
6538                 FindFlatForward
6539                 - Changed FindControlForward to search for
6540                 children when control is not a container
6541                 but has children, or search for siblings if
6542                 control is a container...
6543                 - Changed FindControlBackward   to continue
6544                 searching for child controls when hitting 
6545                 Panel-like parents
6546                 
6547         - Fixed Focus method to update ActiveControl
6548         (FocusTest.FocusSetsActive failure)
6549         
6550         * TabControl.cs:
6551         - Focus rectangle now refreshes when gaining
6552         or losing focus
6553         - Removed grab for Tab key on IsInputKey that 
6554         was keeping tab navigation from working (#78650)
6556 2006-10-13  Chris Toshok  <toshok@ximian.com>
6558         * PropertyGridView.cs:
6559         - Rewrite SetPropertyValue to loop over SelectedGridItem's
6560         SelectedObjects.
6562         - Deal with GridItem.Value == null a few places.
6564         * PropertyGrid.cs: 
6565         - replace the PopulateGridItemCollection with a pair of methods
6566         which compute the intersection of all the properties in the
6567         SelectedObjects array.  Fixes #79615.
6569         - Throw ArgumentException from set_SelectedObjects if there's a
6570         null in the array.
6572         - Add GetTarget method which can be used to traverse up the
6573         GridItem.Parent chain.  It depends on the assumption that
6574         selected_objects for different GridEntries are always in the same
6575         order (a safe assumption).  Use this method and loop over all the
6576         selected objects in the entry when calling RemoveValueChanged and
6577         AddValueChanged.
6578         
6579         * GridEntry.cs: Make this handle multiple selected objects.
6580         .Value returns null if not all the selected objects share the same
6581         value.
6583 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
6584         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
6585           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
6586           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
6587           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
6588           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
6589         add additional functionality.
6591 2006-10-12  Mike Kestner  <mkestner@novell.com>
6593         * ErrorProvider.cs : new ToolTipWindow ctor sig.
6594         * HelpProvider.cs : new ToolTipWindow ctor sig.
6595         * ToolTip.cs : remove ToolTip param from Window sig since it is
6596         not used.
6597         * ToolBar.cs : add tooltip support.  Fixes #79565.
6599 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
6601         * ComboBox.cs: move the events in set_SelectedIndex to 
6602         after the call to HighlightIndex in order to avoid 
6603         possible recursion and subsequent problems with the call
6604         to HighlightIndex and include a range check in 
6605         set_HighlightIndex. Fixes #79588
6606         
6607 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
6609         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
6610         to ui thread's settings instead of sunday. 
6611         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
6613 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
6615         * DateTimePicker.cs
6616         * MonthCalendar.cs
6617         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
6618         and implement missing functionality (selecting different parts 
6619         of the date and edit them individually with the keyboard).
6620         
6621 2006-10-11  Chris Toshok  <toshok@ximian.com>
6623         * Control.cs (OnInvalidated): fix NRE relating to last change.
6625 2006-10-11  Chris Toshok  <toshok@ximian.com>
6627         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
6628         atoms in _NET_WM_STATE here if the window is maximized.  We need
6629         to do this because we're *replacing* the existing _NET_WM_STATE
6630         property, so those atoms will be lost otherwise, and any further
6631         call to GetWindowState will return Normal for a window which is
6632         actually maximized.  Fixes #79338.
6634 2006-10-11  Jackson Harper  <jackson@ximian.com>
6636         * TextControl.cs: Special case for setting selection end to
6637         selection start, we basically kill the anchor.
6638         - some todo comments.
6640 2006-10-11  Chris Toshok  <toshok@ximian.com>
6642         * Control.cs: switch to using an "invalid_region" to track which
6643         parts of the image buffer need updating.  This is more code than
6644         the simple fix from r66532.  That version just attempted to always
6645         fill the entire buffer on redraw, which turns out to be
6646         inefficient when invalidating small rectangles.  This version
6647         simply adds the invalid rectangle to the invalid region.  When we
6648         get any WM_PAINT message we see if it can be filled using the
6649         image buffer, and if it can't (if the paint event's clip rectangle
6650         is visible in the invalid region) we first fill the image buffer.
6651         So, the image buffer is still a cache, we just fill it lazily.
6653         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
6654         need it any longer.
6656 2006-10-11  Chris Toshok  <toshok@ximian.com>
6658         * XplatUIX11.cs (SetWindowPos): we need to update both position as
6659         well as size after calling XMoveResizeWindow.  This keeps us from
6660         ignoring future SetWindowPos calls.  Fixes the disappearing
6661         DateTimePicker in the ToolBarDockExample from bug #72499.
6663 2006-10-11  Chris Toshok  <toshok@ximian.com>
6665         * TextBoxBase.cs: reorder things a bit when it comes to
6666         resizing-causing-recalculation.  we were recalculating the
6667         document when our position was changed, which shouldn't happen.
6668         We only care about size changes.  Clear up some more redundant
6669         recalculation calls while I'm at it.  This makes the toolbar dock
6670         example snappy when you're just dragging toolbars around (since it
6671         causes a relayout whenever you move one.)
6673 2006-10-11  Chris Toshok  <toshok@ximian.com>
6675         * ToolBarButton.cs (get_Rectangle): this only returns
6676         Rectangle.Empty if Visible == false, or Parent == null.
6677         Parent.Visible doesn't matter.
6679 2006-10-10  Chris Toshok  <toshok@ximian.com>
6681         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
6682         by .net 1.1, so switch to an internal method instead.
6684 2006-10-10  Chris Toshok  <toshok@ximian.com>
6686         * Control.cs (WM_PAINT): when a control is double buffered we draw
6687         initially to the ImageBuffer and then copy from there.  But when a
6688         parent control which has child controls is double buffered, the
6689         initial drawing doesn't encompass the entire ClientRectangle of
6690         the parent control, so we end up with uninitialized bits (this is
6691         easily seen by dragging the top toolbar in
6692         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
6693         manually set the ClipRectangle of the paint_event (only the one we
6694         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
6695         of the nastiness in bug #72499.
6697         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
6698         which we use in Control.cs's WM_PAINT handling.
6700 2006-10-10  Jackson Harper  <jackson@ximian.com>
6702         * TextBoxBase.cs: Finish off the autoscrolling stuff.
6704 2006-10-10  Chris Toshok  <toshok@ximian.com>
6706         * Cursor.cs: Apply a slightly different patch to the one suggested
6707         in #79609.
6709 2006-10-10  Jackson Harper  <jackson@ximian.com>
6711         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
6712         not the parent form.
6713         * TextControl.cs: use difference in old line count vs new count to
6714         calculate how many lines were added, this takes into account soft
6715         line breaks properly.
6717 2006-10-10  Chris Toshok  <toshok@ximian.com>
6719         * LinkLabel.cs: don't call MeasureCharacterRanges against a
6720         rectangle located at 0,0 and the size of the text.  Use
6721         ClientRectangle instead.  This fixes rendering of non-left aligned
6722         link labels.
6724 2006-10-10  Jackson Harper  <jackson@ximian.com>
6726         * TextBoxBase.cs: When we set the selection start position the
6727         caret.
6728         * TextControl.cs: Need to update the caret when we decrement it to
6729         zero.
6730         - Make sure that the selection_visible flag gets reset to false if
6731         the selection isn't visible.  Before this you could get it set to
6732         visible by changing the selection start, then changing the end to
6733         equal the start.
6735 2006-10-09  Jackson Harper  <jackson@ximian.com>
6737         * TreeView.cs: Don't update scrollbars when we aren't visible.
6738         * TreeNodeCollection.cs: Only need to update scrollbars if being
6739         added to an expanded visible node or the root node.
6741 2006-10-09  Chris Toshok  <toshok@ximian.com>
6743         * XplatUIX11.cs (SendMessage): fix NRE.
6745 2006-10-09  Jackson Harper  <jackson@ximian.com>
6747         * TextBoxBase.cs: Implement horizontal autoscrolling.
6748         * TextControl.cs: Add a movement types that allows moving forward
6749         and backwards without wrapping.
6751 2006-10-09  Mike Kestner  <mkestner@novell.com>
6753         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
6754         with focus "expansion" of labels.  Fixes #79532 and then some.
6755         * ThemeWin32Classic.cs : add LineLimit to ListView label format
6756         when wrapping.
6758 2006-10-09  Jackson Harper  <jackson@ximian.com>
6760         * TextBoxBase.cs: Set the default max values to MaxValue since
6761         we use the scrollbar for autoscrolling and the default value is
6762         100.  If we don't do this the caret won't keep up with typing
6763         after about 18 characters.
6764         * TextControl.cs: Make sure the selection is offset by the
6765         viewport x.  This fixes selection when using auto scrolling.
6767 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
6768         
6769         * Form.cs: The active control should be selected after the 
6770         OnLoad so that any child control initialization that affects
6771         the selection is done. Fixes #79406
6773 2006-10-06  Chris Toshok  <toshok@ximian.com>
6775         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
6776         to have no evil effects.
6778         - Stop selecting StructureNotifyMask on non-toplevel windows.
6780           The only way children should be resized is by using the SWF api,
6781           and we already send WM_WINDOWPOSCHANGED messages in those cases.
6782           Toplevel windows can be interacted with via the window manager,
6783           and so we keep the input mask there.
6785           The other event StructureNotifyMask gives us (that we care
6786           about) is DestroyNotify.  The code is already structured such
6787           that it assumes we won't be getting a DestroyNotify event for
6788           the window we pass to XDestroyWindow (which is what
6789           StructureNotifyMask is supposed to guarantee.)  So, that code
6790           shouldn't be affected by this either.
6792         - Stop selecting VisibilityChangeMask altogether.
6794           We weren't doing anything with the resulting events anyway.
6795         
6796         This vastly reduces the number of X requests and events we see
6797         when resizing/laying out a large ui.
6799 2006-10-06  Chris Toshok  <toshok@ximian.com>
6801         * ScrollableControl.cs (DisplayRectangle): we need to take into
6802         account the DockPadding regardless of whether or not auto_scroll
6803         == true.  rework this slightly to this effect, and fix bug #79606,
6804         and part of #72499 (you can now see the drag handles and drag
6805         toolbars around).
6807 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
6809         * ListViewItem.cs: Collections of selected and checked items are now
6810         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
6811         we mark the collection "dirty".
6812         * ListView.cs: Marked collections readonly. Modified UpdateSelection
6813         to only clear SelectedItems when a new item is selected and MultiSelect
6814         is enabled. CheckedItems and SelectedItems now subscribe to Changed
6815         event of ListViewItemCollection, and mark its list dirty whenever
6816         that event is fire. This allows us to return selected/checked items 
6817         in the same order as they are in the Items collection. This matches
6818         the MS behavior.
6820 2006-10-06  Chris Toshok  <toshok@ximian.com>
6822         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
6823         right mouse clicks.  Fixes bug #79593.
6825 2006-10-06  Chris Toshok  <toshok@ximian.com>
6827         * Splitter.cs: doh, fix splitters that don't want to cancel the
6828         movement when you drag them.  Also, impose the limits on the
6829         values we send to the SplitterMovingEvent.  Fixes #79598.
6831 2006-10-06  Jackson Harper  <jackson@ximian.com>
6833         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
6834         since we use this for auto scrolling also.
6836 2006-10-05  Chris Toshok  <toshok@ximian.com>
6838         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
6839         beginning to think that most datagrid column types don't need this
6840         method.  Fixes bug #79392.
6842 2006-10-05  Chris Toshok  <toshok@ximian.com>
6844         * DataGrid.cs: move back to a more lazy scheme for creating the
6845         CurrencyManager, so we aren't updating it every time you set
6846         either DataSource or DataMember.  Also, don't call
6847         RecreateDataGridRows if the currency manager hasn't changed.
6849 2006-10-05  Chris Toshok  <toshok@ximian.com>
6851         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
6852         emitted, SelectedIndex should already be updated.  Fixes bug
6853         #78929.
6855 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
6857         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
6858           ToolStripTextBox.cs: Initial commit.
6859         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
6861 2006-10-05  Jackson Harper  <jackson@ximian.com>
6863         * TabControl.cs: We need to invalidate the tab control area when
6864         new ones are added (duh).
6866 2006-10-03  Chris Toshok  <toshok@ximian.com>
6868         * Form.cs (ProcessDialogKey): if the focused control is in this
6869         form and is a button, call its PerformClick method here.  Fixes
6870         #79534.
6872 2006-10-04  Jackson Harper  <jackson@ximian.com>
6874         * TabPage.cs: Ignore setting of Visible, and add an internal
6875         method for setting the controls visibility.  TabPage's Visible
6876         property is a little strange on MS, this seems to make us
6877         compatible, and fixes cases where people set all the tab pages to
6878         visible.
6879         * TabControl.cs: Use the new internal setting on tab pages
6880         visibility.
6882 2006-10-03  Mike Kestner  <mkestner@novell.com>
6884         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
6886 2006-10-03  Mike Kestner  <mkestner@novell.com>
6888         * ListView.cs : use is_visible instead of Visible to check if 
6889         scrollbars should be placed/sized.  Also some max_wrap_width
6890         love for LargeIcon view.  [Fixes #79533]
6892 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
6894         * TextControl.cs :
6895           Make set_TextAlign() do actually update the align. Fixed #78403.
6897 2006-10-03  Chris Toshok  <toshok@ximian.com>
6899         * DataGrid.cs: fix a crash when switching datasources if the
6900         vertical scrollbar is at someplace other than Value = 0.  Also,
6901         reduce the number of recalculation passes we do in SetDataSource
6902         from 2 to 1.
6904 2006-10-03  Jackson Harper  <jackson@ximian.com>
6906         * TextBoxBase.cs: Move the if value the same bail check up, we
6907         don't want to empty the document if it is already empty, this
6908         seems to severly mess up the caret.  TODO: I should probably fix
6909         the empty statement to update teh caret somehow.
6911 2006-10-03  Chris Toshok  <toshok@ximian.com>
6913         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
6914         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
6915         reflection, an internal row type, properties on said type, etc.)
6916         will work with our datagrid.  Fixes #79531.
6918 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
6920         * FileDialog.cs: Don't crash if a path is not accessible
6921           (System.UnauthorizedAccessException). Fixes #79569.
6922         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
6923           a ':' too. Return unknown icon for those paths/files.
6925 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
6927         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
6928         GetContainerControl returns null.
6930 2006-10-02  Chris Toshok  <toshok@ximian.com>
6932         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
6933         call to XGetWindowAttributes instead of "handle".  fixes an X
6934         error using notifyicon after the NotifyIconWindow to Form base
6935         class switch.
6937 2006-10-02  Chris Toshok  <toshok@ximian.com>
6939         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
6940         server grab and looping we need to do to get down to the most
6941         deeply nested child window.
6942         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
6943         QueryPointer again after the WarpPointer so we can generate a
6944         proper (fake) MotionNotify event to be enqueued in the destination
6945         window's queue.
6946         (GetCursorPos): call QueryPointer.
6948         Fixes #79556.
6950 2006-10-02  Jackson Harper  <jackson@ximian.com>
6952         * NotifyIcon.cs: Derive the notify icon from a form, so things
6953         like FindForm work on it.
6954         - Swallow the WM_CONTEXTMENU message, since that is generated on
6955         mouse down, and context menu is a mouse up kinda guy.  I believe
6956         the correct fix here is probably to make the notify icon entirely
6957         NC area, but this seems to work fine for anyone not manipulating
6958         WndProc.
6960 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
6962         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
6963           ToolStripItemCollection.cs, ToolStripLabel.cs,
6964           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
6965           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
6966           Initial implementation.
6967         * TextRenderer.cs: Provide padding to MeasureText.
6969 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
6971         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
6972         of ButtonBaseAccessibleObject. Fix bug #79552.
6974 2006-10-02  Jackson Harper  <jackson@ximian.com>
6976         * MdiWindowManager.cs: When maximizing use the containers client
6977         rect, not it's bounds, so nc area is accounted correctly.
6978         - Use the parent form's size for the menu position, since the
6979         client isn't always the full form size.
6981 2006-10-01  Chris Toshok  <toshok@ximian.com>
6983         * ScrollableControl.cs: make sure neither right_edge or
6984         bottom_edge are < 0, since they're used as LargeChange for the
6985         horiz/vert scrollbars respectively.  Fixes #79539.
6987 2006-10-01  Chris Toshok  <toshok@ximian.com>
6989         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
6990         the xplatuix11 code can cause us to destroy/recreate our handle.
6992         * XplatUIX11.cs
6993         (SystrayAdd):
6994         - this code can be invoked many times for the same Hwnd.  Make
6995           sure we only destroy the client window once (the first time this
6996           method is called).  This fixes bug #79544.
6997         - Remove the call to the improperly bound XSync.  why we had two
6998           bindings to this, I will never know, but this call resulted in
6999           events being discarded from the queue(!).
7000         - correct a misunderstanding of _XEMBED_INFO - the second atom is
7001           not our current state but the state we wish to be in.  So, 0 if
7002           we don't want to be mapped.  Change it to 1.
7003         (SystrayRemove): The XEMBED spec makes mention of the fact that
7004         gtk doesn't support the reparent of client windows away from the
7005         embedder.  Looking at gtksocket-x11.c seems to agree with this.
7006         The only avenue we have for removing systray icons is to destroy
7007         them.  We don't want the handle to go away for good, though, so
7008         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
7009         #79545.
7010         
7011 2006-10-01  Chris Toshok  <toshok@ximian.com>
7013         * Form.cs (WndProc): inline the native_enabled variable usage into
7014         the cases in which it's used.  Fixes #79536.
7016 2006-09-29  Mike Kestner  <mkestner@novell.com>
7018         * ListView.cs : toggle the selection state for ctrl clicks in 
7019         multiselect mode. [Fixes #79417]
7021 2006-09-29  Mike Kestner  <mkestner@novell.com>
7023         * ListView.cs : kill CanMultiSelect and refactor the selection
7024         code to support multiselection in the absence of mod keys. Steal
7025         arrow/home/end keys by overriding InternalPreProcessMessage to
7026         restore regressed keynav behavior.
7027         [Fixes #79416]
7029 2006-09-29  Jackson Harper  <jackson@ximian.com>
7031         * MdiClient.cs: Repaint the titlebars when the active window is
7032         changed.
7034 2006-09-29  Chris Toshok  <toshok@ximian.com>
7036         * Application.cs: when entering a runloop with a modal, make sure
7037         the hwnd is enabled.  Fixes #79480.
7039 2006-09-29  Chris Toshok  <toshok@ximian.com>
7041         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
7042         when ListManager.CanAddRows == false, bump us back one.
7044         * DataGridColumnStyle.cs (ParentReadOnly): remove the
7045         listmanager.CanAddRows check.  This makes ArrayLists uneditable
7046         using a datagrid, which is not right.
7047         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
7048         is an IEditable, but call property_descriptor.SetValue regardless.
7049         fixes #79435.
7051 2006-09-29  Chris Toshok  <toshok@ximian.com>
7053         * DataGridBoolColumn.cs: we need to test equality in the face of
7054         possible null values (as is the case with the default NullValue).
7055         This patch keeps us from crashing in that case.
7057 2006-09-29  Jackson Harper  <jackson@ximian.com>
7059         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
7060         here, since it will get called for every node collection in the
7061         tree. This is now done in the treeview once the sorting is
7062         finished.
7063         * TreeView.cs: Recalculate the visible order, and update the
7064         scrollbars after sorting, set the top nope to the root so that the
7065         recalc actually works.
7067 2006-09-29  Chris Toshok  <toshok@ximian.com>
7069         * LinkLabel.cs: more handling of the default link collection in
7070         the face of LinkArea manipulation.  The default link collection
7071         contains 1 element (start=0,length=-1).  If the user sets LinkArea
7072         to anything and the links collection is the default, clear it.
7073         Then only add the link if its nonempty.  Fixes #79518.
7075 2006-09-29  Chris Toshok  <toshok@ximian.com>
7077         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
7078         piece correctly when we hit a '\n'.  Fixes #79517.
7080 2006-09-29  Chris Toshok  <toshok@ximian.com>
7082         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
7083         change the binding of gdk_init_check to take two IntPtr's, and
7084         pass IntPtr.Zero for both of them.  Fixes #79520.
7086 2006-09-29  Mike Kestner  <mkestner@novell.com>
7088         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
7089         [Fixes #78779]
7091 2006-09-28  Jackson Harper  <jackson@ximian.com>
7093         * XplatUIX11.cs: When translating NC messages make sure we go from
7094         whole window to screen, not client window to screen.
7095         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
7096         method doesn't exist
7097         - Skip over controls that aren't forms when arranging.
7099 2006-09-28  Jackson Harper  <jackson@ximian.com>
7101         * XplatUIWin32.cs: Clip the rect to the parent window.
7102         * XplatUIStructs.cs: Add clipping modes struct.
7103         * InternalWindowManager.cs: New private method that factors title
7104         bar heights in when calculating the pos of an NC mouse message.
7105         - Use SendMessage to force a paint when the form's size is changed
7106         instead of painting the decorations immediately.
7107         - Don't let the NC button click messages get to DefWndProc,
7108         because they will attempt to handle windowing themself, and this
7109         messes up z-order (it will put them in front of the scrollbars).
7110         * XplatUIX11.cs: Make sure that we don't reset window managers if
7111         we already have one (ie the window is an MDI window).
7113 2006-09-28  Chris Toshok  <toshok@ximian.com>
7115         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
7116         menu code really needs going over.
7118 2006-09-27  Chris Toshok  <toshok@ximian.com>
7120         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
7121         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
7122         window is maximizable.  So, we need to make sure that even if we
7123         clear the border/wm frame of those functions, they're still
7124         available (basically, we remove the decoration without removing
7125         the function).  Half the fix for #79338.
7127 2006-09-27  Chris Toshok  <toshok@ximian.com>
7129         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
7130         Fixes bug #79515.
7132 2006-09-27  Chris Toshok  <toshok@ximian.com>
7134         * Splitter.cs: reorder things a bit so that we don't actually
7135         draw/move the splitter until after calling OnSplitterMoving.  This
7136         lets users cancel/disallow the movement by explicitly setting
7137         event.SplitX/SplitY.  Fixes #79372.
7139 2006-09-27  Jackson Harper  <jackson@ximian.com>
7141         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
7142         because it is most likely on a window being destroyed, and that
7143         will give us an X11 error.
7145 2006-09-27  Chris Toshok  <toshok@ximian.com>
7147         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
7148         the dropdown button now toggles between showing and hiding the
7149         dropdown.  Also, get rid of dropdown_form_showing and just use
7150         dropdown_form.Visible.  We still don't do a grab, but I'll leave
7151         that part to someone who has handled Capture-fu before.
7153 2006-09-27  Chris Toshok  <toshok@ximian.com>
7155         * DataGrid.cs: return false if alt isn't pressed when '0' is
7156         pressed.  this keeps the '0' key from being swallowed, and fixes
7157         bug #79350.
7159 2006-09-27  Chris Toshok  <toshok@ximian.com>
7161         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
7162         Calling Refresh (in response to a scrollbar event) screws up the
7163         scrollbar painting.  Fixes bug #78923.
7165 2006-09-27  Chris Toshok  <toshok@ximian.com>
7167         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
7168         then insert into hashtable" blocks threadsafe.
7170 2006-09-27  Chris Toshok  <toshok@ximian.com>
7172         * MessageBox.cs (CreateParams): the styles should be |'ed with our
7173         baseclass's, since otherwise the
7174         ControlBox/MinimizeBox/MaximizeBox assignments above have no
7175         effect.  This gets the close button back in messageboxes.
7177 2006-09-27  Chris Toshok  <toshok@ximian.com>
7179         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
7180         flag, not just != 0.  this makes flags that are actually multiple
7181         bits (like WS_CAPTION) work.  fixes bug #79508.
7183 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
7185         * PageSetupDialog.cs: add support for getting and settings the 
7186         paper size, source and orientation.
7188 2006-09-26  Chris Toshok  <toshok@ximian.com>
7190         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
7191         and caption == "", we need to remove the resize handles as well as
7192         the title bar.
7194         * Control.cs (set_Text): turns out that setting Text on a form
7195         should change the WM styles on the window, since if ControlBox ==
7196         false, the only way to get a window border is to have a non-""
7197         Text property.  check winforms/forms/text.cs for an example.  so,
7198         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
7199         update both window styles and title.  This fixes a lot of dialogs
7200         (including the preferences dialog in MonoCalendar.)
7202 2006-09-26  Chris Toshok  <toshok@ximian.com>
7204         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
7205         control isn't a Form), call Win32ShowWindow to hide the window,
7206         but don't update the control Visible property.  When we reparent
7207         back to a parent control, call SetVisible in order for the
7208         window's visibility to be reinstated.
7210         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
7211         the FosterParent.
7213         * Control.cs (ControlCollection.Remove): remove that value.Hide()
7214         call for good, since it breaks MonoCalendar (and other things I'm
7215         sure.) Also, set all_controls to null *after* the owner calls,
7216         which end up regenerating it.
7217         (ChangeParent): allow new_parent to be == null, passing
7218         IntPtr.Zero down to XplatUI.
7220         this fixes #79294 the right way.
7222 2006-09-26  Mike Kestner  <mkestner@novell.com>
7224         * GridEntry.cs : internal SetParent method.
7225         * PropertyGrid.cs : attach to property changed on the proper
7226         target if we have a hierarchical grid with subobjects. Setup
7227         GridItem.Parent for hierarchical items.
7228         * PropertyGridView.cs : Set value on the correct target for
7229         hierarchical grids. [Fixes #78903]
7231 2006-09-26  Chris Toshok  <toshok@ximian.com>
7233         * Control.cs (ChildNeedsRecreating): this should return true if
7234         either we're being recreated and the child is in our list, or our
7235         parent is waiting for our recreation.
7237 2006-09-26  Chris Toshok  <toshok@ximian.com>
7239         * Control.cs (ControlCollection.Remove): reinstate the
7240         value.Hide() call as suggested in bug #79294.
7242 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
7244         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
7245         coordinates (versus a relative move).
7247 2006-09-26  Chris Toshok  <toshok@ximian.com>
7249         * Control.cs: rework child recreation a little bit.  It turns out
7250         that we race between the DestroyNotify the WM_DESTROY message.  If
7251         the parent gets its DestroyNotify before the child gets the
7252         WM_DESTROY message, the child ends up not recreating (since the
7253         parent finishes its recreation on DestroyNotify, and the child
7254         checks ParentIsRecreating.)
7256         So, instead we store off a list of all the child controls which
7257         need to be recreated when the parent control starts to recreate
7258         itself.  Then, when child controls get their WM_DESTROY message we
7259         check to see if they're in the parent's pending recreation list,
7260         and if so, we recreate.  This removes all dependency on ordering
7261         from the code and fixes the initial MonoCalendar upgrade dialog.
7262         
7263 2006-09-26  Jackson Harper  <jackson@ximian.com>
7265         * TextControl.cs: Use the Line to get the length of the line,
7266         since soft line breaks can change the end line.
7268 2006-09-26  Chris Toshok  <toshok@ximian.com>
7270         * Control.cs (ControlCollection.AddImplicit): don't add the
7271         control again if it's already in one of our lists.  This keeps us
7272         from adding controls over and over again for comboboxes when their
7273         handle gets recreated (as the combobox adds implicit controls in
7274         OnHandleCreated).  Fixes the X11 errors in bug #79480.
7276 2006-09-26  Jackson Harper  <jackson@ximian.com>
7278         * TextControl.cs: When deleting characters make sure that any
7279         orphaned zero lengthed tags get deleted.
7280         - Fix ToString for zero lengthed tags.
7282 2006-09-25  Jackson Harper  <jackson@ximian.com>
7284         * TextControl.cs: When getting a tag at the location there can be
7285         multiple tags at the same spot, these are 0-lengthed tags that
7286         appear when extra formatting has been stuck in a location.  We
7287         need to pull out the last of these 0 lengthed tags.
7289 2006-09-25  Jackson Harper  <jackson@ximian.com>
7291         * TextControl.cs: Fix print out in debug method.
7292         * TextBoxBase.cs: When text is set bail if we are setting to the
7293         previous value.
7294         
7295 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
7297         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
7298           It is now possible to change the selected index in a FontXXXListBox
7299           with the up and down arrow keys from the FontXXXTextBoxes.
7300           Also, send the FontXXXTextBox mouse wheel event to the corresponding
7301           FontXXXListBoxes to match ms.
7303 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
7305         * SystemInformation.cs: Return a clone of the theme's MenuFont because
7306         anyone can dispose it, anytime. All other properties returns enums, 
7307         structs or basic types so they don't need such tricks.
7309 2006-09-22  Jackson Harper  <jackson@ximian.com>
7311         * XplatUI.cs:
7312         * XplatUIWin32.cs:
7313         * Clipboard.cs:
7314         * DataFormats.cs:
7315         * XplatUIOSX.cs:
7316         * XplatUIDriver.cs: Update interface to add a primary selection
7317         flag, so the driver can use the primary selection buffer if
7318         needed.
7319         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
7321         * RichTextBox.cs: We need to supply the data object to paste now
7322         (so we can choose to supply CLIPBOARD or PRIMARY).
7323         * TextBoxBase.cs: Supply data object to paste (see above).
7324         - Middle click uses the primary selection data object.
7325         
7326 2006-09-21  Chris Toshok  <toshok@ximian.com>
7328         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
7329         of SetWMStyles.  It's still a rat's nest and is largely
7330         order-dependent which I dislike immensely.  This also fixes the X
7331         button disappearing from toplevel forms.
7333 2006-09-21  Mike Kestner <mkestner@novell.com>
7335         * ListBox.cs: move Jordi's click/dblclick raising code to the
7336         mouse up handler.
7338 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
7340         * ListBox.cs: Fixes 79450
7342 2006-09-21  Mike Kestner <mkestner@novell.com>
7344         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
7345         to deal with people updating the TreeNodeCollection after the tree
7346         is disposed.  "Fixes" 79330.
7348 2006-09-20  Jackson Harper <jackson@ximian.com>
7350         * TextControl.cs: Push the cursor record onto the undo stack
7351         before the delete action. This fixes 78651.
7353 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
7355         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
7356         CreateParams. Fixes 79329.
7358 2006-09-19  Chris Toshok  <toshok@ximian.com>
7360         * XplatUIX11.cs: a couple of blanket code massage passes to clean
7361         things up a bit.  First, get rid of the NetAtoms array (and the NA
7362         enum), and just embed the atoms as static fields.  Also, add a
7363         couple of functions (StyleSet and ExStyleSet) to clean up all the
7364         bitmask testing of styles.
7366         * X11Structs.cs: remove the NA enum, not needed anymore.
7367         
7368 2006-09-19  Chris Toshok  <toshok@ximian.com>
7370         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
7371         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
7372         added cleanup to get MessageBox titles appearing again, which were
7373         broken by my earlier fix for caption-less/ControlBox-less windows.
7375 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
7377         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
7378           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
7379           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
7380           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
7381           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
7382           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
7383           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
7384           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
7385           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
7386           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
7387           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
7388             Inital import.
7389         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
7390           ToolStripButton.cs: Stubs needed for above.
7391         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
7393 2006-09-15  Chris Toshok  <toshok@ximian.com>
7395         * XplatUIX11.cs:
7396         - make the MessageQueues hashtable Synchronized.
7397         
7398         - SendMessage: if the Hwnd is owned by a different thread, use the
7399         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
7400         thread.  Fixes bug #79201.
7402 2006-09-15  Chris Toshok  <toshok@ximian.com>
7404         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
7405         ControlBox == false, we disallow maximize/minimize/close.  If the
7406         form Caption is "" we also disallow move (and get rid of the Title
7407         decoration).  Unfortunately, regardless of how things are set,
7408         we're stuck with the Title and WM menu.
7410 2006-09-15  Chris Toshok  <toshok@ximian.com>
7412         * Application.cs: add locking around the static message_filters
7413         ArrayList, part of #79196.
7415 2006-09-15  Chris Toshok  <toshok@ximian.com>
7417         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
7418         Form.ControlBox == false, the window has no titlebar nor resize
7419         handles.  fixes bug #79368.
7421 2006-09-15  Chris Toshok  <toshok@ximian.com>
7423         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
7424         >= 0.  Fixes bug #79370.
7426 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
7427         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
7428         * Control.cs:
7429             Add properties: LayoutEngine, Margin, DefaultMargin.
7430             Add method: GetPreferredSize.
7431             Move layout logic from PerformLayout to layout engines. 
7433 2006-09-13  Chris Toshok  <toshok@ximian.com>
7435         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
7436         fix for #79326 broke #78718, so this change addresses that.
7438         - in SendWMDestroyMessages remove the call to
7439         CleanupCachedWindows, since we might be recreating the control and
7440         need to maintain the references to right Hwnd handles.  Also, set
7441         the zombie flag to true for each of the children in the hierarchy
7442         instead of calling hwnd.Dispose.  This will cause GetMessage to
7443         ignore all events for the window except for DestroyNotify.
7445         - In GetMessage, ignore messages except for DestroyNotify for
7446         zombie hwnds.
7447         
7448         * Control.cs: revert the is_recreating fix from the last
7449         ChangeLog.  It's definitely "right", but it breaks switching from
7450         an MDI form to a non-MDI form.  Will need to revisit that.
7452         * Hwnd.cs: add a zombie flag, which means "the
7453         client_window/whole_window handles are invalid, but we're waiting
7454         for the DestroyNotify event to come in for them".  Set the flag to
7455         false explicitly if setting WholeWindow/ClientWindow, and also
7456         when Disposing.
7457         
7458 2006-09-13  Chris Toshok  <toshok@ximian.com>
7460         * XplatUIX11.cs: rework window destruction slightly.
7462         - when destroying the windows associated with a control, we don't
7463         need 2 separate XDestroyWindow calls.  Just the one for the
7464         whole_window (or for client_window if whole_window is somehow
7465         IntPtr.Zero -- can this happen?) is enough.
7467         - reworked SendWMDestroyMessages slightly, so we always dispose
7468         the child control hwnd's after sending the messages.
7469         
7470         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
7471         the two places it was used (one was even using hwnd.Handle and the
7472         other hwnd.client_window.  ugh), adding another call in
7473         SendWMDestroyMessages.  We need this new call because now the
7474         DestroyNotify events in the queue will be ignored for the child
7475         controls (as their hwnd's were disposed, and the window id's
7476         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
7478         - this fixes bug #79326.
7480 2006-09-13  Chris Toshok  <toshok@ximian.com>
7482         * Control.cs: don't always set is_recreating to false at the end
7483         of RecreateHandle, since sometimes we're not done (and won't be
7484         until WndProc handles the WM_DESTROY message).  Also, set
7485         is_recreating to false in the WM_DESTROY handling code.  Part of
7486         the fix for bug #79326.
7488 2006-09-13  Miguel de Icaza  <miguel@novell.com>
7490         * X11DesktopColors.cs: Start the droppage of debugging messages.
7492         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
7494 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
7496         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
7498 2006-09-12  Chris Toshok  <toshok@ximian.com>
7500         * DataGrid.cs (get_ListManager): if the list_manager is null, try
7501         to create it using SetDataSource.  Fixes bug #79151.
7503 2006-09-11  Chris Toshok  <toshok@ximian.com>
7505         * XEventQueue.cs: add a DispatchIdle property.
7507         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
7508         either the queue is null, or the queue has DispatchIdle set to
7509         true.
7510         (DoEvents): set queue.DispatchIdle to false around the
7511         peek/translate/dispatch message loop in this method.  This keeps
7512         Application.Doevents from emitting idle events.  Part of the fix
7513         for #78823.
7515 2006-09-11  Chris Toshok  <toshok@ximian.com>
7517         * DataGrid.cs (set_DataSource): make this work for both the
7518         winforms/datagrid test and ReportBuilder.  It seems as though when
7519         we've created a ListManager (or maybe it's if we have a
7520         BindingContext?), when we set the DataSource it clears the
7521         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
7522         #79333.
7524 2006-09-11  Chris Toshok  <toshok@ximian.com>
7526         * XplatUIX11.cs: deal with queue being null, which happens in all
7527         the Clipboard functions.  Fixes one of the two problems mentioned
7528         in #78612.
7530 2006-09-11  Chris Toshok  <toshok@ximian.com>
7532         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
7533         button on various spots (including outside the menu) works closer
7534         to MS, and doesn't crash.  Fixes #79343.
7536 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
7538         * ListView.cs: Do not initialize item_sorter in init. To match MS,
7539         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
7540         and the internal comparer is set. When a new ListViewItemSorter is set,
7541         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
7542         was specified. No further processing is necessary if SortOrder is set
7543         to it's current value. If Sorting is modified to None, and View is
7544         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
7545         (either custom or our internal ItemComparer) to null, on 1.0 profile
7546         only set item_sorter to null if its our internal IComparer. If Sorting
7547         is modified to Ascending or Descending, then use our internal IComparer
7548         if none is set, and if the current IComparer is our internal one then:
7549         on 2.0 profile always replace it with one for new Sorting, and on 1.0
7550         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
7551         Enum.IsDefined to verify whether a valid View value is specified in
7552         its setter. Automatically sort listview items when listview is
7553         created. In Sort, do nothing if ListView is not yet created, or if
7554         no item_sorter is set (no Sorting was set, Sorting was explicitly set
7555         to None or ListViewItemSorter was set to null). Added Sort overload
7556         taking a bool to indicate whether the ListView should be redrawn when
7557         items are sorted (we use this in ListViewItemCollection to avoid double
7558         redraws). Modified our internal IComparer to take the sort order into
7559         account. In Add and AddRange methods of ListViewItemCollection, also
7560         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
7561         view), but use overload with noredraw option to avoid double redraw.
7562         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
7563         true when View is Tile, and do the same when attempting to set View to
7564         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
7565         for selected/checked indices, as it involves overhead when sorting is
7566         done while these collections are not used all that often. Instead
7567         we'll build the indices on demand. Modified IList implementation of
7568         CheckedIndexCollection to use public methods if object is int.
7569         Modified CheckedListViewItemCollection to hide checked items if
7570         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
7571         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
7572         IList implementation in SelectedIndexCollection to use public methods
7573         if object is int. Modified SelectedListViewItemCollection to hide
7574         selected items if listview is not yet created.
7575         * ListViewItem.cs: CheckedIndices list no longer needs to be
7576         maintained separately (see ListView changes). Also clone font, fixes
7577         test failure.
7579 2006-09-11  Mike Kestner  <mkestner@novell.com>
7581         * ComboBox.cs: if we are updating the contents of the currently
7582         selected index, refresh the control or the textbox selection.
7583         [Fixes #79066]
7585 2006-09-11  Mike Kestner  <mkestner@novell.com>
7587         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
7588         the 'specified' logic has been moved there.  This seems like a bug 
7589         in Control.cs, since our current SetBoundsCore completely ignores 
7590         the specified parameter.  Peter's commit seems to indicate that is 
7591         the way the MS control implementation works.  [Fixes #79325]
7593 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
7595         * XplatUI.cs: Set default_class_name to be composed
7596         of current domain id. This allows MWF to be loaded in multiple
7597         domains on Win32.
7599 2006-09-09  Miguel de Icaza  <miguel@novell.com>
7601         * X11Keyboard.cs: If we are unable to obtain the input method, do
7602         not call CreateXic to create the input context.   Should fix
7603         #78944/79276.
7605 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
7607         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
7608           Simplified gnome support by adding more pinvokes to get the
7609           icon for a file or mime type.
7611 2006-09-08  Jackson Harper  <jackson@ximian.com>
7613         * MenuAPI.cs: Deslect popup context menu items before closing the
7614         window, so that you don't see the previously selected item
7615         selected when you reopen the menu.
7616         * TextControl.cs: Update the cursor position even if we don't have
7617         focus.  This fixes typing in things like the ComboBox.  I'm not
7618         totally sure we should always set the visibility if we don't have
7619         focus, but couldn't find any corner cases where the cursor showed
7620         up when it shouldn't.
7622 2006-09-08  Chris Toshok  <toshok@ximian.com>
7624         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
7625         our arrays are length 256.  & 0xff before indexing.  Fixes the
7626         crash in bug #78077.
7627         
7628 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7630         * ThemeWin32Classic.cs: 
7631         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
7632         is true. Handle that check box too.
7634 2006-09-07  Chris Toshok  <toshok@ximian.com>
7636         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
7637         79244.
7639 2006-09-07  Chris Toshok  <toshok@ximian.com>
7641         * Control.cs: in set_BackColor only do the work if
7642         background_color != value.
7644         * XplatUIX11.cs: move the clearing of invalid areas (both client
7645         and nc) to the same block of code where we set (nc_)expose_pending
7646         to false.  That is, move it from PaintEventEnd to PaintEventStart,
7647         so things that cause invalidates from within OnPaint will trigger
7648         another call to OnPaint.  Fixes bug #79262.
7650 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
7652         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
7653         * FileDialog.cs: Fix typo
7655 2006-09-07  Jackson Harper  <jackson@ximian.com>
7657         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
7658         for tab pages if they have any.
7660 2006-09-06  Mike Kestner  <mkestner@novell.com>
7662         * Splitter.cs: use the "current" rect when finishing drag handle
7663         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
7665 2006-09-06  Mike Kestner  <mkestner@novell.com>
7667         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
7668         support offset splitters. [Fixes #79298]
7670 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
7672         * Mime.cs: Fixed a bug that could override the global mime type
7673           result.
7675 2006-09-05  Jackson Harper  <jackson@ximian.com>
7677         * TabControl.cs: Better calculation method for setting the slider
7678         pos. Prevents crashes on really wide tabs.
7679         - Draw Image on tab pages if an image list is used.
7681 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7683         * MonthCalendar.cs: When Font changes, the Size should be
7684         updated to fit the new font's space requirements.
7686 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
7688         * ListBox.cs: If the items are cleared with Items.Clear set
7689           top_index to 0.
7691 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7693         * MonthCalendar.cs: Handle arrow keys as input keys. Also
7694         fire DateChanged event instead of DateSelected event when
7695         the date was changed by keyboard interaction.
7697 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7699         * DateTimePicker.cs: Handle DateChanged for the associated
7700         month_calendar control, and set month_calendar.Font from 
7701         OnFontChanged method, as well as resize the height of the
7702         control when needed. Make PreferredHeight proportional.
7704 2006-09-01  Chris Toshok  <toshok@ximian.com>
7706         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
7707         properties.
7709         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
7711 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
7713         * FileDialog.cs: Set ClientSize instead of window size, to allow space
7714           for decorations (Fixes #79219)
7716 2006-09-01  Mike Kestner  <mkestner@novell.com>
7718         * ComboBox.cs: first stab at sorting plus some selection handling
7719         fixes to bring us more in line with MS behavior.  Also switches back
7720         to index based selection.  Alternative patches for index-based 
7721         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
7722         and latency@gmx.de on bug 78848.  I assume they were similar to this
7723         code I've had simmering in my tree forever.
7724         [Fixes #78848]
7726 2006-09-01  Chris Toshok  <toshok@ximian.com>
7728         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
7729         when setting list position guard against ending up with a -1 index
7730         (the other part of the fix for #78812).  Should probably make sure
7731         we don't need the analogous fix in the ItemDeleted case.
7733         * DataGrid.cs:
7734         - in SetDataSource, work around the fact that the way
7735         OnBindingContextChanged is invoked will cause us to re-enter this
7736         method.  I'll remove the hack once I investigate
7737         OnBindingContextChanged.
7739         - fix the logic in set_DataSource and set_DataMember (basically
7740         what to do if the other of the two is null.)
7741         
7742         - in OnListManagerItemChanged, we need to take into account the
7743         edit row when deciding whether or not to call RecreateDataGridRows
7744         (part of the fix for #78812).
7746 2006-09-01  Jackson Harper  <jackson@ximian.com>
7748         * Splitter.cs: Don't do anything if there is no control to affect
7749         (prevents us from crashing in weird tet cases).
7750         * TreeView.cs: Bounding box for the mouse movement reverting
7751         focus/selection back to previously selected node.  This matches
7752         MS, and makes the tree a lot more useable.
7753         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
7754         use clipping so they are not drawn.  This fixes when the control
7755         is set to have a transparent background, or if it was over an
7756         image.
7758 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
7760         * MimeIcon.cs: Improved handling for reading default icons when
7761           using gnome (2.16 made it necessary). Check and read svg icons
7762           first, then 48x48 and then 32x32 icons.
7764 2006-08-31  Chris Toshok  <toshok@ximian.com>
7766         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
7767         visible.
7769         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
7770         ProcessKeyPreview.  Fixes part of #77806.
7772         * DataGrid.cs: big patch.
7774         - revert the queueing up of DataSource/DataMember if inside
7775         BeginInit/EndInit calls.  That's not the way the datagrid achieves
7776         its delayed databinding.  Instead, call SetDataSource in
7777         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
7778         #78811.
7780         - Also, it wasn't mentioned in #78811, but the test case exhibits
7781         behavior that was lacking in our datagrid implementation - Columns
7782         that have mapping names that don't exist in the datasource's
7783         properties aren't shown.  Yuck.  To fix this I added the bound
7784         field to the column style, and basically any calculation to figure
7785         out anything about columns uses a loop to find the bound columns.
7786         still need to investigate if I can cache an array of the bound
7787         columns or if the indices must be the same.
7789         - When setting CurrentCell, we no longer abort if the cell being
7790         edited was in the add row.  This fixes the other part of #77806.
7792         - The new code also fixes #78807.
7793         
7794         * ThemeWin32Classic.cs: perpetrate the same disgusting
7795         column.bound field hack, and only render bound fields.
7797 2006-08-31  Chris Toshok  <toshok@ximian.com>
7799         * DataGridColumnStyle.cs: add bound field.  this field is true if
7800         the datasource has a property corresponding to the mapping name.
7802         * DataGridTableStyle.cs: set the bound field on the column styles
7803         depending on whether or not we have a column for that property.
7805 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
7807         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
7808           splitter control (fixes #79228)
7810 2006-08-31  Chris Toshok  <toshok@ximian.com>
7812         * DataGridColumnStyle.cs: we need to delay the assignment of
7813         property descriptor until the last possible moment due to the lazy
7814         databinding stuff in the datagrid.  Also, fix the exceptions
7815         thrown by CheckValidDataSource to match MS.
7817 2006-08-31  Jackson Harper  <jackson@ximian.com>
7819         * Form.cs: When activated select the active control, if there is
7820         no active control, we select the first control.
7821         * XplatUIX11.cs: If there is no focus control when we get a
7822         FocusIn event, find the toplevel form and activate it.  This
7823         occurs when you popup a window, it becomes the focus window, then
7824         you close that window, giving focus back to the main window.
7826 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7828         * MonthCalendar.cs: 
7829         * ThemeWin32Classic.cs: Cache Font in bold style, as well
7830         as StringFormat with Center alignments in MonthCalendar,
7831         instead of creating new ones when drawing the control. 
7832         Also, draw the month name in bold style.
7834 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
7836         * Control.cs:
7837           - PerformLayout(): It would seem MS performs the fill even if the 
7838             control is not visible (part of #79218 fix)
7839           - ResetBackColor(): Use the setter to reset the color, to allow
7840             overriders to catch the change.
7841         * Form.cs:
7842           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
7843           - CreateHandle(): dito (part of $79218 fix)
7844           - Don't set an icon if we have a dialog
7845         * ScrollableControl.cs:
7846           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
7847           - ScrollIntoView(): No need to scroll if control is already visible
7848             (resolves fixme and fixes #79218)
7850 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7852         * MonthCalendar.cs: Change proportions in SingleMonthSize
7853         to match the aspect of the original control.
7855 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
7857         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
7858           get updated when they get maximized.
7860 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
7862         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
7864 2006-08-29  Chris Toshok  <toshok@ximian.com>
7866         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
7868 2006-08-29  Jackson Harper  <jackson@ximian.com>
7870         * TreeView.cs: Need to track selected node and highlighted node,
7871         they aren't always the same thing, when the mouse is down on a
7872         node it is hilighted, but not selected yet.
7873         - Do the HideSelection stuff right
7874         - Need to focus on rbutton mouse down. And redraw selection when
7875         right click is mouse upped.
7877 2006-08-29  Mike Kestner  <mkestner@novell.com>
7879         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
7880         when SubItems.Count < Columns.Count.  [Fixes #79167]
7882 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
7884         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
7886 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
7888         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
7889           from X. Only send based on ConfigureNotify if we don't have the
7890           correct location in hwnd (if the window manager moved us)
7892 2006-08-28  Mike Kestner  <mkestner@novell.com>
7894         * ListView.cs: remove a TODO. 
7895         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
7896         [Fixes ListView part of #79166]
7898 2006-08-28  Mike Kestner  <mkestner@novell.com>
7900         * ListView.cs: move wheel handler to parent since it is focused
7901         instead of the item_control now.  [Fixes #79177]
7903 2006-08-28  Mike Kestner  <mkestner@novell.com>
7905         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
7906         when the control is focused. [Fixes #79171]
7908 2006-08-28  Mike Kestner  <mkestner@novell.com>
7910         * ListView.cs: size the item and header controls for empty and
7911         unscrollable views.
7912         * ThemeWin32Classic.cs: draw disabled backgrounds.
7913         [Fixes #79187]
7915 2006-08-28  Chris Toshok  <toshok@ximian.com>
7917         * Form.cs: remove unused "active_form" static field.
7919         * Hwnd.cs: lock around accesses to static windows collection.
7921         * Application.cs: lock threads in Exit ().
7923 2006-08-28  Chris Toshok  <toshok@ximian.com>
7925         * NativeWindow.cs: lock around accesses to window_collection.
7926         
7927 2006-08-28  Chris Toshok  <toshok@ximian.com>
7929         * Control.cs: err, fix this the right way, by locking on controls
7930         when using it.  not by making it synchronized.
7932 2006-08-28  Chris Toshok  <toshok@ximian.com>
7934         * Control.cs: make the static "controls" field synchronized, as it
7935         gets updated from multiple threads.
7937 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
7939         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
7940           Prevent other threads from exiting when calling thread sets quit state.
7941         * XEventQueue.cs: Added PostQuitState property
7943 2006-08-27  Chris Toshok  <toshok@ximian.com>
7945         * AsyncMethodData.cs: add a slot for the window handle.
7947         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
7948         window (the destination control's window, not the foster window).
7950         * Control.cs (BeginInvokeInternal): store the window's handle in
7951         the AsyncMethodData.
7952         
7954 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
7956         * XplatUIX11.cs:
7957           - PostQuitMessage: Removed resetting S.D display handle, we might have
7958             another loop started after calling PostQuitMessage (Fixes #79119)
7959           - Created destructor to reset S.D handle
7961 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
7963         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
7965 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
7967         * TextControl.cs (Insert): Update the caret position even if we don't
7968           have a handle yet, just don't call the driver in that case.
7969         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
7970           to the end of the new selection text (Fixes #79184)
7972 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
7974         * Form.cs (Activate): Only activate if the handle is created)
7975         * Control.c:
7976           - Mark window as invisible when it's disposed
7977           - Check if window handle is created when setting window visible, 
7978             instead of relying just on the is_created variable
7979           - Check if object is disposed when creating the control (Fixes #79155)
7981 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
7983         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
7984           when allowing layout again. Otherwise we re-generate the anchoring 
7985           distance to the border again and actually alter what the user wanted
7986           This is ugly, it'd be better if we used DisplayRectangle instead of
7987           ClientRectangle for Control.UpdateDistances, but that causes us to
7988           have other problems (initial anchoring positons would be wrong)
7989           (Fixes #78835)
7991 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
7993         * Control.cs:
7994           - The size and location setters shouldn't go directly to 
7995             SetBoundsCore, but to SetBounds, which triggers layout on the
7996             parent, then calls SetBoundsCore. (Related to fix for #78835)
7997           - SetBounds: Moved actual location update code into this function
7998             from SetBoundsCore, to match MS. Added call to PerformLayout if
7999             we have a parent (to trigger resizing of anchored parents if the 
8000             child size has changed (see testcase for #78835) 
8001         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
8002           new control code
8003         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
8005 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
8007         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
8008           System.Drawing when a toplevel window gets closed; there might
8009           be other toplevel windows belonging to the same app (Fixes #78052)
8011 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
8013         * FileDialog.cs: After reading FileDialog settings from mwf_config
8014           use Desktop prefix only if a real folder doesn't exist anymore.
8015         * FontDialog.cs: Added char sets.
8016           It is now possible to select the font, size or style with the
8017           textboxes.
8019 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
8021         * PrintPreviewDialog.cs: Use assembly name constants.
8023 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
8025         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
8026           scrollbar from whacking it's buttons)
8028 2006-08-24  Chris Toshok  <toshok@ximian.com>
8030         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
8031         in this patch (aggregating setting Left/Top/Width/Height to
8032         setting Bounds on the scrollbars), but the crux of the fix is in
8033         Recalculate, where we scroll by the remaining scroll_position if
8034         we're hiding a scrollbar.  The 2*$5 reward in the comment is
8035         serious.
8037 2006-08-24  Jackson Harper  <jackson@ximian.com>
8039         * MdiClient.cs:
8040         * MdiWindowManager.cs: If the form is made a non-mdi window we
8041         need to remove the form closed event so that closing forms works
8042         correctly.
8044 2006-08-24  Jackson Harper  <jackson@ximian.com>
8046         * Control.cs: Make IsRecreating internal so that the driver can
8047         check it
8048         - Temporarily remove the Hide when controls are removed, its
8049         making a whole bunch of things not work because visibility isn't
8050         getting reset elsewhere correctly
8051         * Form.cs: Need to do a full handle recreation when the mdi parent
8052         is set.
8053         * XplatUIX11.cs: If we are recreating handles don't dispose the
8054         HWNDs.  What was happening is the handles were being recreated in
8055         SendWMDestroyMessages, but then flow continued on in that method
8056         and destroyed the new handles.
8058 2006-08-23  Jackson Harper  <jackson@ximian.com>
8060         * Form.cs: MdiClient is always at the back of the bus
8061         * Control.cs: When the order of items in the collection is changed
8062         we need to reset the all_controls array
8063         - do the same sorta setup thats done when adding a control when a
8064         control is set on the collection.
8066 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
8068         * TextBoxBase.cs (get_Text): Return an empty array if our document
8069           is empty (fixes #79052)
8071 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
8073         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
8074           on WM_SYSCHAR messages (fixes #79053)
8076 2006-08-23  Chris Toshok  <toshok@ximian.com>
8078         * DataGrid.cs: fix flickering when scrolling vertically.
8080 2006-08-23  Chris Toshok  <toshok@ximian.com>
8082         * DataGrid.cs (EndEdit): only invalidate the row header when we
8083         need to.
8085 2006-08-23  Chris Toshok  <toshok@ximian.com>
8087         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
8088         methods.  fixes the flicker when scrolling around.
8090 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
8092         * FileDialog.cs: Making sure the control is created before we get a 
8093           chance to use it with BeginInvoke (Fixes #79096)
8095 2006-08-23  Chris Toshok  <toshok@ximian.com>
8097         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
8098         width to use when painting the rows.
8100 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
8102         * TextBoxBase.cs:
8103           - Throw ArgumentException if a negative value is passed to SelectionLength
8104           - Update the selection end if start is moved. end needs to be always
8105             after start. (Fixes #79095)
8106           - Track selection length; MS keeps the selection length even if start
8107             is changed; reset on all other operations affection selection
8109 2006-08-22  Jackson Harper  <jackson@ximian.com>
8111         * TreeView.cs: Make sure both scrollbars get displayed and sized
8112         correctly when the other bar is visible.
8113         - Use the original clip rectangle for checking if the area between
8114         the two scrollbars is visible, not the viewport adjusted clipping
8115         rectangle.
8117 2006-08-22  Jackson Harper  <jackson@ximian.com>
8119         * Binding.cs: We don't use IsBinding because it requires the
8120         control to be created, which really shouldn't be necessary just to
8121         set a property on the control.
8123 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8125         * ComboBox.cs: Some CB.ObjectCollection methods must throw
8126         ArgumentNullReferenceException when the argument is null.
8128 2006-08-21  Jackson Harper  <jackson@ximian.com>
8130         * Timer.cs: Track the thread that the timer is started in (NOT
8131         CREATED), this way messages for it will only be triggered on its
8132         queue.
8133         * XEventQueue.cs: Track the timers here, this makes timers per
8134         thread, like MS.
8135         * XplatUIX11.cs: The timers are moved to the XEventQueue.
8137 2006-08-19  Chris Toshok  <toshok@ximian.com>
8139         * XplatUIX11.cs: after further communication with pdb, we get the
8140         best of both worlds.  SetZOrder working for un-Mapped windows, and
8141         no X errors for un-mapped windows.
8143 2006-08-19  Chris Toshok  <toshok@ximian.com>
8145         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
8146         as it was causing pdn toolbars to not have the correct stacking.
8148 2006-08-18  Mike Kestner  <mkestner@novell.com> 
8150         * ListView.cs : guard against negative ClientArea.Width in scrollbar
8151         calculation.  Not sure why control should ever be setting a negative
8152         width though.  Fixes #78931.
8154 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8156         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
8157         null items in ObjectCollection class.
8158         * ListBox.cs.: Likewise.
8160 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
8162         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
8163           as the base method in ThemeWin32Classic should work fine.
8164           Fixed bug #78607.
8166 2006-08-18  Jackson Harper  <jackson@ximian.com>
8168         * Binding.cs: When validating if the value entered doesn't convert
8169         properly reset to the old value.
8170         * RadioButton.cs: Don't fire click when we get focus.
8172 2006-08-18  Jackson Harper  <jackson@ximian.com>
8174         * FileDialog.cs: Paint the selection on the directory combobox the
8175         same way as on MS. 
8177 2006-08-17  Jackson Harper  <jackson@ximian.com>
8179         * ErrorProvider.cs: Don't allow the error control to be selected.
8180         * Control.cs: Don't send the SetFocus messages, the control
8181         activation will do this, and if we do it blindly here validation
8182         does not work.
8184 2006-08-17  Jackson Harper  <jackson@ximian.com>
8186         * Control.cs:
8187         * ContainerControl.cs: Make validation events fire in the correct
8188         order.  TODO: For some reason the first validation event is not
8189         getting fired.
8191 2006-08-17  Mike Kestner  <mkestner@novell.com> 
8193         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
8195 2006-08-17  Mike Kestner  <mkestner@novell.com> 
8197         * ComboBox.cs : implement scroll wheel support for popped-down
8198         state. Fixes #78945. 
8200 2006-08-17  Jackson Harper  <jackson@ximian.com>
8202         * TreeView.cs: Specify treeview actions (old patch that didn't get
8203         committed for some reason).
8204         - Don't let the mouse wheel scroll us too far.  Just want to make
8205         the bottom node visible, not scroll it all the ways to the top.
8207 2006-08-17  Jackson Harper  <jackson@ximian.com>
8209         * XplatUIX11.cs: Mouse wheel events go to the focused window.
8211 2006-08-17  Mike Kestner  <mkestner@novell.com> 
8213         * ComboBox.cs : don't do mouseover selection in simple mode.
8215 2006-08-16  Jackson Harper  <jackson@ximian.com>
8217         * Form.cs: Fire the closing events for all the mdi child windows
8218         when a window is closed.  If the cancel args are set to true, the
8219         main window still gets the event fired, but it doesn't not close.
8220         * MdiWindowManager.cs: Do this closing cleanup in a Closed
8221         handler, instead of when the button is clicked, so cancelling the
8222         close works correctly.
8223         * ComboBox.cs: Send the mouse down to the scrollbar.
8225 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8227         * ListBox.cs: When passing 'null' to SelectedItem,
8228         set SelectedIndex to -1, to unselect items. This is the
8229         observed behaviour in .Net.
8231 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
8233         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
8234           MS flags saying there won't be any. (fixes #78800)
8235         * Control.cs (HandleClick): Made virtual
8237 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
8239         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
8240           cultures. Fixed bug #78399.
8242 2006-08-16  Jackson Harper  <jackson@ximian.com>
8244         * Form.cs: Use the MdiClients MdiChildren property to access
8245         MdiChildren instead of creating the array from the child controls.
8246         * MdiClient.cs: Maintain a separate array of the mdi children, so
8247         that insertion order is maintained when the Z-order is changed.
8249 2006-08-16  Mike Kestner  <mkestner@novell.com> 
8251         * ListView.cs : add an ItemComparer and default to it for sorting.
8252         Fixes #79076, but sorting needs a complete overhaul to be compat with
8253         MS.
8255 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
8257         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
8259 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
8261         * Hwnd.cs (Mapped): Properly traverse the tree
8263 2006-08-15  Chris Toshok  <toshok@ximian.com>
8265         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
8266         pass manager.Current.GetType() to ParseData.  It has to be the
8267         property type.  So, hold off doing the ParseData until we're in
8268         SetPropertyValue where we know the type.  This fixes the crash in
8269         #78821 but the textbox is still empty.
8271 2006-08-15  Chris Toshok  <toshok@ximian.com>
8273         * DataGrid.cs:
8274         - when we're scrolling, only call Edit() again if the
8275         current cell is still unobscured. Fixes bug #78927.
8276         - when handling mousedown on a cell, ensure the cell is visible
8277         before calling Edit.
8278         - remove the properties from DataGridRow, and remove the
8279         DataGridParentRow class altogether.
8280         
8282 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
8284         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
8285           fire OnTextChanged by ourselves. There's no point calling base,
8286           we don't set the base value anywhere else. Fixes #78773.
8288 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8290         * ListBox.cs: Call CollectionChanged when modifying
8291         an item from Items indexer, to update the actual items
8292         in the list box.
8294 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8296         * PrintDialog.cs: Small fixes for focus and a pair of checks,
8297         to match .Net behaviour.
8299 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
8301         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
8303 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
8305         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
8307 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
8309         * MessageBox.cs: Prevent potential NRE exception.
8310         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
8312 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
8314         * MessageBox.cs: Calculate the owner of a messagebox, also make
8315           it topmost. Fixes #78753
8317 2006-08-14  Chris Toshok  <toshok@ximian.com>
8319         * XplatUIX11.cs: A couple of fixes so that metacity will let us
8320         programmatically move windows.  first, set the PPosition hint as
8321         well as the USPosition hint.  Second include some code from pdb
8322         that sets the window type to NORMAL when we set the transient for
8323         hint.  This is because, in the absence of a window type, metacity
8324         thinks any window with TransientFor set is a dialog, and refuses
8325         to let us move it programmatically.  fascists.
8327 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
8329         * XplatUIX11.cs: When setting normal hints, take into consideration
8330           an different hints previously set so we don't delete them (fixes #78866)
8332 2006-08-12  Chris Toshok  <toshok@ximian.com>
8334         * ToolBarButton.cs: make Layout return a boolean, if something to
8335         do with the button's layout changed.
8337         * ToolBar.cs:
8338         - add another parameter to Redraw, @force, which all existing
8339           calls set to true.
8340         - make the Layout function return a boolean which is true if the
8341           layout has actually changed.  Redraw now uses this (and @force)
8342           to determine when to invalidate.  At present the only place
8343           where @force can be false is the call from OnResize, when
8344           background_image == null.  So, resizing a toolbar when the
8345           layout doesn't change results in no drawing.
8347 2006-08-12  Chris Toshok  <toshok@ximian.com>
8349         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
8350         the VScrollBar and HScrollbar reversed.  oops.
8352         * DataGrid.cs: fix the logic that assigns sizes to the implicit
8353         scrollbars.  we were assigning them twice (once in
8354         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
8355         therefore causing two scrollbar resizes (and redraws?) to happen
8356         per grid resize.
8358 2006-08-12  Chris Toshok  <toshok@ximian.com>
8360         * ToolBarButton.cs: redraw the entire button if the theme tells us
8361         to.
8363         * Theme.cs: add ToolBarInvalidateEntireButton.
8365         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
8366         buttons, just the border.
8368         * ThemeNice.cs: redraw the entire toolbar button since we need to
8369         draw the highlight image.
8371         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
8372         we need to redraw the entire button (not just the border).
8374 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
8376         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
8377           for vertical bars. Fixes the mismatches shown by #78513
8379 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
8381         * FileDialog.cs: If a saved/remembered path doesn't exist
8382           anymore, fall back to "Desktop".
8384 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
8386         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
8387           parent. It's apparently legal to not have one
8388         * XplatUIX11.cs:
8389           - SetZOrder: Don't try to set Z-Order on an unmapped window
8390           - CreateWindow: 0,0 are legal coordinates for a window. don't move
8391             it unless the coordinates are negative
8393 2006-08-10  Mike Kestner  <mkestner@novell.com>
8395         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
8396         when setting to null per msdn docs.  Fixes #78854.
8398 2006-08-10  Chris Toshok  <toshok@ximian.com>
8400         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
8401         flickering by setting a clip rectangle on the Graphics when we
8402         need to redraw just a particular menuitem.  Also, rename "OnClick"
8403         to "OnMouseDown" to reflect what it actually is.
8404         
8405         * Form.cs: track the OnMouseDown change.
8407 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
8409         * CommonDialog.cs: Properly inherit the CreateParams from the form
8410           and only change what we need. Fixes #78865
8412 2006-08-10  Chris Toshok  <toshok@ximian.com>
8414         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
8415         flickering in flat mode (and most of the flickering in general) by
8416         only invalidating the button border (and not the entire rectangle)
8417         when the state changes.  A couple of cases still flicker:
8418         ToggleButtons, and the dropdown arrow case when the user mouse
8419         ups.
8421 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
8423         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
8424           for german keyboards. Numlock state shouldn't affect the behaviour
8425           of the Del key. Fixes bug #78291.
8427 2006-08-10  Chris Toshok  <toshok@ximian.com>
8429         * ListControl.cs: remove the items.Clear line from BindDataItems,
8430         as this is the first thing done by both subclasses in their
8431         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
8432         passed -1, refresh the list.  This gets databinding working when
8433         the datasource is set on the list before the datasource is
8434         populated (as in wf-apps/ReportBuilder.)
8436         * ComboBox.cs: remove the argument to BindDataItems.  This call
8437         should really go away, and be initiated by the ListControl code.
8439         * ListBox.cs: same.
8441 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
8443         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
8444           if no data is in the document when the control is displayed
8446 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
8448         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
8449           yes (fixes #78806)
8450         * TextControl.cs: 
8451           - PositionCaret: Allow positioning of caret but don't call methods 
8452             requiring a handle if the window isn't created yet
8453           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
8454           - owner_HandleCreated: Don't position the caret, just update it's 
8455             location. User might have already set a different position
8457 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
8459         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
8460           windows. Screws up the returned coordinates for child windows. 
8461           Fixes #78825. I'm hoping this doesn't break something, since the
8462           code was explicitly put in 8 months ago, but no bug was attached.
8463           Menus still seem to work properly.
8465 2006-08-08  Chris Toshok  <toshok@ximian.com>
8467         * DataGrid.cs: make BeginInit/EndInit actually do what they're
8468         supposed to do - delay data binding until the EndInit call.  Also,
8469         make the table style collection's CollectionChangeAction.Refresh
8470         work properly.
8472         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
8473         (with action = Refresh) when a consituent table's MappingName is
8474         changed.
8476 2006-08-08  Chris Toshok  <toshok@ximian.com>
8478         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
8479         Invalidate, since changing the text can change the size of the all
8480         toolbar buttons.
8482 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
8484         * Form.cs (AddOwnedForm): Still need to add the form to our listif
8485           we don't have it yet
8487 2006-08-08  Chris Toshok  <toshok@ximian.com>
8489         * PrintControllerWithStatusDialog.cs: don't .Close() the status
8490         dialog, as this causes X errors later on, since we actually
8491         destroy the window.  Instead, .Hide() it.
8493 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
8495         * ComboBox.cs: Added focus reflection for popup window
8496         * XplatUIX11.cs: 
8497           - Removed transient setting for non-app windows for now, not sure it
8498             was needed
8499           - Fixed logic checking if we have captions when deciding 
8500             override_redirect, WS_CAPTION is two bits and a 0 check was not
8501             sufficient
8502           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
8503             complicated
8504         * Form.cs: 
8505           - AddOwnedForm: Don't just add the form to the list, call the property
8506             to ensure the driver is informed about the ownership as well
8507           - CreateHandle: Set the TopMost status in the driver if we have an owner
8508         * XplatUI.cs: Fixed debug statement
8510 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
8511         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
8512           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
8513           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
8514           TrackBarRenderer.cs: Make constructor private.
8515         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
8516         * ProfessionalColorTable.cs: Make properties virtual.
8518 2006-08-06  Duncan Mak  <duncan@novell.com>
8520         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
8521         is not changing.
8523 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
8524         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
8525           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
8526           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
8527           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
8528           Initial import of new 2.0 classes.
8530 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
8531         * Application.cs: Add 2.0 VisualStyles properties.
8533 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
8534         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
8535           XplatUIX11.cs: Create property to allow access to existing private
8536           variable "themes_enabled"
8538 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8540         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
8541         file size, as otherwise our class libraries fail using windows. Fixes
8542         bug #78759.
8544 2006-08-04  Jackson Harper  <jackson@ximian.com>
8546         * Form.cs:
8547         * XplatUIX11.cs: Move the toolwindow window manager creation into
8548         the X11 driver, this way on win32 we can let windows create/handle
8549         the toolwindows.
8551 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8553         * PrintDialog.cs: Remove some redundant checks, add some others,
8554         clean some code, and move the focus to the text boxes when the
8555         values are incorrect.
8557 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
8559         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
8561 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
8563         * NumericUpDown.cs: Setting the Minimum and Maximum is now
8564           handled correctly. Fixes bug #79001.
8566 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8568         * PrintDialog.cs: The "Copies" numeric up down must have
8569         set the Minimum property to 1; only if the value is bigger
8570         than 1, activate "Collate" check box. This is the behaviour of .Net.
8571         Also modify the Document elements only if it is not null.
8573 2006-08-03  Jackson Harper  <jackson@ximian.com>
8575         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
8576         length. (We have a larger array then actual node count).
8577                 
8578 2006-08-03  Jackson Harper  <jackson@ximian.com>
8580         * ComboBox.cs: Don't show selection by default.
8581         - The SelectAll isn't needed here, since the focus code should do
8582         that
8583         - DDL style lists to manual selection drawing, so when they
8584         get/lose focus they have to invalidate.
8586 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
8588         * TextBoxBase.cs: Don't always show all selections by default.
8590 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
8591         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
8592           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
8593           Fixed various typos.
8595 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
8597         * Control.cs: Removing the controls in a ControlCollection with
8598           Clear now hides the controls as expected. Fixes bug #78804. 
8600 2006-08-03  Jackson Harper  <jackson@ximian.com>
8602         * Control.cs: Revert previous focus patch, it breaks reflector.
8604 2006-08-03  Jackson Harper  <jackson@ximian.com>
8606         * ComboBox.cs: Cleanup selection and focus with the combobox.
8607         This also eliminates some duplicated keyboard code, since now
8608         everything is handled by the main class.
8609         - Make list selection work on mouse up instead of down, to match
8610         MS.
8612 2006-08-02  Jackson Harper  <jackson@ximian.com>
8614         * Control.cs: Setting focus needs to go through the whole
8615         selection mechanism.
8617 2006-08-02  Chris Toshok  <toshok@ximian.com>
8619         * PrintPreviewDialog.cs: change MinimumSize to use
8620         base.MinimumSize so it works.
8622 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
8624         * TextControl.cs:
8625           - UpdateCaret: Added sanity check in case caret isn't defined yet
8626           - Line.Delete: Now updating selection and caret markers if we're
8627             transfering a node (Properly fixes #78323)
8628           - SetSelectionEnd: Added sanity check
8629         * TextBoxBase.cs: Removed broken attempt to fix #78323
8631 2006-08-01  Chris Toshok  <toshok@ximian.com>
8633         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
8634         Close() call is handled in Form, not here.
8636 2006-08-01  Chris Toshok  <toshok@ximian.com>
8638         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
8639         layout/rendering.
8641         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
8642         for sizes < 100% zoom.  The code now aggressively attempts to keep
8643         from calling document.Print (), and tries not to use the scaling
8644         g.DrawImage whenever possible (it still does if you scale to >
8645         100%, since usually that involves huge images).
8647         * PrintPreviewControl.cs: hook up the close button.
8649 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
8650         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
8651           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
8652           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
8653           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
8654           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
8655           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
8656           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
8657           Removed [Serializable] for 2.0 Event Handlers.
8659 2006-07-31  Jackson Harper  <jackson@ximian.com>
8661         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
8662         * TextControl.cs: Uncomment out the body of this method.
8664 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
8666         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
8667           standard cursors.
8669 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
8671         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
8672           that embed TextBox and need selections visible even if textbox is not
8673           focused to enforce that behaviour.
8674         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
8675           selection drawing
8677 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
8679         * TextControl.cs:
8680           - Added new SetSelectionStart/SetSelectionEnd overloads
8681           - Fixed viewport width assignment to be accurate
8682           - Adjusted alignment line shift calculations to allow cursor on right
8683             aligned lines to be always visible at the right border (like MS)
8684         * TextBoxBase.cs:
8685           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
8686           - TextBoxBase_SizeChanged: recalculating canvas on size changes
8687           - CalculateScrollBars: Use ViewPort size instead of window size, to
8688             properly consider space occupied by the border and scrollbars 
8689             (Fixes #78661)
8690           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
8691             calculations; no longer leaves artifacts
8692           - CaretMoved: Adjusted window scrolling to match MS and fixed several
8693             calculation bugs (Still missing right/center align calculations)
8695 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
8697         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
8698           use of both scroll rect and clip rect, as they do the same.
8700 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
8702         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
8703           in the event handler (fixes #78912)
8705 2006-07-31  Chris Toshok  <toshok@ximian.com>
8707         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
8708         grid.ListManager.Count, since grid.ListManager might be null.
8709         This of course begs the question "why are we drawing rows for a
8710         grid with no list manager (and therefor no rows)?"  Fixes the
8711         crash in bug #78929.
8713 2006-07-31  Chris Toshok  <toshok@ximian.com>
8715         * RelatedPropertyManager.cs: Don't always chain up to the parent
8716         ctor.  instead, call SetDataSource if the parent's position is !=
8717         -1.  Fixes the crash in #78822.
8719 2006-07-31  Chris Toshok  <toshok@ximian.com>
8721         * DataGrid.cs (get_ListManager): use field instead of property
8722         accessors for datasource and datamember.
8723         (RowsCount): make internal again.
8724         (OnMouseDown): end edits before resizing columns/rows.
8725         (OnMouseUp): restart edits after resizing columns/rows.
8727 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
8729         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
8730           This fixes the situation where the last set cursor is displayed
8731           whenever the mouse is over scrollbars.
8733 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8735         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
8736         Document properties, as well as initial values.
8738 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
8740         * XplatUIWin32.cs (SetBorderStyle): Setting both border
8741           and ClientEdge results in a 3-pixel border, which is
8742           wrong.
8744 2006-07-28  Jackson Harper  <jackson@ximian.com>
8746         * TreeNodeCollection.cs: Fix the clear method.
8747         - Fix the Shrink also
8749 2006-07-27  Jackson Harper  <jackson@ximian.com>
8751         * TreeView.cs: Make sure the visible order is computed when we
8752         attempt to size the scrollbars (for trees that mess with the
8753         scrolling when they shouldn't.
8754         - Make sure to give the scrollbars valid values.
8756 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
8758         * XplatUIX11.cs: Move motion compression code to where it
8759           has less performance impact
8761 2006-07-26  Jackson Harper  <jackson@ximian.com>
8763         * UpDownBase.cs: When the control is selected make the child
8764         controls non selectable, so that a click on them won't do a
8765         focus/unfocus cycle.
8766         - Don't give focus to the text box when the spinner is selected.
8767         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
8769 2006-07-26  Chris Toshok  <toshok@ximian.com>
8771         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
8772         satisfied with this solution.  If the bitmaps are small, we should
8773         just cache them in the PrintPreviewDialog and draw them here.
8774         Also, the layout is broken for the 2-up and 3-up cases.
8776         * Theme.cs: add PrintPReviewControlPaint.
8778         * PrintPreviewDialog.cs: first pass implementation.
8780         * PrintPreviewControl.cs: first pass implementation.  No
8781         scrollbars yet.
8783         * PrintDialog.cs: only validate fields if that particular portion
8784         of the UI is enabled.  Also, set the document's controller to a
8785         PrintControllerWithStatusDialog wrapping the document's print
8786         controller.
8788         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
8789         bring up a SaveFileDialog (i hope we don't want to match the
8790         behavior of the crappy windows file entry) and set the
8791         PrinterSettings.PrintFileName accordingly.
8793 2006-07-26  Jackson Harper  <jackson@ximian.com>
8795         * ContainerControl.cs: Add a field that disables auto selecting
8796         the next control in a container when the container is activated.
8797         * UpDownBase.cs: Don't select the text box when the up down is
8798         selected.
8800 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
8802         * XEventQueue.cs: Added methods for peeking (used for compression
8803           of successive events)
8804         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
8805           mouse move events (fixes #78732)
8807 2006-07-25  Jackson Harper  <jackson@ximian.com>
8809         * UpDownBase.cs: Use an internal class for the textbox so that we
8810         can control focus.  the updown control should always have focus,
8811         if either the text area or the buttons are clicked.
8812         - Send the key messages to the textbox, since it never actually
8813         has focus
8814         - Activate and decativate the textbox caret.
8816 2006-07-24  Jackson Harper  <jackson@ximian.com>
8818         * Control.cs: Use the directed select when selecting a control,
8819         this way the container controls override will get called and the
8820         whole ActiveControl chain will get triggered.  TODO: probably need
8821         to make sure this gets done everywhere instead of the old
8822         Select(Control).
8823         * ContainerControl.cs: Implement the directed Select method to
8824         find and activate the correct child control.    
8825         
8826 2006-07-22  Mike Kestner  <mkestner@novell.com>
8828         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
8829         menu handling code so that clicks without a grab work too.
8830         [Fixes #78914]
8832 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
8834         * FileDialog.cs: Enable the BackButton when dirstack has one element.
8835           Added some small optimizations.
8837 2006-07-21  Matt Hargett  <matt@use.net>
8839         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
8841 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
8843         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
8844           tests pass and match MS in some strange border cases.
8846 2006-07-21  Chris Toshok  <toshok@ximian.com>
8848         * ThemeWin32Classic.cs: handle drawing of the relation links and
8849         parent row buttons.
8851         * Theme.cs: change args to DataGridPaintParentRow.
8853         * DataGrid.cs: Don't use controls for the relation links and
8854         parent buttons, so we have to handle all their interactions in
8855         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
8856         when we're navigating through child tables, so we can reinstate
8857         selection, expanded state, current cell, etc.
8859 2006-07-20  Chris Toshok  <toshok@ximian.com>
8861         * ToolBar.cs: When we redraw a button, for whatever reason,
8862         there's no reason to redraw the entire toolbar.  Also, don't call
8863         Control.Refresh from within Redraw, as it's much heavier than
8864         Invalidate (which is really what we want).
8866 2006-07-20  Chris Toshok  <toshok@ximian.com>
8868         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
8869         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
8870         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
8871         traces from within a debug IBindingList datasource
8872         (in mono/winforms/datagrid) for *days*, I've finally gotten things
8873         to work in a similar fashion.
8875 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8877         * ListBox.cs: Don't call Sort () when setting 
8878         the Sorted property to false (avoid an unnecessary sort).
8880 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8882         * ListControl.cs: DataSource should throw an ArgumentException
8883         instead of a normal exception when the argument is not of the 
8884         correct type.
8886 2006-07-20  Mike Kestner  <mkestner@novell.com>
8888         * Control.cs: add InternalPreProcessMessage to allow us to steal
8889         key events before MWF gets its paws on them.  Adapted from a
8890         suggestion by eno.
8891         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
8892         up/down/left/right navigation. Override the new internal control
8893         method to steal the events since they never make it to WndProc.
8894         * ToolBarButton.cs: don't worry about pushed when setting hilight
8895         since the drawing code prefers pushed to hilight. Invalidate on 
8896         Hilight changes. Fixes #78547 and #78525.
8898 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
8900         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
8901           the canvas size. Fixes #78868
8903 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
8905         * Splitter.cs: Track requested split position until first layout
8906           is performed. Fixes #78871
8908 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
8910         * Application.cs: Removed code that forces 1.x for the version
8911           number if the version started with 0. Not sure why that code was
8912           there and I couldn't find any bugs that indicated we needed it.
8913           Fixes #78869
8915 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
8917         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
8918           ResetDefaults(), just write some output to the console until it's
8919           implemented. Fixes bug #78907 for now. Eliminated two warnings.
8921 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
8923         * PropertyGridView.cs: set StartPosition of drop down forms
8924         so they appear in correct initial spot.  Fixes #78190.
8926 2006-07-19  Mike Kestner  <mkestner@novell.com>
8928         * ThemeWin32Classic.cs: use parent background color when drawing
8929         flat toolbars.  Restructure the conditionals to make sure non-flat
8930         non-Divider toolbars are filled too.  Fixes #78837.
8932 2006-07-19  Mike Kestner  <mkestner@novell.com>
8934         * ListBox.cs: Sort on collection changes even if the handle
8935         isn't created yet.  Fixes #78813.
8937 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8939         * ListControl.cs: DisplayMember should never be null,
8940         and now we assign String.Empty when null is passed to it (this
8941         is the .Net way).
8943 2006-07-17  Mike Kestner  <mkestner@novell.com>
8945         * ListViewItem.cs: restructure Font and subitem Font handling 
8946         to hold a specific font and refer back to owner on null.
8947         Fixes #78761.
8949 2006-07-17  Mike Kestner  <mkestner@novell.com>
8951         * ToolBar.cs: bandaid for side-effect of previous patch which was
8952         discarding explicit heights for non-AutoSize toolbars.  Need to
8953         extend my format tester to deal with AutoSize=false. Fixes #78864.
8955 2006-07-15  Jackson Harper  <jackson@ximian.com>
8957         * LabelEditTextBox.cs:
8958         * TreeView.cs: Use a new LabelEdit class for node editing, this
8959         class automatically 'closes' itself when it gets the enter key or
8960         loses focus.
8961         - Use the client rectangle when setting the trees scrollbars, so
8962         border style is taken into account.
8963         
8964 2006-07-14  Jackson Harper  <jackson@ximian.com>
8966         * TreeNode.cs:
8967         * TreeView.cs: Make the editing work similar to MSs, firing the
8968         events correctly and ending edits correctly.
8970 2006-07-14  Mike Kestner  <mkestner@novell.com>
8972         * ToolBarButton.cs:
8973         * ToolBar.cs: layout restructuring and redraw enhancements to support
8974         formatting changes gracefully, like setting TextAlign, ImageList, 
8975         ButtonSize, and Appearance.  Handles explicit button sizing quirks
8976         of the MS controls.  Things like flat toolbars ignoring button size
8977         but becoming constant sized at the largest button's size.  Normal
8978         toolbars with an image set cannot be shrunk smaller than the image,
8979         but text can be clipped/ignored.
8980         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
8981         is zero.  Seems like DrawString should be smart enough to not put
8982         anything on screen though. Also trim labels and ellipsize at the char
8983         boundary, not word.
8984         Fixes #78711 and #78483.
8986 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
8988         * FolderBrowserDialog.cs: Disable "New Folder" button and
8989           "New Folder" contextmenu menuitem if a folder like "My Computer"
8990           is selected.
8992 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
8994         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
8995         * FolderBrowserDialog.cs:
8996           - Use MWFConfig to store and read size and position settings
8997           - Added code to create a new folder (button or context menu).
8998             Use TreeView labeledit to change the name of the new folder.
9000 2006-07-14  Jackson Harper  <jackson@ximian.com>
9002         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
9003         when the tree is scrolled we end editing.
9005 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
9007         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
9008           Down arrows
9010 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
9012         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
9013         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
9014         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
9015         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
9016         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
9017         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
9018         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
9019         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
9020         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
9021         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
9022         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
9023         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
9024         ListViewItemSelectionChangedEventHandler.cs,
9025         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
9026         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
9027         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
9028         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
9029         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
9030         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
9031         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
9032         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
9033         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
9034         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
9035         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
9036         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
9037         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
9038         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
9039         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
9040         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
9041         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
9042         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
9043         WebBrowserNavigatingEventHandler.cs, 
9044         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
9046 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
9048         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
9049         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
9050         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
9051         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
9052         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
9053         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
9054         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
9055         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
9056         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
9057         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
9058         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
9059         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
9060         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
9061         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
9062         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
9063         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
9064         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
9065         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
9066         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
9067         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
9068         ListViewItemStates.cs, MaskFormat.cs: Added
9070 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
9072         * PropertyGridView.cs: Fix keyboard navigation of drop down.
9073         Patch from eno for bug 78558.
9074         
9075 2006-07-13  Jackson Harper  <jackson@ximian.com>
9077         * TreeView.cs: When an edit is finished make sure that the
9078         selected node is visible.
9079         - When setting the top/bottom use the scrollbars is_visible, so
9080         everything will be set correctly even if the tree isn't visible
9081         yet.
9083 2006-07-13  Jackson Harper  <jackson@ximian.com>
9085         * ComboBox.cs: Revert the item->index part of my previous patch.
9086         * TreeView.cs: Use LostFocus instead of Leave for detecting when
9087         the edit box has lost focus (duh).
9088         - Just make the edit box not visible when we get return, that will
9089         take the focus, which will call EndEdit
9090         * TreeNode.cs When we start editing, notify the treeview.
9092 2006-07-12  Jackson Harper  <jackson@ximian.com>
9094         * ComboBox.cs: Clear out old items before setting the item list.
9095         This prevents databound controls from having their items added
9096         twice.
9097         - Switch the combobox to use indices whereever possible instead of
9098         using Item's.  This allows usto navigate through lists that have
9099         more then one item with the same string value (ie a, b, b, a).
9100         - Scroll the listboxes scrollbar when a non visible item is
9101         highlighted
9102         - Allow keypress to cycle through all the possible values. For
9103         example if you have b1, b2, b3 and hold down the B key all the
9104         values will be cycled through.
9105         
9106 2006-07-12  Jackson Harper  <jackson@ximian.com>
9108         * TextBoxBase.cs:
9109         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
9110         this using the internal methods.
9111         * Control.cs: Add OnGotFocusInternal.  A new method that allows
9112         controls to "override" OnGotFocus and change focus behavior if
9113         needed.
9114         - Same thing for LostFocus
9115         * ComboBox.cs: Pass off focus to the text control properly.
9117 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
9119         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
9120         * FolderBrowserDialog.cs: Almost a complete rewrite.
9121           - Better support for Environment.Specialfolders
9122           - Added support for MWFVFS
9123           - Made setting SelectedPath work
9125 2006-07-12  Jackson Harper  <jackson@ximian.com>
9127         * Control.cs: Optimze getting all the controls.
9129 2006-07-11  Jackson Harper  <jackson@ximian.com>
9131         * ContainerControl.cs: Override SETFOCUS in the container control,
9132         so that it is not selected on mouse click.
9134 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
9136         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
9137           Hopefully we will have a better way once all of focus is complete.
9139 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
9141         * ThemeWin32Classic.cs: Commented out some debug code and fixed
9142           a compile error with csc.
9144 2006-07-11  Jackson Harper  <jackson@ximian.com>
9146         * Control.cs: When hiding a control only select the next control
9147         if the current control was focused.
9148         - Don't handle enter/leave when setting/killing focus, this is
9149         done by the container control.
9150         - Remove is_selected, it's not needed anymore.
9151         - Add utility methods for selecting a child control, and for
9152         firing the Enter/Leave events.
9153         * ContainerControl.cs: When a control is activated fire the
9154         enter/leave events.
9155         - Don't wrap when processing the tab key, so that focus can be
9156         moved outside of the container.
9157         - Use the correct active control
9159 2006-07-11  Jackson Harper  <jackson@ximian.com>
9161         * ComboBox.cs: Remove some debug code that was blinding me.
9162         * UpDownBase.cs: These controls actually aren't implicit, they are
9163         visible to the user.
9165 2006-07-10  Chris Toshok  <toshok@ximian.com>
9167         * DataGrid.cs: move back to the is_adding boolean field.  god i
9168         hate this is_editing/is_adding/is_changing stuff.
9170 2006-07-10  Chris Toshok  <toshok@ximian.com>
9172         * DataGridTableStyle.cs: just check if the property type is bool.
9173         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
9174         Don't use CanRenderType.
9176         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
9177         if our text == NullText.  Remove CanRenderType.
9179         * DataGridBoolColumn.cs: nuke CanRenderType.
9181         * DataGrid.cs: reenable some code to end the current edit inside
9182         of set_CurrentCell.  This fixes the other 1.1.16 regression.
9183         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
9184         Also, remove the visible_row_count arg from CalcRowHeaders, since
9185         we don't need to worry about the actual height of the area.
9187 2006-07-10  Chris Toshok  <toshok@ximian.com>
9189         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
9190         mode, just return.
9192         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
9193         the real sense of the IsInEditOrNavigateMode property (true =
9194         navigate, false = edit).  Also, update OnKeyPress to reflect this.
9196         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
9197         column style exists, we still need to set its property descriptor
9198         to match up with our list manager.
9200 2006-07-10  Chris Toshok  <toshok@ximian.com>
9202         * ThemeWin32Classic.cs: implement the new row/header painting
9203         approach.  The parent row painting will likely go away and
9204         replaced with label controls, but the rest seems to work ok (and
9205         efficiently).
9207         * Theme.cs: change the way we draw datagrid rows.  we don't draw
9208         the row headers as a block now.  Instead we draw them in the
9209         normal draw-row loop.  Add some calls for drawing parent rows and
9210         relation rows.
9212         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
9213         a default table style.  Set the defaults from ThemeEngine.Current,
9214         not SystemColors.  Fix lots of misc issues with property setters.
9216         * DataGrid.cs: move loads of style information out of this class
9217         as it's being duplicated with DataGridTableStyle.  keep track of a
9218         special DataGridTableStyle for the properties we used to mirror
9219         here.  Switch all the style properties to access this table style
9220         instead of instance fields of this class.  Also add a internal
9221         class to represent parent rows (more needs to be stored here, like
9222         the selection state from the parent table, as well as the
9223         expansion state.)  Also, for datasources with relations, do the
9224         right thing for collapse/expand, and add support for the
9225         navigation/parent row buttons.
9227         Lastly, fix the crash in the 1.1.16 build.
9229         * GridTableStylesCollection.cs: make the explicit interface
9230         implementations call the class's methods as opposed to duplicating
9231         them.
9233         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
9234         0 so the text doesn't jump around when we move the cursor.
9236 2006-07-10  Jackson Harper  <jackson@ximian.com>
9238         * TextBoxBase.cs:
9239         * ListBox.cs: Match MS's ToString (this makes debugging focus
9240         stuff infinitely easier).
9242 2006-07-10  Jackson Harper  <jackson@ximian.com>
9244         * Control.cs (SelectNextControl): When checking the control's
9245         parent use this instead of ctrl.parent so that null can be passed
9246         to SelectNextControl. (I have unit tests for this).
9247         - Remove unused var.
9249 2006-07-10  Chris Toshok  <toshok@ximian.com>
9251         * CurrencyManager.cs: correct one regression, the removal of the
9252         finalType field.  Also, add a MonoTODO on CanAddRows, implement
9253         Refresh() correctly, and fix some event emission in
9254         ListChangedHandler.
9256 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
9258         * FileDialog.cs: Don't use brackets for new folders if they exist
9259           under *nix. Instead use -(number of existing folders +1).
9261 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
9263         * FileDialog.cs:
9264           - Fixed really nasty bug #78771
9265           - Don't block the whole GUI when reading directories with a lot of
9266             entries. Use an other thread instead and call BeginInvoke to
9267             update the ListView in MWFFileView
9269 2006-07-07  Chris Toshok  <toshok@ximian.com>
9271         * Control.cs (Dispose): release any Capture when disposing.
9273 2006-07-07  Chris Toshok  <toshok@ximian.com>
9275         * LinkLabel.cs (Select): if we chain up to the parent, set
9276         focused_index to -1 so we'll search for the first available link
9277         the next time the user tabs into us.  Also, if the direction is
9278         backward and focused_index == -1, start the search from the last
9279         element.
9281 2006-07-07  Chris Toshok  <toshok@ximian.com>
9283         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
9284         is beyond the end of the text, don't do anything.
9285         (CreateLinkPieces): set our ControlStyles.Selectable based on
9286         whether or not we have any links.
9287         (Link.Invalidate): use a loop instead of foreach.
9288         (Link.set_Start): null out owner.sorted_links so it'll be
9289         recreated by CreateLinkPieces.
9291 2006-07-06  Chris Toshok  <toshok@ximian.com>
9293         * LinkLabel.cs: revert the SetStyle change.
9295 2006-07-06  Chris Toshok  <toshok@ximian.com>
9297         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
9298         (OnEnableChanged): s/Refresh/Invalidate
9299         (OnGotFocus): if we have a focused index already, refocus it (so
9300         if we mouse out/in to the window it'll focus the right link).
9301         (OnKeyDown): move the tab handling out of here.
9302         (OnLostFocus): don't set focused_index to -1, so we can refocus it
9303         when we lose focus.
9304         (OnMouseDown): don't Capture here - Control handles it.  Also,
9305         focus the active link.
9306         (OnMouseUp): don't deal with Capture.
9307         (OnPaintBackgroundInternal): remove.
9308         (OnTextAlignChanged): CreateLinkPieces before calling the
9309         superclass's method.
9310         (OnTextChanged): call CreateLinkPieces before calling superclass's
9311         method.
9312         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
9313         move around.
9314         (Select): implement this, moving the selection between different
9315         links, and call parent.SelectNextControl if we don't have another
9316         link to focus in the given direction.
9317         (CreateLinkPieces): call Invalidate instead of Refresh.
9318         
9319 2006-07-06  Chris Toshok  <toshok@ximian.com>
9321         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
9322         new LinkLabel internals.
9324         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
9325         over pieces looking for active/focused/etc links.  also, deal with
9326         runs of text (and links) with embedded \n's in them, and use
9327         MeasureCharacterRanges instead of MeasureString to figure out the
9328         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
9329         two-step.
9331 2006-07-04  Jackson Harper  <jackson@ximian.com>
9333         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
9334         XKB or key auto repeat, do it manually.  Without key auto repeat,
9335         when a key is held down we get key press, key release, key press,
9336         key release, ... with auto repeat we get key press, key press, key
9337         press ..., and then a release when the key is actually released.
9339 2006-07-03  Jackson Harper  <jackson@ximian.com>
9341         * TabControl.cs:
9342         * ThemeWin32Classic.cs: Tabs do not obey normal background color
9343         rules, they are always control color regardless of the background
9344         color.
9346 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
9348         * FileDialog.cs: Added internal class MWFConfig.
9349           Removed Registry support and replaced it with support for the new
9350           MWFConfig class. See MWFConfig comments for more information.
9352 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
9354         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
9355           rectangle. Added some patches from eno from bug #78490 and fixed
9356           the arrow position for small up and down CPDrawScrollButtons.
9358 2006-06-30  Jackson Harper  <jackson@ximian.com>
9360         * InternalWindowManager.cs: Remove some debug code.
9361         * Form.cs: When an MdiParent is set to null, the window is
9362         "detatched" and becomes a normal window.
9363         * MdiClient.cs: Don't bring the new child form to the front until
9364         it is activated (setting it as active does this), this makes the
9365         previously active forms titlebar get redrawn as inactive.
9367 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
9369         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
9370           with later controls
9372 2006-06-29  Mike Kestner  <mkestner@novell.com>
9374         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
9375         arrow in keynav state.  Fixes #78682.
9377 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
9379         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
9380           order (fixes #78393)
9382 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
9384         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
9385           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
9386           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
9387           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
9388           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
9389           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
9390           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
9391           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
9392           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
9393           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
9394           enumerations (FlagsAttribute, SerializableAttribute, added/removed
9395           values)
9397 2006-06-28  Mike Kestner  <mkestner@novell.com>
9399         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
9401 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
9403         * PropertyGrid.cs,
9404           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
9405           item lines from other area (It also makes BackColor consistent and
9406           compatible with .NET). Fixed bug #78564.
9408 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
9410         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
9411         Patch from Eno for #78555.
9413 2006-06-27  Chris Toshok  <toshok@ximian.com>
9415         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
9417         * DataGridColumnStyle.cs: same.
9419         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
9420         
9421         * DataGridDrawingLogic.cs: nuke.
9423 2006-06-27  Chris Toshok  <toshok@ximian.com>
9425         * DataGridTableStyle.cs: clean up the constructors, and build the
9426         list of child relations for this table.  I have no idea if this is
9427         where we should be doing it (it probably isn't), but since we're
9428         already iterating over the properties..
9430         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
9431         struct and array for keeping track of row information, similar to
9432         what's shown in a hack on
9433         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
9435         * Theme.cs: be consistent about the naming of DataGrid methods,
9436         prefering ColumnWidths and RowHeights over columnsWidths and
9437         RowsHeights.
9439         * ThemeWin32Classic.cs: same, and also add support for variable
9440         sized rows (and the +/- expansion icons for related rows).
9442 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
9444         * TextBoxBase.cs: Applied Eno's patch from #78660
9446 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
9448         * Form.cs (ScaleCore): We don't want to scale our form if it's
9449           state is minimized or maximized, but we still need to scale our
9450           child windows. Also, added try/finally block to ensure layout
9451           gets reset (Fixes #78697)
9453 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
9455         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
9457 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
9459         * Form.cs: Fixed c+p error and added check to resize form if minimum
9460           size is bigger than current size (Fixes #78709)
9462 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
9464         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
9466 2006-06-26  Mike Kestner  <mkestner@novell.com>
9468         * ComboBox.cs: only do Keypress handling in the combo when there  
9469         are items in the collection. Fixes #78710.
9471 2006-06-26  Chris Toshok  <toshok@ximian.com>
9473         * Binding.cs: make this work bi-directionally.  also, clear up
9474         other mixups between Push/Pull Data (e.g. we're supposed to pull
9475         data when validating).
9477         * BindingManagerBase.cs: trim some fully qualified collection
9478         types.
9480         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
9482 2006-06-23  Chris Toshok  <toshok@ximian.com>
9484         * PropertyManager.cs: It appears (according to the unit tests)
9485         that PropertyManager doesn't use
9486         PropertyDescriptor.AddValueChanged to track propery value changes
9487         in its datasource, but uses the same scheme as Binding, where it
9488         looks for a <Property>Changed event and binds to it.
9490         Also, according to the docs, IsSuspended always returns false for
9491         a property manager with a non-null datasource.
9493 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
9495         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
9496           need to update the actual DialogResult. (Fixes #78613)
9498 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
9500         * Form.cs (ShowDialog): Release any captures before running the
9501           new message pump (fixes #78680)
9503 2006-06-22  Mike Kestner  <mkestner@novell.com>
9505         * ListView.cs: Layout column widths properly in details mode even 
9506         if HeaderStyle.None is set.  Fixes #78691.
9508 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
9510         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
9512 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
9514         * Control.cs (ContainsFocus): Using new driver method to get focused
9515           window, instead of trying to use internal tracking var, which can
9516           recursion issues (Fixes #78685)
9517         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
9518           XplatUIWin32.cs: Added GetFocus method to return focused window
9520 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9522         * ColorDialog.cs: when the mouse button is pressed inside the color
9523         matrix, don't let the cursor move out of it until the button is
9524         released, which is the behavior on windows. Changed 'colours' by
9525         'colors' to use the same word consistently.
9527 2006-06-21  Chris Toshok  <toshok@ximian.com>
9529         * DataGrid.cs: add in some basic navigation stuff (navigating to a
9530         child relation and back, using a stack).  Also, remove
9531         GetDataSource and the code that calls it - it's not needed.  Also,
9532         track CurrencyManager.ListName's removal.
9534 2006-06-21  Chris Toshok  <toshok@ximian.com>
9536         * CurrencyManager.cs: push some of the original type checking from
9537         BindingContext.CreateBindingManager to here, and remove some of
9538         the finalType stuff.  Need more tests to make sure I've got the
9539         ListName part right, and we might need more in SetDataSource.
9541         * PropertyManager.cs: add a ctor that takes just the datasource,
9542         and no property name.  Make SetDataSource work with a null
9543         property_name, and make Current return the data_source if the
9544         property descriptor is null.  this makes 'string foo = "hi";
9545         BindingContext[foo].Current' return "hi" as it should.
9547         * RelatedCurrencyManager.cs: make this code more generic - there's
9548         no reason the parent manager has to be CurrencyManager, and
9549         there's no reason to pass the DataRelation.  It suffices to use a
9550         BindingManagerBase and PropetyDescriptor.
9552         * RelatedPropertyManager.cs: make a similar change here.
9553         
9554         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
9555         flower I knew it could be.
9557 2006-06-20  Chris Toshok  <toshok@ximian.com>
9559         * PropertyManager.cs: the PropertyChangedHandler is invoked when
9560         data in the source has changed and we need to update the control,
9561         so s/PullData/PushData.
9563         * CurrencyManager.cs: Refresh is meant to update the control from
9564         data in the datasource.  So, s/PullData/PushData.
9566         * BindingContext.cs: add more ugliness (we weren't handling the
9567         case where data_source = DataTable and data_member = column_name).
9569         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
9570         from the perspective of the datasource.  PullData pulls from the
9571         control, PushData pushes to the control.
9573 2006-06-20  Chris Toshok  <toshok@ximian.com>
9575         * BindingContext.cs: rewrite the CreateBindingManager code to
9576         handle navigation paths more or less properly.  This could
9577         definitely stand some more work, in particular to push the
9578         recursion up to the toplevel.  But that relies on fixes in other
9579         places (System.Data comes to mind).
9581         Also, move to a flat hashtable (and encode the twolevel nature of
9582         the dictionary into the hash key).  This lets us implement the
9583         IEnumerable.GetEnumerator method.
9585         * RelatedCurrencyManager.cs: new class.  Update our view based on
9586         our relation and our parent CurrencyManager's position.
9588         * CurrencyManager.cs: split out some logic from the ctor into
9589         SetView, so it can be called from the new RelatedCurrencyManager
9590         subclass.
9592         * RelatedPropertyManager.cs: new class.  Update our datasource
9593         based on the position of our parent CurrencyManager.
9595         * PropertyManager.cs: split out some logic from the ctor into
9596         SetDataSource, so it can be called from the new RelatedDataSource
9597         subclass.  Also, make the Current getter return the value
9598         of the PropertyDescriptor, not the data_source.
9600         * Binding.cs: no need to duplicate the string splitting code here.
9602 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
9604         * Control.cs:
9605           - set_Enabled: OnEnabledChanged is not called if the inherited state 
9606             of the control is not altered, even though  we might be changing the
9607             internal state of the control (#78458)
9608           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
9609             OnEnabledChanged, to allow easy altering of any child window state
9610           - OnEnabledChanged: Added code to enable/disable driver window state
9611           - OnParentEnabledChanged: Instead of firing the event, call 
9612             OnEnabledChanged, which will fire the event and also a) set driver
9613             window state and pass the enabled state to any grandchildren (#78458)
9615 2006-06-19  Jackson Harper  <jackson@ximian.com>
9617         * InternalWindowManager.cs: We don't set the cursor explicitly
9618         thats done via the response to NCHITTESTs.
9619         - Don't need to adjust for titlebar heights anymore, the
9620         coordinates are coming in the correct coordinates now (see peters
9621         last patch).
9624 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
9626         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
9627           being translated relative to whole window, instead of client window.
9628           That caused broken offsets on mouseclick (and caused gas for our
9629           InternalWindowManager)
9631 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
9633         * TextControl.cs:
9634           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
9635           - Undo(): Added replay of cursor move on DeleteChars action; added
9636             calling Undo() again if a recorded cursor move is invalid (to
9637             ensure that some action is performed on Undo)
9638         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
9640 2006-06-16  Jackson Harper  <jackson@ximian.com>
9642         * MdiClient.cs: Instead of just sizing maximized windows when
9643         there is a resize we also have to adjust the Y of minimized
9644         windows, so they stay pinned to the bottom of the mdi container.
9645         - Eliminate separate tracking of the active control, we can just
9646         get this from the controls collection.
9647         - Paint the decorations for the newly activated titlebar so we get
9648         a pretty blue bar.
9649         * InternalWindowManager.cs:
9650         * ThemeWin32Classic.cs: Minimized windows get all three buttons
9651         even if they are a tool window.
9652         
9653 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
9655         * TextControl.cs (Undo): Handle non-existent cursor locations in the
9656           undo buffer, these can happen when text was deleted and the cursor
9657           was recorded first. Since we will also have a recorded cursor
9658           after the delete this is not an issue. (Fixes #78651)
9660 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
9662         * AccessibleObject.cs: Remove dependence on Control.is_selected;
9663           instead properly track control states internally (allows us to
9664           remove is_selected from Control)
9666 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9668         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
9669         whose width is not a multiple of 8.
9671 2006-06-13  Jackson Harper  <jackson@ximian.com>
9673         * MdiClient.cs:  Only maximize the next child if the current one
9674         is maximized.
9676 2006-06-13  Chris Toshok  <toshok@ximian.com>
9678         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
9679         modified.  Also, guard against grid or grid_drawing being null in
9680         Invalidate.
9682         * DataGrid.cs: Reformat tons of getters/setters.  In the
9683         DataMember setter, just call SetNewDataSource instead of
9684         duplicating some of its functionality.  In SetNewDataSource, don't
9685         check ListManager for null, since the property getter creates the
9686         object if needed.
9688         * DataGridTableStyle.cs: don't set TableStyle or call
9689         SetDataGridInternal on the column here, it's done in
9690         GridColumnStylesCollection.Add.
9692         * GridColumnStylesCollection.cs: fix all the explicit interface
9693         implementations to just call our methods.  Nuke AddInternal() and
9694         move the body of it to Add().  Also, add a call to
9695         column.SetDataGridInternal to Add().
9697         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
9698         base()+duplicate code.  Also, use the Format property instead of
9699         format to generate an Invalidate ala MS.  Lastly, create the
9700         textbox here, unconditionally.
9701         (set_Format): call Invalidate.
9702         (get_TextBox): no need to call EnsureTextBox.
9703         (Commit): remove the message box.
9704         (Edit) remove the call to EnsureTextBox.
9705         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
9706         (EnterNullValue): no need to check textbox for null.
9707         (HideEditBox): no need to check textbox for null.
9708         (SetDataGridInColumn): add the textbox to the grid's controls.
9709         (EnsureTextBox): nuke.
9710         
9711 2006-06-13  Jackson Harper  <jackson@ximian.com>
9713         * MdiWindowManager.cs: Hook up to the maximized menus paint event
9714         and redraw the buttons when needed. Unhook when the window is
9715         unmaximized.
9716         * MainMenu.cs: Add an internal Paint event, the mdi window manager
9717         needs this so that it can redraw its buttons when the menu is
9718         repainted.
9719         * InternalWindowManager.cs:
9720         * Form.cs: The method order has changed for DrawMaximizedButtons,
9721         so that it can be a PaintEventHandler.
9722         
9723 2006-06-13  Jackson Harper  <jackson@ximian.com>
9725         * MdiClient.cs: When we close a maximized mdi window, the next mdi
9726         window is activated and maximized, even if it wasn't before.
9727         - When  a new window is activated repaint the decorations of the
9728         old one, so that it no longer has the Active "look" (the blue
9729         titlebar).
9730         * InternalWindowManager.cs: Open up CreateButtons to base classes
9731         so they can recreate the buttons on state changes.
9732         - If a window is maximized give it all three buttons
9733         * MdiWindowManager.cs: Create the titlebar buttons when the state
9734         is changed, this is needed because a toolwindow will not have all
9735         three buttons until it is maximized.
9737 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
9739         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
9740           Fixed bug #78609.
9742 2006-06-12  Jackson Harper  <jackson@ximian.com>
9744         * KeysConverter.cs: Make sure we handle the Ctrl special case
9745         if its the only key.
9746         
9747 2006-06-12  Jackson Harper  <jackson@ximian.com>
9749         * Theme.cs: Add a method to get the size of a managed window
9750         toolbar button.
9751         * InternalWindowManager.cs: Remove the ButtonSize property, this
9752         should be retrieved from the theme.
9753         * MdiWindowManager.cs: Get the button size from the theme
9754         * ThemeWin32Classic.cs: Make the method to get the managed window
9755         titlebar button size public.
9756         - Handle the different button sizes of maximized toolwindows
9757         (should match any maximized window).
9758         - Get the titlebar height from the theme, not the WM (which gets
9759         it from the theme).
9761 2006-06-12  Jackson Harper  <jackson@ximian.com>
9763         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
9764         event down to the mdi window manager.
9765         - Expose some extra stuff to base classes
9766         - Make sure to end the Capture on an NC Mouse up, so that we can
9767         get double clicks properly, and the sizing doens't stick.
9768         - When doing PointToClient contain it in the workable desktop
9769         area, this prevents windows from changing size when the cursor is
9770         pulled outside of the working area while sizing.
9771         * MdiWindowManager.cs: When we get a double click maximize the
9772         window.
9773         - Reset the cursor after handling mode changes.
9775 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
9777         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
9778           current desktop, instead of just assuming a 0, 0 origin. This
9779           is needed for our internal window manager, to know the top
9780           margin of the desktop
9782 2006-06-12  Chris Toshok  <toshok@ximian.com>
9784         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
9785         we need this to get rid of the selected background in the bool
9786         column.
9787         (CancelEditing): move the ConcedeFocus call to above the Abort
9788         call.  Also, set is_changing to false and invalidate the row
9789         header if we were changing before.
9790         (ProcessKeyPreviewInternal): remove, since noone outside this
9791         class calls it anymore.  Roll the code into ProcessKeyPreview.
9792         (EndEdit): remove the internal version.
9793         (InvalidateCurrentRowHeader): make private.
9795         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
9796         Keys.Escape handling (and with it the last call to
9797         DataGrid.EndEdit from outside the class.)
9800 2006-06-12  Chris Toshok  <toshok@ximian.com>
9802         * DataGridTextBox.cs (.ctor): isedit defaults to false.
9803         (OnKeyPress): set isedit to true.
9804         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
9805         already handled by the grid.
9807         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
9808         right.  ugh.
9809         (set_DataSource): SetDataSource always returns true, so stop
9810         putting it in an if statement.
9811         (EndEdit): get rid of some {}'s
9812         (ProcessGridKey): return true in case Keys.Escape.
9813         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
9814         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
9815         PositionChanged, stopped connecting to CurrentChanged.
9816         (GetDataSource): simplify this a bunch.
9817         (SetDataSource): change return type from bool to void.
9818         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
9819         to this, and make sure we don't set ListManager.Position inside
9820         set_CurrentCell.
9821         (OnListManagerItemChanged): if we're passed an actual index,
9822         redraw that row.
9824         * CurrencyManager.cs (set_Position): don't call PullData here.
9826 2006-06-09  Jackson Harper  <jackson@ximian.com>
9828         * TreeNode.cs:  Recalculate the visible order before doing the
9829         Expand/Collapse Below calls, because those calls generate an
9830         expose.
9831         - Reduce calls to the TreeView property, which is mildly expensive
9832         by using a local var.
9833         * Form.cs: Layout the MDI child windows when creating the parent
9834         form.
9835         - Don't use the internal constructor anymore
9836         * MdiClient.cs: use the parent form width/height (if available)
9837         when laying out the child windows, we do this because the
9838         mdiclient isn't docked yet when the initial layout is done.
9839         - Don't need an internal constructor anymore.
9841 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9843         * FileDialog.cs: handle access errors when trying to create a folder
9844         or changing to a directory. No need to initialize out parameters.
9846 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
9848         * FileDialog.cs: Append a number when creating a new folder if the
9849           folder already exists (use parenthesis instead of square brackets)
9851 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
9853         * FileDialog.cs:
9854           - Disabled registry support for windows and added better registry
9855             error checking for other systems (need to investigate why it
9856             works perfectly on my system)
9857           - If a folder already exist show an error MessageBox instead of
9858             trying to create an indexed name.
9859           - Fixed a non intentional typo.
9861 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9863         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
9865 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
9867         * FileDialog.cs: When creating a new folder don't crash if the
9868           folder already exists.
9870 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
9872         * FileDialog.cs: Allmost a complete rewrite.
9873           - added a "virtual" file system that handles the differences
9874             between unix and windows file systems (especially the directory
9875             structure). Moved most of the directory and file handling code
9876             into the vfs.
9877             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
9878             UnixFileSystem and FSEntry.
9879           - Recently used folder/directory, size, location and used file names
9880             (file name ComboBox) are now stored in the registry and get read
9881             before the dialog shows up (fixes part 6 of bug #78446).
9882           - Creation of new folders/directories is now possible (context menu
9883             or ToolBar). Added TextEntryDialog for this that fills in the gap
9884             until ListView.LabelEdit works.
9885           - Fixed cursor handling (bug #78527) and focus handling for
9886             PopupButtonPanel
9887           - Various "Search in" ComboBox enhancements. The content of the
9888             dropdown listbox now almost matches ms.
9889           - Changed the behaviour when the user switches to SpecialFolder
9890             Recent to show the ListView in View.Details.
9891           - Beside using the ToolBar to change the View property of the
9892             file ListView it is now possible to use the context menu too.
9894 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
9896         * ComboBox.cs: Don't create a new ObjectCollection when an item
9897           gets inserted. Just insert the item in the existing object_items
9898           ArrayList.
9900 2006-06-08  Jackson Harper  <jackson@ximian.com>
9902         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
9903         that the treeview and root node checks are done also, this fixes a
9904         regression i caused in the unit tests.
9906 2006-06-07  Wade Berrier <wberrier@novell.com> 
9908         * RichTextBox.cs: More ISO8859-1 -> unicode
9910 2006-06-07  Mike Kestner  <mkestner@novell.com>
9912         * ComboBox.cs : use items to hold highlight/selection so that
9913         collection insertions don't require synchronization.
9915 2006-06-07  Jackson Harper  <jackson@ximian.com>
9917         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
9918         routine.  We now always keep the sized edge at the cursor instead
9919         of computing movement and adjusting rects.  There is one buglet
9920         with this method though when the cursor is moved over area that
9921         the window can not expand too (such as the toolbars on the desktop).
9923 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9925         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
9926         here. Fixes crash on startup in AlbumSurfer.
9928 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
9930         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
9931           values
9933 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9935         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
9936         statement to avoid calling XNextEvent which will block if another thread
9937         took the event that we were expecting. Fixes bug #78605.
9939 2006-06-07  Mike Kestner  <mkestner@novell.com>
9941         * ListView.cs : isolated checkbox clicking from the selection logic.
9942         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
9944 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9946         * Form.cs: Check that the value passed to Form.DialogResult
9947         is a valid enum value.
9949 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9951         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
9952         Computer'. Clicking it in the network view goes to 'My Computer'.
9953         Added CIFS filesystem type. Display the mount point of filesystems.
9954         Avoid duplicate mount points (happens for me with CIFS);
9956 2006-06-06  Jackson Harper  <jackson@ximian.com>
9958         * InternalWindowManager.cs: Draw the maximized windows buttons
9959         when resizing.
9961 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9963         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
9964         all other dialogs. Fixes bug #78585.
9966 2006-06-06  Mike Kestner  <mkestner@novell.com>
9968         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
9969         Only invalidate checkbox on checkstate changes to avoid flicker.
9970         * ListBox.cs : avoid unselect/select when clicking selected item.
9971         avoid reselection flicker for already multiselected items.
9972         Fixes #78382.
9974 2006-06-06  Jackson Harper  <jackson@ximian.com>
9976         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
9977         the parent form so that the menu is removed if needed.
9979 2006-06-06  Mike Kestner  <mkestner@novell.com>
9981         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
9982         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
9984 2006-06-06  Mike Kestner  <mkestner@novell.com>
9986         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
9989 2006-06-06  Jackson Harper  <jackson@ximian.com>
9991         * Control.cs: Use the property (instead of the field) to get the
9992         default cursor so it is instantiated correctly.
9993         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
9994         resizes so we need to manually repaint the window decorations here.
9995         - Set the titlebar button locations as soon as they are created,
9996         otherwise they are not set correctly on win32.
9997         
9998 2006-06-06  Chris Toshok  <toshok@ximian.com>
10000         * CurrencyManager.cs (set_Position): call PullData before
10001         OnCurrentChanged.
10002         (AddNew): after calling IBindingList.AddNew, update our
10003         listposition, and call OnCurrentChanged/OnPositionChanged (without
10004         calling PullData).
10005         (OnCurrentChanged): remove the call to PullData from here.
10006         (OnItemChanged): remove the call to PushData from here.
10007         (OnPositionChanged): change the test from == null to != null to
10008         match the other methods.
10009         (ListChangedHandler): the grossest part of the patch.  Implement
10010         this such that it passes the unit tests in CurrencyManagerTest and
10011         the output more or less matches that of MS's implementation.
10013 2006-06-06  Mike Kestner  <mkestner@novell.com>
10015         * ListView.cs : only update check state on single click.
10016         * ThemeWin32Classic.cs : fix focus drawing for details view without
10017         fullrowselect.  Fixes #78454.
10018         * XplatUIX11.cs : fix for double click emission.
10020 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
10022         * PropertyGridView.cs : Applied Atsushi's patch to fix
10023         font dialog bug  (#78197).
10025 2006-06-05  Jackson Harper  <jackson@ximian.com>
10027         * TreeNode.cs: Compute the next node for expanding/collapsing
10028         correctly. We now factor in nodes without a NextNode
10029         correctly. (Fixes somes cases in nunit-gui).
10030         * InternalWindowManager.cs: Set the bounds when updating the
10031         virtual position of a tool window.
10032         
10033 2006-06-05  Chris Toshok  <toshok@ximian.com>
10035         * DataGrid.cs: rename cached_currencymgr to list_manager.
10036         (set_CurrentCell): move SetCurrentCell code here, and clean it up
10037         some.
10038         (CurrentRow, CurrentColumn): single accessors so we can make the
10039         cursor movement code a lot easier to understand.
10040         (CurrentRowIndex): implement this in terms of CurrentRow.
10041         (BeginEdit): clean this up a bit.
10042         (CancelEditing): sort out the is_editing/is_changing/is_adding
10043         stuff a little.
10044         (EndEdit): minor changes.
10045         (OnKeyDown): add a comment about a (most likely) unnecessary
10046         check.
10047         (OnMouseDown): cancel editing when we click on a row header.  And
10048         use the CurrentRow setter, not CurrentCell.
10049         (ProcessDialogKey): directly call ProcessGridKey.
10050         (UpdateSelectionAfterCursorMove): factor out this common block of
10051         code (it's used everywhere that we move the cursor by updating row
10052         or column).
10053         (ProcessGridKey): pretty substantial overhaul.  Use the
10054         CurrentRow/CurrentColumn properties to make the code a lot more
10055         readable.  Only use the CurrentCell property when we have to
10056         modify both row and column at once.  Tab behavior is still broken,
10057         and Delete is untested.
10058         (Select): if we have no selected rows, set selection_start to
10059         @row.
10060         (EditCurrentCell): rename EditCell this.  It was only ever invoked
10061         with CurrentCell as the arg, so drop the arg and rename it.
10063         * DataGridColumnStyle.cs: clean up the constructors a little, and
10064         drop CommonConstructor().
10066         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
10067         actually get notified when the user hits it.
10068         (ProcessKeyMessage): *substantially* simplify this method.
10069         There's no reason (that I can see) for the textbox to be making
10070         calls into the datagrid at all.  Remove all of them but the ones
10071         for Enter handling.  those will take some more work.
10073         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
10074         calling HideEditBox.
10075         (HideEditBox): if we have an active textbox, render it invisible
10076         without causing a re-layout of the datagrid.
10078 2006-06-05  Mike Kestner  <mkestner@novell.com>
10080         * ListView.cs : fix NRE crasher when focuseditem is cleared by
10081         collection changes by resetting it to Items[0].  Fixes #78587.
10083 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10085         * MessageBox.cs: if the height of the text is larger than the icon_size,
10086         use that. Fixes bug #78575.
10088 2006-06-05  Jackson Harper  <jackson@ximian.com>
10090         * TreeView.cs: Fix line drawing when scrolling.  To do this each
10091         node is basically responsible for drawing its entire horizontal
10092         area.  When drawing a node it draws its parent node lines if
10093         needed.
10094         - Adjust the clip area to the viewport rectangle
10095         - Fix Left/Right key handling to match MS. (It expand/collapses
10096         and moves to parents/first child but does not move selection to
10097         sibling nodes).
10098         - Fix SetTop to work with new bound calculation code
10099         - When scrollbars are no longer needed we need to reset scrolling
10100         vars and recalculate the visible order so the redraw is correct
10101         * TreeNode.cs: We can't expand/collapse nodes with no children.
10103 2006-06-03  John Luke  <john.luke@gmail.com> 
10105         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
10106         so the colors work without dev packages
10107         
10108 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
10110         * Control.cs 
10111           - Select: Implemented to just use activate. Seems to match MS 
10112             behaviour closest. Documented to only do actual control walking 
10113             based on it's parameters if in a container control so I moved 
10114             the code there.
10115           - Removed selection check logic from our internal Select() method
10116         * ContainerControl.cs:
10117           - Select: Moved selection logic from Control here, since MS documents
10118             that containers obey the bool arguments. No longer calling base
10120 2006-06-02  Jackson Harper  <jackson@ximian.com>
10122         * TreeView.cs: If the selected node isn't changed when we get
10123         focus update the previously selected node so that we see the
10124         selection box.
10126 2006-06-02  Mike Kestner  <mkestner@novell.com>
10128         * ComboBox.cs: restructure grab and general mouse event handling.
10129         Make the composite control raise mouse events like it was a single
10130         control for leaves/enters/motion/up/down events.  fix dropdown list
10131         coordinate mangling and refactor it into the scrollbar subclass to
10132         reduce code duplication.  Fixes #78282 #78361 and #78457.
10134 2006-06-02  Mike Kestner  <mkestner@novell.com>
10136         * ScrollBar.cs: remove Capture setting/clearing, as it happens
10137         automatically in the Control.WndProc.
10139 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10141         * FileDialog.cs: fix crash when running SharpChess, which sets the
10142         FilterIndex to 2 with only one Filter.
10144 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10146         * ToolBar.cs: add SizeSpecified property.
10147         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
10148         try to figure out our real size, otherwise fallback to what the
10149         container says.
10151 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
10153         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
10154         * Control.cs (WndProc): MS always calls the DefWndProc to pass
10155           up the event
10157 2006-06-01  Mike Kestner  <mkestner@novell.com>
10159         * ListView.cs: revamp the focus management in ListView.  It still
10160         causes churn of LostFocus/GotFocus emissions on clicks, but it's
10161         better than not handling focus at all.  Will revisit when pdb feels
10162         the general focus handling is solid.  Fixes #78526.
10164 2006-06-01  Jackson Harper  <jackson@ximian.com>
10166         * TreeView.cs: Set the default border style in the constructor.
10167         - Move painting to use OnPaintInternal instead of capturing
10168         WM_PAINT, this is the correct way of doing things
10169         - UpdateBelow shouldn't invalidate the scrollbar area
10170         - Cap the top on update below in case the node was above the top
10171         of the viewport rectangle.
10172         - ExpandBelow and Collapse below need to obey Begin/End Update.
10173         * TreeNode.cs: Make is_expanded internal so the treenode
10174         collection can change it without firing the whole event chain.
10175         * TreeNodeCollection.cs: When clearing all the child nodes make
10176         sure to recalc the visible order.
10177         - Improve algo for remove the top node
10179 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
10181         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
10182           SendMessage directly calling window procedures, which in turn might
10183           call SetFocus()
10185 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
10187         * Control.cs: Don't handle WM_SETFOCUS if the same window already
10188           has focus (works around X11 sending a FocusIn after our SetFocus)
10189         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
10191 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
10193         * Mime.cs: Fix for the NET_2_0 build.
10194           NameValueCollection needs StringComparer now.
10196 2006-05-31  Chris Toshok  <toshok@ximian.com>
10198         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
10199         return (via an out parameter) the starting X of the column.
10200         (UpdateVisibleColumn): track change to FromPixelToColumn.
10201         (HitTest): add a ColumnResize case here.
10202         (DrawResizeLine): new function, probably poorly named.
10204         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
10205         only need to keep one reference.
10206         (set_ListManager): same.
10207         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
10208         Also, add support for HitTestType.ColumnResize.
10209         (OnMouseMove): add column resize behavior here, and change the
10210         cursor to the correct one as we move around the datagrid.
10211         (OnMouseUp): terminate the column resize if we're resizing.
10212         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
10213         for the current cell.
10214         (ConnectListManagerEvents): use cached_currencymgr.
10215         (DisconnectListManagerEvents): fill this in, using
10216         cached_currencymgr.
10217         (SetCurrentCell): remove cached_currencymgr_events handling.
10218         (SetDataMember): only call DisconnectListManagerEvents if
10219         cached_currencymgr is != null.
10220         (SetDataSource): same.
10221         (OnListManagerCurrentChanged): cached_currencymgr_events ->
10222         cached_currencymgr.
10224 2006-05-31  Jackson Harper  <jackson@ximian.com>
10226         * BindingManagerBase.cs: Remove somedebug code that creeped into
10227         SVN.
10228         * TreeNode.cs: We get the indent level dynamically right now, so
10229         don't track it as a member.
10230         * TreeNodeCollection.cs: Make sure all nodes added to the list
10231         have parents, treeviews/topnodes setup properly.
10232         - Don't attempt to track indent level.
10234 2006-05-30  Jackson Harper  <jackson@ximian.com>
10236         * BindingContext.cs: Create the currency manager tables here.
10237         This allows us to more easily create null tables (when bad data
10238         members are used), and more easily create related currency
10239         managers.
10240         * CurrencyManager.cs: All the table creation stuff is done by the
10241         binding context now.
10242         - Current should throw an exception if listposition is -1.
10243         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
10244         been bound yet.
10246 2006-05-30  Mike Kestner  <mkestner@novell.com>
10248         * ListView.cs: allow reexpansion of zero-width column headers.
10249         Fixes #78528.
10251 2006-05-28  Chris Toshok  <toshok@ximian.com>
10253         * CurrencyManager.cs (get_Current): after the late binding
10254         listposition = -1 fix, we need to guard against it here and return
10255         null, otherwise we raise an exception (which is swallowed
10256         elsewhere, and breaks datagrid databinding.)
10258 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
10260         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
10261           than WM_SYSKEY, don't throw if get something unexpected (#78507)
10263 2006-05-26  Jackson Harper  <jackson@ximian.com>
10265         * ControlPaint.cs:
10266         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
10267         values, it's faster and it's all we care about (we don't care if
10268         the names aren't equal).
10269         * KeyboardLayouts.cs: Eliminate some dead code.
10270         - Lazy init things
10271         * X11Keyboard.cs: Lazy init keyboard detection.
10272         - Cleanup access modifiers a little.
10274 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
10276         * XplatUIX11.cs: Once again, attempting to get layout just right.
10278 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
10280         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
10281           the sizes of each link section, that will result in sizes that
10282           match DrawString's layout (Fixes #78391)
10284 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
10286         * FileDialog.cs: If AddExtension property is true autocomplete the
10287           extensions in SaveFileDialog correctly. Fixes bug #78453.
10288           Set MyNetwork and MyComputer to "C:\" for windows. This should
10289           fix part 8 of bug #78446 for now.
10291 2006-05-26  Chris Toshok  <toshok@ximian.com>
10293         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
10294         invalidate the current row header if we need to, but presumably
10295         we'll invalidate the row corrsponding to the bounds or
10296         editingControl.
10297         (GridHScrolled): switch back to this method, as it's part of the
10298         public api.  *sigh*.
10299         (GridVScrolled): same.
10300         (OnMouseWheel): hack up something that more or less works.  Call
10301         GridHScrolled/GridVScrolled directly, instead of duplicating much
10302         of their code here.
10303         (EnsureCellVisibility): reinstate a bunch of this code, since we
10304         can't just set the scrollbar Value and expect to do all the work
10305         in the ValueChanged handler.  Also, Call Update() after scrolling
10306         in one direction so the other XplatX11.ScrollWindow call has the
10307         proper stuff in the proper places.
10308         (EditCell): set is_editing to true before calling .Edit.
10310         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
10311         don't bother comparing first.
10312         (OnKeyPress): call grid.ColumnStartedEditing before calling
10313         base.OnKeyPress.  this will set is_changing and invalidate the row
10314         header if necessary.
10315         (ProcessKeyMessage): for WM_CHAR messages, call
10316         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
10317         and WM_KEYDOWN.
10318         
10319         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
10320         it's done in the DataGrid.
10321         (NextState): call grid.ColumnStartedEditing, which takes care of
10322         invalidating the row header (and setting is_changing).
10324         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
10325         here.  it's done in the DataGrid.
10327 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10329         * Control.cs: allow changing the cursor when the mouse position is
10330         out of bounds but Capture is set.
10331         * LinkLabel.cs: handle the case when the mouse button is pressed on the
10332         linklabel but released somewhere else.
10334 2006-05-25  Jackson Harper  <jackson@ximian.com>
10336         * TreeView.cs: When we get focus if there is no selected node make
10337         it the top node
10338         - Remove some uneeded setup code from Draw.
10339         * TreeNodeCollection.cs: If the tree doesn't have a top node when
10340         a new node is inserted make the new node the top.
10341         * XplatUIX11.cs:
10342         * Timer.cs: Use Utc time so that no local time zone stuff needs to
10343         be used (should be faster).
10344         
10345 2006-05-25  Chris Toshok  <toshok@ximian.com>
10347         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
10348         problem with the last commit.
10350 2006-05-25  Chris Toshok  <toshok@ximian.com>
10352         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
10353         need the invalidate call here, while scrolling right-to-left via
10354         the left arrow key (i.e. moving the editing cell while scrolling).
10356         * DataGrid.cs (.ctor): remove the initialization of
10357         ctrl_pressed/shift_pressed.  We no longer track them using key
10358         up/down handlers, but by using Control.ModifierKeys.  Also, switch
10359         to using ValueChanged handlers on the scrollbars instead of
10360         Scrolled event handlers.  This simplifies a bunch of the scrolling
10361         code.
10362         (GridHValueChanged): rename from GridHScrolled, and change it to
10363         work with the new event args.
10364         (GridVValueChanged): same.
10365         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
10366         (OnMouseWheel): actually scroll the datagrid.  Don't change the
10367         selected cell.
10368         (ProcessGridKey): correct all the keyboard navigation stuff I
10369         could find.  Ctrl up/down/left/right/home/end work now.
10370         (EnsureCellVisibility): correct method name spelling.  Also,
10371         simplify this a touch by not explicitly calling the
10372         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
10373         scrollbar value.
10374         (OnKeyUpDG): no need for this method now.
10375         
10376 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10378         * LinkLabel.cs: display the OverrideCursor when hovering the label.
10379         Fixes bug #78392.
10381 2006-05-25  Chris Toshok  <toshok@ximian.com>
10383         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
10384         r61019.
10386 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
10388         * Application.cs: Moved setting of is_modal and closing to before
10389           we create the control, to allow the event handlers called as a
10390           result of creation affect closing. Also removed Gonzalo's previous
10391           change to setting DialogResult, the behaviour has been moved to 
10392           Form.ShowDialog()
10393         * Form.cs: 
10394           - ShowDialog(): Removed explicit creation of the form, let RunLoop
10395             handle it instead
10396           - ShowDialog(): If no dialog result is set, we need to return Cancel
10397           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
10398             the close is cancelled
10400 2006-05-25  Jackson Harper  <jackson@ximian.com>
10402         * StatusBar.cs: We only need to update the sizes of the other
10403         panels when we have auto size contents.  Also we are only updating
10404         the contents of the panel, not the borders, so compensate for the
10405         border width (TODO: get this width from the theme somehow).
10406         * TreeView.cs: Scrollable is true by default
10407         - Use invalidate instead of refresh where needed
10408         - Factor the scrollable value into scrollbar updating
10409         - Update the scrollbars if the Scrollable property is altered
10410         - Update the selected node if its ImageIndex is changed
10411         - Handle null nodes in UpdateNode (mainly so we don't have to
10412         check if selected is null when updating it
10413         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
10414         are factored into the visible count
10415         - Use VisibleCount for clarity in the code
10416         - When the font is changed we need to recurse through all the
10417         nodes and invalidate their sizes
10418         
10419 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10421         * Application.cs: set the DialogResult to fixed when the main form is
10422         hidden or destroyed while being modal.
10424 2006-05-25  Miguel de Icaza  <miguel@novell.com>
10426         * Theme.cs: Use Tangoified messagebox icons. 
10428         (GetSizedResourceImage): Also cope with width = 0 and do not
10429         trigger a warning in that case (0 means "give me your icon from
10430         the resouce, no special size needed).
10432 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
10434         * Application.cs: Leave runloop if the the main modal form is 
10435           hidden (fixes #78484)
10437 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
10439         * BindingContext.cs : reject null datasource in Contains() and
10440           Item[].
10441         * CurrencyManager.cs : check data_member validity when data_source
10442           is dataset. When it is late binding, the initial position is -1.
10444 2006-05-24  Jackson Harper  <jackson@ximian.com>
10446         * TreeNodeCollection.cs: Dont't recalculate the visible order on
10447         inserted nodes that aren't visible.  This changes the
10448         max_visible_order which confuses scrollbar settings.
10449         - Use the enumerator to get the prev node instead of duplicating
10450         code.
10451         * TreeView.cs: Use new method for setting scrollbar values
10452         - Don't set the bounds every time the scrollbar is updated
10453         - When updating below the root node use an invalidate instead of a
10454         refresh to prevent the child controls (scrollbars) from being
10455         refreshed. (UpdateBelow still needs to be reworked anyways).
10456         - Reenable SetBottom now that visible orders are set correctly,
10457         added some debug code incase we ever get bad values there again.
10458         - Set the scrollbar max to 2 less then the max value, this
10459         compensates for the max value being one above the node count, and
10460         for scrollbars adding one extra "notch".
10461         - When drawing image nodes if there is an imagelist we draw the
10462         first image in the list if the supplied image index is out of the
10463         image list's bounds.
10464         
10465 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
10467         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
10468           we receive a size change from the WM (Fixes #78503)
10470 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
10472         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
10473           rectangle (Fixes #78501)
10475 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
10477         * ButtonBase.cs: 
10478           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
10479             as a bitfield.
10480           - Fixed MouseMove to no longer switch pressed state unless the left
10481             mouse button is pressed. Atsushi provided the original patch (#78485)
10482           
10483 2006-05-24  Jackson Harper  <jackson@ximian.com>
10485         * ScrollBar.cs: New internal methods that allow us to change a
10486         couple values on the scrollbar (the most common case is maximum
10487         and large change) without getting multiple invalidates.
10489 2006-05-24  Chris Toshok  <toshok@ximian.com>
10491         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
10492         (Edit): save off the original state in oldState, and set
10493         grid.is_editing to true.
10494         (OnKeyDown): abort editing if escape is pressed.  also, call
10495         NextState if space is pressed.
10496         (OnMouseDown): call NextState.
10497         (NextState): factor out shared code from OnKeyDown and OnMouseDown
10498         here.  Also, only invalidate the row header once (on the initial
10499         is_changing switch) to save on redraws.
10501 2006-05-24  Chris Toshok  <toshok@ximian.com>
10503         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
10504         if the value in the cell is different than it was before.  This
10505         keeps us from triggering a layout when we move around a datarid
10506         with a highlighted cell.
10507         (Edit): suspend layout when creating/positining the text box, and
10508         resume passing false so we don't ever actually re-layout.
10509         (ReleaseHostedControl): same.
10510         (EnsureTextBox): reformat slightly, and set WordWrap to false.
10512         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
10513         control-key sequences should go to the datagrid - remove that
10514         lock.  Also, modify the conditions under which we move between
10515         cells when moving the cursor within a cell, and remove the "this"
10516         and "base" from field accesses.  We weren't even consistent, given
10517         they all were in the base class.
10519 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
10521         * Binding.cs : (.ctor)
10522           An obvious NRE fix for BindingTest.CtorNullTest().
10524 2006-05-23  Chris Toshok  <toshok@ximian.com>
10526         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
10527         them between lines.  This fixes some quirks editing cells in the
10528         datagrid.
10530 2006-05-23  Jackson Harper  <jackson@ximian.com>
10532         * TreeView.cs: Use begin/end update when doing expand/collapse all
10533         so that we don't get flicker on the scrollbar.
10535 2006-05-23  Jackson Harper  <jackson@ximian.com>
10537         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
10538         treenode calculations to be independant of the painting code. To
10539         do this nodes track a visible order which is calculated by the
10540         treeview.
10541         - Call new methods for expanding/collapsing nodes.  These methods
10542         use scrollwindow so we don't have to update everything below the
10543         node.
10544         * TreeView.cs: Refactored drawing and scrolling code.  We don't
10545         need to update nodes when drawing anymore or calculate scrollbar
10546         stuff.
10547         - Added new methods for expanding/collapsing nodes. These methods
10548         use ScrollWindow so as to not have to redraw all the nodes below.
10549         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
10550         we add/remove nodes or sort.
10551         - Handle removing the selected and the top node properly.
10553 2006-05-23  Chris Toshok  <toshok@ximian.com>
10555         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
10556         maybe this should actually happen in the datagrid code?
10557         (EndEdit): no need to invalidate anything, given that
10558         ReleaseHostedControl causes the datagrid to relayout, which
10559         invalidates everything anyway.
10561         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
10562         in SetCurrentCell).
10563         (set_SelectionBackColor): call InvalidateSelection instead of
10564         Refresh.
10565         (set_SelectionForeColor): same.
10566         (BeginEdit): Flesh this out a bit.
10567         (CancelEditing): only do any of this if we're editing/adding.
10568         (EndEdit): same.
10569         (OnMouseDown): there's no need to cancel editing here, it's done
10570         in SetCurrentCell.
10571         (SetCurrentCell): only invalidate the current row header if it's a
10572         different row than the new one.
10573         (ShiftSelection): fix this to work like MS does.
10574         (ResetSelection): factor out the invalidation of selected_rows to
10575         InvalidateSelection.
10576         (SetDataSource): cancel any editing that's going on.
10578         * DataGridColumnStyle.cs
10579         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
10580         call the non-interface version.
10582         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
10583         header rectangle with the clip rectangle so we don't redraw the
10584         entire header for just a small area.  Gets rid of the last flicker
10585         when horizontally scrolling.
10586         (DataGridPaintRow): same.
10588 2006-05-23  Mike Kestner  <mkestner@novell.com>
10590         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
10591         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
10592         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
10593         Critical bug report.
10595 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
10597         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
10598           and this fixes #78493
10600 2006-05-23  Miguel de Icaza  <miguel@novell.com>
10602         * Theme.cs (GetSizedResourceImage): Scale images if the proper
10603         size is not found.  
10604         
10605         * FileDialog.cs: Do not change the background for the side bar as
10606         it wont work nicely with the theme, and also reduces the artifacts
10607         in rendering the icons (which I want to fix too).
10609         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
10610         resources, not resgen resources. 
10612         (PlatformDefaultHandler): Pull images using the new API.
10614 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
10616         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
10617           a reference to the hwnd and will not remove it unless there are
10618           no pending exposures (fixes #78341)
10619         * XplatUI.cs: Improved debug
10621 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
10623         * MenuAPI.cs : don't handle OnClick event when it was not the left
10624           button. Fixed bug #78487.
10626 2006-05-23  Mike Kestner  <mkestner@novell.com>
10628         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
10629         prefer submenus to the top menu for item lookup, to avoid popping down
10630         top-row items.
10632 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
10634         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
10635           Graphics.FillRectangle as the visual results are really bad (even
10636           on win). We now draw perfect arrows (and perfect shadows when the
10637           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
10638           Pen.DashPattern to draw the dots of each line.
10640 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
10642         * FileDialog.cs: Update the filename combobox when navigating through
10643           the ListView with the cursor keys. Fixes part 7 of bug #78446.
10645 2006-05-22  Mike Kestner  <mkestner@novell.com>
10647         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
10648         Fixes #78463.
10650 2006-05-22  Mike Kestner  <mkestner@novell.com>
10652         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
10653         requests. Fix a misspelled parameter and a copy paste exception error
10654         in Select.
10656 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
10658         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
10659           to get the same width/height (5/13) on X11 as the default font has on
10660           win32. This means that our DefaultFont emSize is smaller than the 
10661           the MS SWF equivalent (even thought the width/height stays the same)
10663 2006-05-20  Jackson Harper  <jackson@ximian.com>
10665         * MdiClient.cs:
10666         * MdiWindowManager.cs:
10667         * InternalWindowManager.cs: Make sure to use the border width from
10668         the theme.
10670 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
10672         * PrintDialog.cs: Implements printer details
10674 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
10676         * FileDialog.cs: Added focus handling for PopupButtonPanel.
10677           Fixes part 1 and 2 of bug #78446
10679 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
10681         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
10682           instead of sticking to the first ever calculated value
10684 2006-05-19  Mike Kestner  <mkestner@novell.com>
10686         * ComboBox.cs: fix mouse motion selection to use MousePosition and
10687         PointToClient, since Capture is set. Fixes #78344.
10689 2006-05-19  Mike Kestner  <mkestner@novell.com>
10691         * ListView.cs: match MS behavior in Details view where items are not
10692         drawn if Columns.Count == 0. 
10693         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
10694         Use a separate pen to draw the check, since changing the width affects
10695         the box as well.  Fixes #78454.
10697 2006-05-18  Miguel de Icaza  <miguel@novell.com>
10699         * ListView.cs: ArgumentOutOfRangeException, single versions of the
10700         exception should throw the name of the invalid argument.
10702         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
10703         there are no files listed. 
10705 2006-05-18  Jackson Harper  <jackson@ximian.com>
10707         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
10708         up.
10710 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
10712         * Control.cs: Brought back our old UpdateZOrder method as a private
10713           function and switched our calls from UpdateZOrder to the new one.
10714           This fixes the Paint.Net canvas disappearing bug.
10716 2006-05-18  Jackson Harper  <jackson@ximian.com>
10718         * Theme.cs:
10719         * ThemeWin32Classic.cs:
10720         * InternalWindowManager.cs: Move the drawing into the theme,
10721         expose everything the theme should need from the window manager.
10723 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
10725         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
10726           from the call to NativeWindow to avoid walking up the parent chain
10727           further than needed (speeds up setting cursors and avoids setting
10728           the wrong cursor if a parent has another cursor defined)
10729         * Cursor.cs: When loading an icon as cursor, MS uses the center of
10730           the icon as hotspot, not what's contained as hotspot in the icon
10731           file. This fixes the perceived drawing offset seen with Paint.Net
10732         
10733 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
10735         * XplatUIX11.cs: 
10736           - Store the calculated rectangle in Hwnd object and use it when 
10737             setting the client size
10738           - Force Toolwindows to always be type Dock, to ensure they're on top
10740 2006-05-18  Mike Kestner  <mkestner@novell.com>
10742         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
10743         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
10744         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
10745         Substantial refactoring to remove confusing nested classes. Coding
10746         standard and Get+Set->property refactorings.  Shift to index based
10747         highlighting in ComboListBox instead of constantly using IndexOf and
10748         Items[]. Add invalidations on resize for DropDownList to fix ugliness
10749         in FileDialog growth.  Draw borders manually since Simple mode needs
10750         to look like two independent controls.  Make listbox border
10751         conditional to DropDownStyle.  Improved OwnerDraw support.
10753 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
10755         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
10756         Don't set the disposed graphics to null, so we can throw the "right"
10757         exception if the graphics is reused later (added a flag to avoid 
10758         double disposing). Some behaviours are different under 2.0 and are
10759         filled under bug #78448.
10761 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
10763         * Control.cs: When double-buffering is enabled, we need to reset
10764           our graphics context between paint calls. Otherwise, any 
10765           transformations and other alterations on the context will 
10766           become cumulative (#77734)
10768 2006-05-18  Mike Kestner  <mkestner@novell.com>
10770         * ListView.cs: do focused item selection like MS on clicks. 
10771         Rework focus handling for ItemControl so LostFocus invalidates as
10772         well.
10773         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
10774         the ListView ItemControl has focus.
10776 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
10778         * XplatUIX11.cs: If client_window ends up being width or height zero
10779           due to border settings, move it off window inside whole_window (#78433)
10781 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
10783         * Mime.cs: Shrink the mime file cache correctly.
10785 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
10787         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
10789 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
10791         * XplatUIX11.cs (AddExpose): More sanity checks
10793 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
10795         * XplatUIX11.cs:
10796           - AddExpose: Don't add expose ranges outside the size of our
10797             window
10798           - Cast opacity values to Int32 to avoid crashes with certain
10799             values
10800           - Added disabled code paths that protect against illegal cross-
10801             thread painting (Developers.exe)
10803 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
10805         * ProgressBar.cs: Invalidate the control when it's resized
10806           since block size is based on control size. (#78388)
10808 2006-05-16  Miguel de Icaza  <miguel@novell.com>
10810         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
10811         of setting the incoming argument to the "reset" value, we set the
10812         this.datamember to string.empty (before we were invalidating the
10813         incoming data).   
10815         Fixes 78420
10817 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
10819         * Form.cs: Only apply transparency settings after the form
10820           is created. (Fixes #77800)
10822 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
10824         * ApplicationContext.cs: Grab the HandleDestroyed event so
10825           we know when to fire OnMainFormClosed 
10827 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
10829         * Application.cs: Introduced sub-class to allow tracking of
10830           threads and centralized triggering of the event mess for
10831           ThreadExit, AppExit, etc..  (#76156)
10833 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
10835         * MimeIcon.cs:
10836           - Do not return a null icon index value for a mime subclass.
10837             Instead try the main mime type class too.
10838           - Seems that some newer distributions don't have a link to some
10839             gnome default icons anymore. So check the default gnome dir too.
10840           
10842 2006-05-16  Jackson Harper  <jackson@ximian.com>
10844         * MdiClient.cs: Don't paint the parent background image if we have
10845         our own background image.
10847 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
10849         * Control.cs:
10850           - PerformLayout: Do not shrink space filled by DockStyle.Fill
10851             controls, all filled controls are supposed to overlap (#78080)
10852           - UpdateZOrder is supposed to update the control's z-order in the
10853             parent's z-order chain. Fixed to behave like that
10854           - BringToFront: Removed obsolete code
10855           - SendToBack: Simplyfied
10856           - SetChildIndex: Trigger layout calculations when Z-order changes
10857             since layout is done by z-order
10859 2006-05-16  Chris Toshok  <toshok@ximian.com>
10861         [ fixes bug #78410 ]
10862         * DataGrid.cs (set_AlternatingBackColor): use
10863         grid_drawing.InvalidateCells instead of Refresh().
10864         (set_BackColor): call grid_drawing.InvalidateCells.
10865         (set_BackgroundColor): use Invalidate instead of Refresh.
10867         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
10868         invalidate the cell area.
10870 2006-05-15  Chris Toshok  <toshok@ximian.com>
10872         [ fixes bug #78011 ]
10873         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
10874         on to DataGridPaintRow.
10875         (DataGridPaintRow): take a clip argument, and only draw the cells
10876         which intersect it.  same with the not_usedarea.
10878         * Theme.cs (DataGridPaintRow) add @clip parameter.
10880         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
10881         XplatUI.ScrollWindow.
10882         (ScrollToRow): same.
10884         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
10885         with last column which was causing a gray swath to appear with the
10886         XplatUI.ScrollWindow code.
10888 2006-05-15  Chris Toshok  <toshok@ximian.com>
10890         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
10891         use XplatUI.ScrollWindow.
10892         (VerticalScrollEvent): use XplatUI.ScrollWindow.
10894 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
10896         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
10898 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
10900         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
10901           file since there are no equivalent X11 cursors
10903 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
10905         * MonthCalendar.cs : DateTimePicker should reflect selected date
10906           on mouse*up*, not mouse*down*. Fixed originally reported part of
10907           bug #76474.
10909 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
10911         * TabControl.cs : When argument index is equal or more than tab
10912           count, just ignore. Fixed bug #78395.
10914 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
10916         * Control.cs: Dispose all child controls when control is diposed (#78394)
10918 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
10920         * ColorDialog.cs: Finally it is possible to select the color with
10921           the text boxes
10923 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
10925         * PrintDialog.cs: Fix typo
10927 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
10929         * PrintDialog.cs: PrintDialog is not resizable
10930         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
10931           color. Made some ToolBar drawing methods protected virtual.
10933 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
10935         * PrintDialog.cs: Implementation of the PrintDialog
10937 2006-05-12  Chris Toshok  <toshok@ximian.com>
10939         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
10940         thumb, instead use MoveThumb.  This has the side effect of making
10941         most of the other thumb moving machinery use MoveThumb as well.
10942         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
10943         need to actually invalidate the rectangle where the new thumb will
10944         go.
10945         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
10946         We force an Update() after, so it's not as fast as it could be,
10947         but at least there's zero flicker and no droppings.
10948         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
10949         (UpdateThumbPos): add another argument (dirty), which says whether
10950         or not to calculate/add dirty regions which we later invalidate.
10951         For cases where we know we're going to use MoveThumb, we pass
10952         false for this.  Otherwise, pass true.
10954 2006-05-12  Jackson Harper  <jackson@ximian.com>
10956         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
10957         the status bar.
10958         
10959 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
10961         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
10962           and GetClipRegion methods and UserClipWontExposeParent property.
10963         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
10964           overriding UserClipWontExposeParent property, setting to false, since
10965           Win32 handles the required expose messages to draw our clipped parent
10966           areas internally
10967         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
10968           PaintEventStart to set the user clip region if set.
10969         * Control.cs: 
10970           - Now internally tracking the Region for the control since we need to
10971             store it if the handle is not yet created and only set it when it
10972             becomes created. Before setting the region forced handle creation
10973           - Added code to draw the parents underneath a user-clipped region
10974         * Hwnd.cs: Added UserClip property
10976 2006-05-12  Chris Toshok  <toshok@ximian.com>
10978         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
10979         (set_Maximum): same.
10980         (set_Minimum): same.
10981         (set_SmallChange): same.
10982         (OnMouseUpSB): remove the call to refresh when releasing the
10983         thumb.  We shouldn't need it.
10984         
10985 2006-05-12  Miguel de Icaza  <miguel@novell.com>
10987         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
10988         AutoSize set to None, we do not need to relayout everything, we
10989         just need to invalidate the current region.
10991         (Draw): Do not draw the entire ClientArea, just redraw the
10992         clip area being passed.
10994         * MdiClient.cs: Make MdiClient constructor with the Form argument
10995         internal. 
10997 2006-05-12  Jackson Harper  <jackson@ximian.com>
10999         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
11000         parents background image,  but strangely not their own.
11001         - (DrawStatusBarPanel): Take into account horizontal alignment
11002         when drawing the strings and icons.
11004 2006-05-12  Mike Kestner  <mkestner@novell.com>
11006         * ListBox.cs: avoid invalidations for focus when the collection is
11007         empty. 
11009 2006-05-12  Chris Toshok  <toshok@ximian.com>
11011         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
11012         invalidate the entire thumb area.  Call InvalidateDirty which
11013         limits the redraw to the thumb itself and surrounding pixels.
11015         * XplatUIX11.cs (ScrollWindow): optimize copying.
11016         
11017 2006-05-12  Chris Toshok  <toshok@ximian.com>
11019         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
11020         Figure out the positioning/layout in a single pass instead of
11021         multiple recursive invocations.  Speeds up the initial display of
11022         the data grid.  Also, make many things private that were
11023         originally public but unused outside this class.
11025 2006-05-11  Jackson Harper  <jackson@ximian.com>
11027         * MdiClient.cs: Improved layout code.
11029 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
11031         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
11032           not SelectedObject.
11034 2006-05-11  Chris Toshok  <toshok@ximian.com>
11036         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
11037         union of that will always be {0,0,width,height}.
11039 2006-05-11  Jackson Harper  <jackson@ximian.com>
11041         * Form.cs: Match MS's DefaultSize for forms (they must have
11042         changed the size in sp2).
11044 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
11046         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
11048 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
11050         * TextControl.cs : Fixed bug #78109. This incorrect position
11051           comparison caused crash on automatic line split.
11052         * TextBoxBase.cs : reduce duplicate code.
11054 2006-05-10  Jackson Harper  <jackson@ximian.com>
11056         * MdiClient.cs: Active form is only sent to the back when using
11057         the Next form functionality, when a form is clicked the current
11058         active shouldn't be sent to the back.
11059         - Layout the mdi windows when the container is first made visible.
11060         * Form.cs: Give the MdiClient a ref to the containing form when we
11061         create it.
11062         
11063 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
11065         * LinkLabel.cs : link_font could be uninitialized, so populate one
11066           before actual use. Fixed bug #78340.
11068 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
11070         * XplatUIX11.cs : clipboard format native value is IntPtr.
11071           Fixed bug #78283.
11073 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
11075         * Control.cs: 
11076           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
11077             which is passed up the parent chain by DefWndProc
11078           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
11079             to DefWndProc (#77956)
11080         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
11082 2006-05-10  Jackson Harper  <jackson@ximian.com>
11084         * MdiClient.cs: We need to remove the controls from the mdi
11085         collection, when we close the window.
11086         * MdiWindowManager.cs: Special handling of closing mdi windows.
11087         * InternalWindowManager.cs: Make the close method virtual so the
11088         mdi window manager can handle it specially.
11090 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
11092         * DataGrid.cs:
11093           - Recalculate grid when the data source has changed
11094           - Matches styles provided by user from all data sources types
11095         * DataGridTableStyle.cs: For columns that provided by the user set the
11096         with the preferred value is there was unassigned.
11097         * CurrencyManager.cs: throw OnItemChanged event
11099 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
11101         * PictureBox.cs: Don't animate until handle is created. Start animation
11102           when handle is created.
11104 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
11106         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
11107           current codebase.
11108         * XEventQueue.cs: We don't need to provide the extra info
11110 2006-05-10  Jackson Harper  <jackson@ximian.com>
11112         * MdiClient.cs: If the mdi clients parent form has a background
11113         image set, we draw that background image for the mdi area's
11114         background.
11116 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
11118         * TextBoxBase.cs: Set IBeam cursor (#78347)
11120 2006-05-10  Mike Kestner  <mkestner@novell.com>
11122         * ToolBar.cs: fix some text padding issues with ButtonSize
11123         calculation. Update the default size to match MS documentation.
11124         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
11125         button size. Fixes #78296.
11127 2006-05-10  Mike Kestner  <mkestner@novell.com>
11129         * ListBox.cs: use is_visible for scrollbar positioning in case the
11130         control isn't on screen yet.  Fix off by one with Right vs Width
11131         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
11132         
11133 2006-05-10  Jackson Harper  <jackson@ximian.com>
11135         * X11Dnd.cs: Drop to a control with another control on top of it.
11136         * ToolBar.cs: Work on a copy of the buttons list, so that it can
11137         be modified in click handlers. TODO: Look for similar problems in
11138         other controls.
11140 2006-05-09  Jackson Harper  <jackson@ximian.com>
11142         * Form.cs: Window managers need the old window state when setting
11143         window state now.
11144         * InternalWindowManager.cs: Allow the base mdi window manager to
11145         handle more of the MDI only stuff (like maximize buttons).
11146         * MdiWindowManager.cs: Fix some snafus in changing the window
11147         state.  Add all the menu functionality, for both popup and
11148         maximized menus.
11149         * MdiClient.cs: When a new form is selected the currently
11150         activated form is sent to the back, this matches MS.
11151         - Implement a new method to activate the next mdi child window.
11153 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
11155         * Control.cs: 
11156           - Added new InternalCapture method to allow controls to prevent
11157             the capture behaviour on the click handlers
11158           - Switched to use InternalCapture
11159         * ComboBox.cs:
11160           - Using InternalCapture to prevent mouse captures from being released
11161             on mouse button release (Fixes #78100)
11162         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
11163           returns Form borders if a caption is present. (Fixes #78310)
11165 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
11167         * TreeNode.cs: Changed serialization .ctor to not require every field
11168           to be present. (#78265)
11169         * OwnerDrawPropertyBag.cs: Added serialization .ctor
11171 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
11173         * MimeIcon.cs: for is faster than foreach for strings.
11175 2006-05-05  Mike Kestner  <mkestner@novell.com>
11177         * CheckedListBox.cs: update check handling code to not use selected.
11178         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
11179         behavior for visual feedback, motion response, shift/ctrl handling,
11180         and properly deal with all 4 selection modes. Updates to bounds
11181         handling logic.  Add scroll wheel support. [Fixes #77842]
11183 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
11185         * ListView.cs:
11186           - Moved adding of Implicit controls into .ctor. That way, subsequent
11187             creation of the controls will not cause them to think they are 
11188             toplevel windows (fixes #78200 header problem)
11189           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
11190           - Switched visibility setting of header control to use internal field
11191             to avoid triggering handle creation
11192           - Now checking if handle is created before causing a refresh when items
11193             are added (This makes us now match handle creation time with MS)
11194         * Splitter.cs: Removed loading of private splitter cursor, switched to
11195           Cursors version now that that is loading the right ones
11196         * Cursors.cs: Load proper splitter cursors from resources
11197         * Cursor.cs: Added second method of loading resource cursors for the 
11198           VS.Net users amongst us
11200 2006-05-05  Mike Kestner  <mkestner@novell.com>
11202         * ListView.cs: give header_control a minimum size based on the
11203         ListView size.
11205 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
11207         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
11208           window seems to do that with metacity, so set that type. (#78120)
11210 2006-05-05  Mike Kestner  <mkestner@novell.com>
11212         * ListViewItem.cs: fix Details mode checkbox layout bug.
11213         * ThemeWin32Classic.cs: draw a ListView column header for unused space
11214         at the end of the header, if it exists. [Fixes for #78200]
11216 2006-05-04  Jackson Harper  <jackson@ximian.com>
11218         * MdiClient.cs: Add a helper property to get the container form.
11219         * MdiWindowManager.cs: We have to make sure to use the menu origin
11220         when drawing the icons and buttons, this fixes maximized window
11221         icons/buttons on win32.
11222         * InternalWindowManager.cs: Reset the restore captions when a
11223         window goes from Maximized to Minimized and vice versa. Move the
11224         DrawMaximizedButtons into the MdiWindowManager source, tool
11225         windows can't be maximized. NOTE: This could use a little
11226         refactoring if time ever permits.
11227         
11228 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
11230         * TextBox.cs: Add MWFCategoryAttributes
11231         * TextBoxBase.cs: Add MWFCategoryAttributes
11232         * Form.cs: Add MWFCategoryAttributes
11234 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
11236         * Control.cs: Add MWFCategoryAttributes
11237         * ScrollableControl.cs: Add MWFCategoryAttributes
11239 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
11241         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
11242           Divider is true. Fix a little glitch in PropertyToolBar
11243           drawing code
11245 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
11247         * Control.cs:
11248           - Dispose: Call base.Dispose, this causes the disposed event
11249             to be fired (and probably other, more important stuff)
11250           - SetVisibleCore: Set is_visible to true after creating the
11251             window so that the window still gets created invisible (if
11252             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
11253             to generate a WM_ACTIVE message
11254         * Form.cs: Call Dispose when we want to destroy the window, instead of
11255           just destroying the handle (Dispose will do that for us)
11256         * XplatUIX11.cs:
11257           - RootWindow also needs a queue, so we can properly process the
11258             property change events from RootWindow (like Activate)
11259           - Generatic synthetic WM_ACTIVE message when the active window is
11260             being destroyed
11262 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
11264         * LinkLabel.cs: Trigger a recalc of our label dimensions when
11265           bounds are changed
11267 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
11269         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
11270           for determining width and height (image might not be assigned if
11271           we're drawing an imagelist)
11273 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
11275         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
11276         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
11277           height from system
11278         * Theme.cs: No longer returns hardcoded menu height, instead calls
11279           new driver method
11280         * Form.cs (OnLoad): Scaling happens before triggering Load events 
11281           on MS (# 78257)
11283 2006-05-01  Mike Kestner  <mkestner@novell.com>
11285         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
11287 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
11289         * TextBoxBase.cs: Removed Fixme
11290         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
11292 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
11294         * XplatUIX11.cs:
11295           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
11296             the rectangle relative to the parent, considering borders. We
11297             don't really want that.
11298           - ScrollWindow: Fixed warning to be more understandable
11299         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
11300           scrollbars and scroll only the visible area
11301         * RichTextBox.cs: Removed debug output
11303 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
11305         * NumericUpDown.cs (Text): Just use base
11306         * UpDownBase.cs: Ensure txtView is created before using it
11308 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
11310         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
11311           casting to IntPtr to avoid 64bit overflow errors
11313 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
11315         * Control.cs:
11316           - AllowDrop: Don't force handle creation.
11317           - CreateHandle: Added call to tell driver if we're allowed to drop
11319 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
11321         * FileDialog.cs: Remember the last directory not only for the
11322           current instance but also for new FileDialog instances.
11324 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
11325         
11326         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
11327           broke sending async messages
11329 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
11331         * XplatUIX11.cs:
11332           - ScrollWindow: Fixed method. We finally generate expose events again
11333             for scrolled areas. This was causing 'garbage' when scrolling
11334             textbox and other controls that used ScrollWindow
11335           - Switched from using the regular queue for paint events to the MS 
11336             model of 'generating' paint events when the queue is empty.
11337             We use the new XQueueEvent.Paint subclass to store which windows
11338             need painting.
11339           - AddExpose now takes the x/y/width/height of the exposed area
11340             and inserts the window into the paint queue if not already there
11341           - InvalidateWholeWindow: Switched to use new AddExpose method
11342           - UpdateMessageQueue: Added which queue to monitor for paint events
11343           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
11344             the unlikely case nothing above handles it. We reset the expose
11345             pending states to get them off the queue.
11346           - GetMessage: Now pulls a paint event if no other events are in the
11347             queue
11348           - Invalidate: Switched to new AddExpose method
11349           - PeekMessage: Updated to understand pending paint events
11350           - UpdateWindow: Fixed logic bug. We were only updating if the window
11351             didn't need updating. Also switched to sending WM_PAINT directly,
11352             like MS does.
11353         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
11354           and random access Remove(). The random access is needed to handle
11355           UpdateWindow() where a WM_PAINT is sent directly without accessing
11356           the queue.
11357         * ScrollBar.cs: Added Update() calls to cause immediate updates to
11358           allow for better feedback when scrolling. Scrollbars are small and
11359           the immediate update should make it 'feel' more responsive without
11360           slowing things down. ScrollBar still needs it's invaliate logic
11361           updated to not always invalidate the whole bar on certain changes.
11363 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11365         * Control.cs:
11366         (BackColor): if the control does not support a transparent background,
11367         return the default backcolor when the parent backcolor is transparent.
11369 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
11371         * Application.cs: Updated to new StartLoop/GetMessage API
11372         * RichTextBox.cs: Provide some output on RTF parsing errors
11373         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
11374           new queue_id argument to GetMessage and PeekMessage to allow faster
11375           handling of per-thread queues in drivers.
11376         * Hwnd.cs: Added Queue tracking and property
11377         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
11378         * XEventQueue.cs: Added thread trackingA
11379         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
11380         * XplatUIX11.cs:
11381           - Implemented new per-thread queue
11382           - GetMessage: Fixed return/break behaviour on several cases. We were
11383             returning stale messages in some cases, instead of just processing
11384             the next message
11386 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
11388         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
11390 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
11392         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
11393           fixed off-by-one comparisons between Width/Height and Right/Bottom.
11395 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
11397         * PropertyGridView.cs: Fix drop down width.
11399 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
11401         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
11402           a mess in DrawToolBar, so I removed one of them.
11404 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
11406         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
11407           needed (clip). Otherwise we get artifacts.
11409 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
11411         * FixedSizeTextBox.cs: Added constructor to allow specifying which
11412           dimension is fixed
11413         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
11414           and switched FixedSizeTextBox to only be fixed vertical (#78116)
11415         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
11416           if it matches the scale base font (avoids unneeded scaling)
11418 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
11420         * X11DesktopColors.cs: One gtk_init_check should be enough
11422 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
11424         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
11425           match MS behaviour
11427 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
11429         * TextBoxBase.cs: 
11430           - Generate OnTextChanged for Backspace even if we're only deleting
11431             the current selection
11432           - When setting the Text property, only select all text if the
11433             control does not have focus when it is being set. Otherwise
11434             just place the cursor at the beginning of the control
11436 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
11438         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
11439           Added a little helper to draw PropertyGrid ToolBar with a different
11440           border and a different BackColor.
11441         * PropertyGrid.cs: Some background parts didn't get painted with the
11442           correct background color. Added a class that helps us to draw the
11443           correct border for PropertyGridView and a class that helps us to
11444           draw ToolBars with a different backcolor
11445         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
11447 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
11449         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
11450         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
11452 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
11454         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
11455           into the palette entries. Also, since we're working on a copy
11456           we needed to copy the palette back onto the bitmap.
11457         * Cursor.cs: Same fix as XplatUIWin32.cs.
11459 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
11461         * ImageListStreamer.cs: Need to read the var (or we're off)
11463 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
11465         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
11466           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
11467           TextBoxBase.cs: Unused var fixes
11468         * AxHost.cs: Small 2.0 fix
11469         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
11470           as it seems that is what at least Metacity expects. This will make
11471           icons show up on 64bit platforms. We still have some 64bit size
11472           issues, though, since the startup app window size still won't match.
11474 2006-04-25  Mike Kestner  <mkestner@novell.com>
11476         * *.cs: cleanup newly reported exception var unused warnings.
11478 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
11480         * ThemeWin32Classic.cs: Button image alignment now matches exactly
11481           ms
11483 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
11485         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
11486           image. The image position is always the same, no matter if the
11487           button is pressed or not.
11489 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
11491         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
11492           selection and set the correct filename for SaveFileDialog.
11493           Patch by Emery Conrad.
11495 2006-04-24  Mike Kestner  <mkestner@novell.com>
11497         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
11498         check for item.X outside the ClientRect instead of item.Y. Fixes
11499         #78151.
11501 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11503         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
11504         trust that value blindly and do some sanity check. Fixes bug #77814.
11506 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11508         * ImageListStreamer.cs: save the mask as a 1bpp image.
11510 2006-04-21  Mike Kestner  <mkestner@novell.com>
11512         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
11513         pass Checked and Indeterminate to the Theme Engine. Improve
11514         encapsulation with ListBox.
11515         * ListBox.cs: Keep a StringFormat instead of calculating it every item
11516         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
11517         nested types.  Move all CheckState functionality to CheckedListBox.
11518         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
11519         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
11520         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
11521         single base list. Fix scrollbar sizing and placement to mirror MS.
11522         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
11523         used.
11524         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
11525         for CheckedListBox by using new DrawItemState info.  Center the
11526         checkboxes on the items. Use new StringFormat property.
11528 2006-04-18  Jackson Harper  <jackson@ximian.com>
11530         * Form.cs: MdiChildren don't do default locations the same way as
11531         regular forms.  This prevents a crash when trying to position the
11532         mdi windows.
11534 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
11536         * PropertyGridTextBox.cs: Formatting, copyright
11537         * PropertiesTab.cs: Formatting
11538         * PropertyGrid.cs: Formatting
11539         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
11540           click toggling of values
11541           
11542 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
11544         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
11545         * Control.cs (.ctor): verify_thread_handle is static, don't reset
11546           every time a control is created
11547         * Application.cs: Removed obsolete EnableRTLMirroring method
11549 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
11551         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
11552         SelectedIndex to -1. Fixes bug #78121.
11554 2006-04-17  Jackson Harper  <jackson@ximian.com>
11556         * Binding.cs: Handle null values for Current and BindingContext.
11557         This occurs when binding is a little delayed.
11558         * CurrencyManager.cs: return null for Current when there are no
11559         items in the list.
11560         - Hookup to the listchanged event on the DataView and update
11561         bindings when the list is changed.  This fixes late binding of
11562         controls.
11564 2006-04-17  Jackson Harper  <jackson@ximian.com>
11566         * X11Dnd.cs:
11567         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
11568         Ringenbach.
11570 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
11572         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
11573           place
11574         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
11575           with the correct ButtonState
11577 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
11579         * XplatUIX11.cs: Improved distinguishing between window types to
11580           tell the WM a type closer to what the app wants (Fixes #78107)
11582 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
11584         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
11585           GrabHandle
11587 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
11589         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
11590           drawing code to reflect the size grip changes
11592 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11594         * ImageListStreamer.cs: fix handling of the mask that follows the main
11595         bitmap when deserializing and serialize it properly. The generated mask
11596         should better be a 1bpp image, but I'll do that later.
11598 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
11600         * FileDialog.cs: Show something in the DirComboBox on *nix if the
11601           path doesn't fit into some of our Current.Places
11603 2006-04-13  Jackson Harper  <jackson@ximian.com>
11605         * ComboBox.cs: Use borders instead of drawing our own decorations,
11606         try to obey correct rules for heights.
11607         * Theme.cs:
11608         * ThemeNice.cs:
11609         * ThemeClearLooks.cs:
11610         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
11611         this is now handled by borders.
11612         - Remove unused DrawListBoxDecorationSize method.
11613         
11614 2006-04-13  Mike Kestner  <mkestner@novell.com>
11616         * MenuAPI.cs: null guarding for the disbled click check fixes crash
11617         reported by Alex.
11619 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
11621         * ThemeWin32Classic.cs: 
11622           - Fixed CPDrawStringDisabled
11623           - Corrected drawing of disabled menu items
11624           - Fixed drawing of disabled radio buttons (bug #78095)
11625           - Draw check in a disabled CheckBox with color ControlDark 
11627 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
11629         * Form.cs: Use the provided width when calculating the menu size;
11630           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
11631           and ClientSize.Width won't be updated yet
11632         * Application.cs: Use Visible instead of Show() to make form visible,
11633           this way we create the handle later and menusize is considered
11635 2006-04-12  Mike Kestner  <mkestner@novell.com>
11637         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
11638         reporting.
11640 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
11642         * TextBox.cs: Implemented context menu
11644 2006-04-12  Mike Kestner  <mkestner@novell.com>
11646         * ListView.cs: implement box selection. fixes #77838.
11647         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
11649 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
11651         * XplatUIX11.cs: Added setting of window type when transient window
11652           is created (metacity would move it otherwise)
11653         * X11Structs.cs: Added WINDOW_TYPE atoms
11654         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
11655           background (the control is Opaque but still wants transparent
11656           backgrounds)
11658 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
11660         * Control.cs: Added OnPaintBackgroundInternal to allow controls
11661           that set Opaque but don't mean it (like all ButtonBase-derived
11662           controls) to still draw their background
11663         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
11664           the background
11666 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
11668         * Control.cs (PaintControlBackground): Set the graphics object
11669           on our PaintEvent to null to prevent it from being disposed
11670           when the PaintEvent gets disposed
11672 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
11674         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
11675         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
11677 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
11679         * Control.cs: 
11680           - Added transparency check to BackColor property. Transparent
11681             backgrounds are only allowed if the control styles permit it
11682           - Added recursive painting of parent control background and
11683             foreground if a control with a transparent backcolor is drawn
11684             (Thanks to Tim Ringenback for providing his 'hack' as a base
11685              for this patch) Fixes #77985 and #78026.
11686           - Added Opaque style check before calling OnPaintBackground, no
11687             need to draw the background if the control is opaque
11688           - Removed ControlAccessibleObject owner variable (inherited from
11689             base, no need to define again)
11690           - Added some documentation links explaining the drawing events
11691             and styles
11693 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
11695         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
11696           that the affected control is the located at the left border of our
11697           parent (Fixes #77936)
11699 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
11701         * TextBoxBase.cs: When rendering disabled or readonly controls,
11702           draw the background with 'Control' instead of 'Window' color as
11703           long as the user hasn't specifically set a color
11705 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
11707         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
11708           since that won't be updated if the user types text (only if it's
11709           programatically set)
11711 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
11713         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
11714           layout changes do to app-triggered resizes will have the proper
11715           display rectangle for layout
11717 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
11719         * ThemeWin32Classic.cs:
11720           - Make use of the SystemBrushes and SystemPens wherever possible
11721           - Corrected some highlight colors
11722           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
11723             drawing
11724         * Theme.cs: Added Empty field to CPColor struct
11726 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
11728         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
11729           is displayed when calculating the display rectangle. Thanks to Mike
11730           for teaching me the err of my ways.
11732 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
11734         * ScrollableControl.cs:
11735           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
11736             (instead of 0,0) and we now return the real width/height instead of
11737             just the clientrectangle, adjusted for padding. The rectangle is
11738             now cached and created by the new CalculateDisplayRectangle method.
11739           - Created new CalculateDisplayRectange method, which basically does
11740             what get_DisplayRectangle() did originally, but now using the 
11741             right edge instead of DisplayRectangle to determine the size of
11742             our scrollbars
11743           - get_Canvas(): Fixed it to properly calculate canvas for 
11744             right/bottom controls which seem to be placed to the right/bottom
11745             of any controls that have a fixed location
11746           - Removed TODO that's taken care of
11747           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
11748             and SetDisplayRectLocation according to new MSDN2 docs
11749           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
11750             event when that is called, this is added for compatibility
11751           - ScrollControlIntoView(): Implemented.
11752           - Switched scrollbars to be implicit, they shouldn't be selectable
11753         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
11754           call it when the active control is set/changed
11755         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
11756         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
11757           implicit_control variable (used for native Win32 message generation)
11758         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
11759           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
11760         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
11761         * XplatUIStructs.cs: Added ScrollBarCommands enum
11763 2006-04-10  Jackson Harper  <jackson@ximian.com>
11765         * ButtonBase.cs:
11766         * CheckedListBox.cs:
11767         * ComboBox.cs:
11768         * DataGrid.cs:
11769         * DataGridView.cs:
11770         * Form.cs:
11771         * GroupBox.cs:
11772         * ListBox.cs:
11773         * PrintPreviewControl.cs:
11774         * ProgressBar.cs:
11775         * PropertyGrid.cs:
11776         * Splitter.cs:
11777         * StatusBar.cs:
11778         * TrackBar.cs:
11779         * UpDownBase.cs: Fixup base event overrides.
11780         
11781 2006-04-06  Mike Kestner  <mkestner@novell.com>
11783         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
11784         all user-initiated value changes to min <= value <= max-thumbsz+1.
11785         (set_Value): check for vert/horiz when calculating new thumb position.
11786         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
11787         like MS does.
11788         (OnMouseMoveSB): refactor the thumb dragging code and refine
11789         invalidation logic to reduce flicker.
11790         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
11791         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
11792         (UpdateThumbPosition): small code readability cleanup
11794 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
11796         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
11797           different
11799 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
11801         * ThemeNice.cs: Use a better graphics effect when a button is pressed
11803 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
11805         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
11806         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
11807           This dramatically reduces the number of Pen.Dispose calls. 
11808           Where possible call ResPool methods only once instead of calling it
11809           over and over again (for example for the same color).
11811 2006-04-06  Mike Kestner  <mkestner@novell.com>
11813         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
11814         Also remove an unused private field on the collection. Fixes #77972.
11816 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
11818         * ThemeNice.cs: Added ToolBar drawing code
11820 2006-04-06  Mike Kestner  <mkestner@novell.com>
11822         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
11823         I'm assuming that means we need to look up the toplevel for the
11824         provided control. Fixes the crash trace in #77911 but exposes another
11825         crash in some strange reflection usage in NDocGui.
11827 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
11829         * ThemeNice.cs: Gave it a little silver touch and added Images
11830           method
11831         * FontDialog.cs: FontDialog is not resizable
11832         * FileDialg.cs: Added SizeGripStyle.Show
11834 2006-04-05  Jackson Harper  <jackson@ximian.com>
11836         * KeyboardLayouts.cs: Remove warning.
11838 2006-04-05  Jackson Harper  <jackson@ximian.com>
11840         * Control.cs: Enable OnPaintInternal so we can use it for drawing
11841         all of our controls instead of Paint +=.
11842         * ListBox.cs:
11843         * ListView.cs:
11844         * MenuAPI.cs:
11845         * MessageBox.cs:
11846         * NotifyIcon.cs:
11847         * ProgressBar.cs:
11848         * ScrollBar.cs:
11849         * Splitter.cs:
11850         * StatusBar.cs:
11851         * TabControl.cs:
11852         * TextBoxBase.cs:
11853         * ToolBar.cs:
11854         * TrackBar.cs:
11855         * UpDownBase.cs:
11856         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
11857         use OnPaintInternal. Remove Width/Height and Visible checks in
11858         paint handler, this is done at a higher level now.
11859         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
11860         * PaintEventArgs.cs: Add a handled flag so controls that don't
11861         want anymore painting after OnPaintInternal can make sure OnPaint
11862         isn't called.
11864 2006-04-05  Mike Kestner  <mkestner@novell.com>
11866         * Form.cs: fix the menu WndProc hacks to respect the native enabled
11867         state of the form, so that we don't process events when Modal dialogs
11868         are up. Fixes #77922.
11870 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
11872         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
11873           checking is done.
11875 2006-04-05  Mike Kestner  <mkestner@novell.com>
11877         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
11879 2006-04-05  Mike Kestner  <mkestner@novell.com>
11881         * ListView.cs (HeaderMouseMove): null guarding for the over column
11882         when setting up the drag_to_index.  Fixes #78015.
11884 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
11886         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
11887           in the taskbar. Transient windows seem to accomplish that.
11889 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
11891         * Form.cs:
11892           - Re-enabled CreateParams.X/Y code for FormStartPosition
11893           - Added code for manual placement when creating the Control
11894           - Incomplete patch to treat MDI forms differently when
11895             setting the ClientSizeCore. (Still need to figure out handling
11896             x/y coords there)
11897         * XplatUIX11.cs:
11898           - When we're explicitly setting the X/Y position of a non-Child
11899             window, let the WM know. Metacity really wants this.
11901 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
11903         * ThemeNice.cs: Added CPDrawButton
11905 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
11907         * ThemeNice.cs: Changed the color for focused buttons and activated
11908           the arrows for small scroll buttons.
11910 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
11912         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
11913           anymore. Changed some method modifiers to protected (virtual)
11914         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
11915           changes
11916         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
11917           Updated drawing of menus, buttons and progressbars; added
11918           CPDrawBorder3D 
11920 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11922         * ImageListStreamer.cs: implemented serialization/deserialization
11923         of the images.
11925 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
11927         * ThemeWin32Classic.cs:
11928           - Removed all the DrawFrameControl stuff; CPDrawButton,
11929             CPDrawCheckBox and CPDrawRadioButton are now handled directly
11930             inside the methods
11931           - Updated and corrected the drawing code of CPDrawButton,
11932             CPDrawCheckBox and CPDrawRadioButton to better match ms
11933           - Updated theme checkbox and radiobutton code to use the CP*
11934             methods
11936 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
11938         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
11939           bug is fixed
11941 2006-03-31  Jackson Harper  <jackson@ximian.com>
11943         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
11944         sometimes.
11945         * UpDownBase.cs: Don't CreateGraphics manually, use a
11946         Refresh. Ideally we would invalidate the correct areas here.
11948 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
11950         * XplatUIX11.cs: 
11951           - We now track the mapping state of windows. If a window (or 
11952             one of it's parents) is not mapped we no longer permit
11953             WM_PAINT messages to be generated since we'd otherwise get 
11954             lots of BadMatch X errors. Jackson did all the work figuring
11955             out the problem.
11956           - Destroying the caret if the window it's contained in is 
11957             destroyed. Can't use regular DestroyCaret method since it
11958             might fall into a drawing function (trying to remove the
11959             caret) and with that generate new BadMatch errors. Again,
11960             Jackson tracked this down.
11961           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
11962             make sure we send the messages to all windows. (The old code
11963             would send the WM_DESTROY to the window, and then all child
11964             windows would be 'gone' because the WM_DESTROY handle lookup
11965             would no longer find the destroyed window)
11966         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
11967         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
11969 2006-03-31  Jackson Harper  <jackson@ximian.com>
11971         * ScrollableControl.cs: Dont recalc if we are not visible.
11973 2006-03-31  Mike Kestner  <mkestner@novell.com>
11975         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
11976         the visibility branch.
11978 2006-03-31  Jackson Harper  <jackson@ximian.com>
11980         * ScrollBar.cs: Cap values when incrementing/decrementing.
11982 2006-03-31  Mike Kestner  <mkestner@novell.com>
11984         * MenuAPI.cs: setup menu.tracker for popup/context menus.
11985         * ToolTip.cs: guard against timer expirations with no active control.
11986         Not sure why it happened.
11988 2006-03-31  Mike Kestner  <mkestner@novell.com>
11990         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
11991         text.
11992         * ToolTip.cs: Position the tooltip based on where the cursor is at
11993         popup time, not at MouseEnter time.  Add a Down state so that we don't
11994         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
11995         positioning offset. Lookup DisplaySize at positioning time, since it
11996         can theoretically change during invocation.
11997         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
11998         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
12000 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
12002         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
12003           Fixes behaviour when the Text property of the box is String.Empty
12005 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
12007         * XplatUIX11.cs: Only send mouseleave for our client windows, not
12008           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
12009           a window)
12011 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
12013         * FileDialog.cs: Visual enhancement for the popup buttons in 
12014           PopupButtonPanel
12016 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
12018         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
12019           code
12021 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
12023         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
12024           highlighted menu items to match ms
12026 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
12028         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
12030 2006-03-30  Mike Kestner  <mkestner@novell.com>
12032         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
12033         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
12034         go active to account for HotLight to Selected transition.
12035         * MenuItem.cs: add internal Selected prop. Fill out the Status
12036         property by calculating it from item info. Add HotLight,
12037         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
12039 2006-03-30  Mike Kestner  <mkestner@novell.com>
12041         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
12043 2006-03-29  Jackson Harper  <jackson@ximian.com>
12045         * Form.cs: Implement TODO.
12047 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
12049         * PrintPreviewDialog.cs: Implemented missing methods and events; still
12050           missing proper dialog setup in the constructor
12052 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
12054         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
12055         * Control.cs:
12056           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
12057           - Fixed ResetBindings and removed TODO
12058           - Added check for cross-thread calls to get_Handle()
12059           - Added Marshaller attribute for set_Font to satisfy class status
12060         * FontDialog.cs: Removed TODOs that seemed implemented
12061         * UpDownBase.cs: Removed unneeded TODO and Fixme
12062         * MessageBox.cs: Implemented support for Default button and removed TODO
12063         * FileDialog.cs: Removed obsolete TODO
12064         * DomainUpDown.cs: Removed obsolete TODO
12065         * ButtonBase.cs: Removed obsolete TODO
12066         * XplatUIWin32.cs: Removed obsolete TODO
12067         * Form.cs:
12068           - Removed obsolete TODO
12069           - Calling CheckAcceptButton when the acceptbutton is changed to allow
12070             internal status updates
12071           - Making sure the active control is selected when the control is created
12072         * CurrencyManager.cs: Removed obsolete TODO
12074 2006-03-29  Mike Kestner  <mkestner@novell.com>
12076         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
12077         of PrintPreviewDialog and RichTextBox.
12079 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
12081         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
12082           DarkDark, Light and LightLight colors for a specific color
12083         * ThemeWin32Classic.cs:
12084           - Use Button drawing code to draw RadioButtons and CheckBoxes with
12085             Appearance = Button 
12086           - Make use of the new ResPool helper CPColor
12087           - Draw ProgressBar and StatusBar with correct 3D borders
12089 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
12091         * ColorDialog.cs: Return selected color. Fixes bug #77940.
12093 2006-03-28  Mike Kestner  <mkestner@novell.com>
12095         * ListView.cs: fix Icon layout to plan for scrollbar widths when
12096         calculating col/row counts.
12098 2006-03-28  Mike Kestner  <mkestner@novell.com>
12100         * ColumnHeader.cs:
12101         * ListView.cs:
12102         * ListViewItem.cs:
12103         * Menu.cs: 
12104         switch to explicit interface method implementation for some methods
12105         corcompare identifies as inconsistent with MS.
12107 2006-03-28  Mike Kestner  <mkestner@novell.com>
12109         * MainMenu.cs: 
12110         * Menu.cs:
12111         add a few missing methods from the class status output.
12113 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
12115         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
12116           correct.
12118 2006-03-28  Mike Kestner  <mkestner@novell.com>
12120         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
12122 2006-03-27  Mike Kestner  <mkestner@novell.com>
12124         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
12125         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
12127 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
12129         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
12131 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
12133         * ThemeWin32Classic.cs:
12134           - GroupBox: Inserted a little gap between the text and the lines
12135             on the right side
12136           - Made the code in CPDrawBorder3D more readable
12137           - Corrected the drawing location of the up and down arrows in 
12138             CPDrawScrollButton
12140 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
12142         * ControlPaint.cs: Corrected line widths in DrawBorder for
12143           ButtonBorderStyle Inset and Outset
12145 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
12147         * ThemeWin32Classic.cs:
12148           - Rewrote the totally broken CPDrawBorder3D method. That was
12149             one of the main problems for the terrific ThemeWin32Classic
12150             look
12151           - Updated and corrected Button drawing
12152           - Correct the dimensions of the SizeGrip to match ms ones
12153           - Removed a small drawing glitch in DrawComboBoxEditDecorations
12154         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
12155           Border3DStyle.Sunken to match ms.
12157 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
12159         * ThemeWin32Classic.cs: First small part of the "de-uglify
12160           ThemeWin32Classic" effort, SizeGrip
12162 2006-03-24  Jackson Harper  <jackson@ximian.com>
12164         * XplatUIX11.cs: Give a max idle time of one second, this matches
12165         MS and forces an Idle event every second when there are no other
12166         events in the queue.
12168 2006-03-24  Mike Kestner  <mkestner@novell.com>
12170         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
12171         * ListView.Item.cs: fix layout issues with null image lists and images
12172         smaller than checkbox size.
12173         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
12174         mode like MS does.  It's weird, but consistent.  ;-)
12175         Fixes #77890.
12177 2006-03-24  Mike Kestner  <mkestner@novell.com>
12179         * ListView.cs: Scroll wheel support for the item control.  Fixes
12180         #77839.
12182 2006-03-23  Jackson Harper  <jackson@ximian.com>
12184         * ScrollableControl.cs: Special case negative sized areas, not
12185         zero.
12186         * MonthCalendar.cs: Save the rect of the clicked date so we can
12187         use it for invalidation.
12188         - Try to cut down on the number of invalidates
12189         - Invalidate the rect the mouse is over and was over when moving
12190         the mouse, so we get the focus box following the cursor.
12192 2006-03-23  Mike Kestner  <mkestner@novell.com>
12194         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
12195         focus rectangle drawing. Fixes #77835.
12197 2006-03-23  Mike Kestner  <mkestner@novell.com>
12199         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
12200         the if and else if and reverting back to the original == check on the
12201         None conditional.
12203 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
12205         * FontDialog.cs: Update the example panel if the selected index of
12206           the fontListBox changes.
12208 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
12210         * FileDialog.cs: Make FileDialog remember which directory it was in
12211           last in the same execution.
12213 2006-03-22  Mike Kestner  <mkestner@novell.com>
12215         * FileDialog.cs: make the DropDownMenu on the toolbar display
12216         RadioChecks since they are mutually exclusive and that's what MS does.
12218 2006-03-22  Mike Kestner  <mkestner@novell.com>
12220         * Theme.cs: add Color param to CPDrawMenuGlyph.
12221         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
12222         checks and radio marks and arrows are visible on highlighted items.
12223         * ControlPaint.cs: update to use new Theme signature.
12225 2006-03-22  Mike Kestner  <mkestner@novell.com>
12227         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
12228         is active. Fixes #77870.
12230 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
12232         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
12233           to be focused/selected after startup
12235 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
12237         * ColorDialog.cs: 
12238           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
12239             CustomColors and ShowHelp properties
12240           - Some internal rewrites to get better results when using the
12241             ColorMatrix
12243 2006-03-22  Mike Kestner  <mkestner@novell.com>
12245         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
12246         HoverSelection.  Fixes #77836.
12248 2006-03-22  Mike Kestner  <mkestner@novell.com>
12250         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
12251         ToggleButtons.  (De)Sensitize the Back button around a stack count of
12252         1, not 0.  Update ButtonSize based on a pixel count of the win32
12253         control.  Adjust the toolbar size/location for new button size.
12255 2006-03-22  Jackson Harper  <jackson@ximian.com>
12257         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
12258         true.
12259         * ScrollBar.cs: When doing increments and decrements we need to
12260         set the Value property so that ValueChanged gets raised. A
12261         possible optimization here would be to make an internal SetValue
12262         that doesn't invalidate immediately.
12263         * ToolTip.cs: Tooltips get added to their container (when
12264         supplied) so they get disposed when the container is disposed.
12265         - Don't create tooltips for String.Empty. This prevents all these
12266         little 2-3 pixel windows from showing up when running nunit-gui
12267         and driving me mad.
12268         * Form.cs: Don't set topmost when setting the owner if the handles
12269         haven't been created yet.  The topmost set will happen when the
12270         handles are created.
12272 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
12274         * XplatUIX11.cs:
12275           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
12276           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
12277             visible (to allow them to recalculate their sizes)
12279 2006-03-21  Mike Kestner  <mkestner@novell.com>
12281         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
12282         methods. Removed a ton of redundant code.  Still not really happy with
12283         the border rendering, but I think that's mainly because of the
12284         ControlDarkDark being black instead of a dark grey. Depending on how 
12285         close we want to be, we might want to revisit those color choices.
12286         Among the new features added during the refactor were DropDownArrow
12287         pressed rendering, Disabled image rendering.  Proper flat appearance
12288         boundary rendering.  Removed the Divider and Wrapping dividers since I
12289         can't figure out any combination of themes and conditions to make the
12290         MS control draw a horizontal line on a toolbar despite what the
12291         Divider property docs indicate.
12292         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
12293         conditions and incorrect layout.  Updated to coding standard.
12294         * ToolBarButton.cs: refactored layout and positioning code from
12295         ToolBar to here.  Invalidate wherever possible instead of forcing
12296         redraws of the whole toolbar. 
12297         (Known remaining issues: explicit ButtonSize smaller than provided
12298         images.)
12300 2006-03-21  Mike Kestner  <mkestner@novell.com>
12302         * ContextMenu.cs (Show): use the position parameter instead of just
12303         showing at the MousePosition.
12305 2006-03-21  Jackson Harper  <jackson@ximian.com>
12307         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
12308         control handle this.
12309         * TreeNodeCollection.cs: If we are clearing the root node we need
12310         to reset top_node so calcs can still happen.
12311         * ThemeWin32Classic.cs: This is a Flags so we need to check
12312         properly.
12313         
12314 2006-03-21  Jackson Harper  <jackson@ximian.com>
12316         * DataGrid.cs: Create columns when the binding context has been
12317         changed.
12318         * X11Structs.cs: Keysyms are uints.
12319         - Add size to fix build.
12321 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
12323         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
12324           XplatUIOSX.cs: 
12325           - Added ResetMouseHover method to allow controls to retrigger
12326             hovering if they need it more than once
12327           - Implemented MouseHoverTime and MouseHoverSize properties
12328         * Timer.cs: Start() must reset the interval
12329         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
12330           properties
12332 2006-03-21  Jackson Harper  <jackson@ximian.com>
12334         * X11Keyboard.cs: improved layout detection. Move the nonchar
12335         tables into this file.
12336         * KeyboardLayouts.cs: Move the tables into resource files.
12338 2006-03-21  Mike Kestner  <mkestner@novell.com>
12340         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
12342 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
12344         * Mime.cs: Various speed optimizations. Looking up mime types
12345           is now 2 times faster than before
12347 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
12349         * CreateParams.cs: Added internal menu field
12350         * Control.cs: 
12351           - Switched call order for UpdateBounds; now we always call
12352             the one that also takes ClientSize, and we're calculating the 
12353             client size via driver method in the others. The previous
12354             method of tracking client size by difference wasn't working
12355             for forms where even the starting client size wouldn't match
12356             the overall form size (due to borders) (Part of fix for #77729)
12357           - CreateParams(): Do not use parent.Handle unless the handle is
12358             already created. Causes havoc with Nexxia and throws off our
12359             creation of controls
12360         * XplatUIX11.cs:
12361           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
12362           - Switched handling of ConfigureNotify over to new PerformNCCalc 
12363             method (consolidates code)
12364           - Changed RequestNCRecalc to use new PerformNCCalc method
12365           - Added calls to RequestNCRecalc when menus and borders are changed
12366             to allow app to set NC size. (Part of fix for #77729) This matches
12367             when MS send a WM_NCRECALC on Win32 windows.
12368           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
12369             (Part of fix for #77729). This matches what MS does, they also
12370             send that message when the form is made visible.
12371           - XException.GetMessage: Improved usability of X errors by including
12372             a translation of the window into Hwnd and Control class
12373           - Improved debug info for window creation, reparenting and destruction
12374           - Created helper method WindowIsMapped() [Currently not used]
12375         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
12376         * Form.cs:
12377           - CreateParams: Now setting our menu on the new internal menu field
12378           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
12379             avoid calculating the same property twice
12380         * Hwnd.cs:
12381           - Improved usability of ToString() for debugging purposes
12382           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
12383             determine the height of the menu, instead of just the font. This
12384             required to also create a graphics context and to keep a bmp 
12385             around (for performance reasons)
12387 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
12389         * MenuAPI.cs: Added OnMouseUp method
12390         * Form.cs:
12391           - Now remembering the requested client size, avoids size errors
12392           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
12393             instead of base if the menu is active. This is required due to
12394             control now capturing and releasing on down/up and it would
12395             prematurely release our menu capture
12397 2006-03-17  Jackson Harper  <jackson@ximian.com>
12399         * KeyboardLayouts.cs: Add the czech layouts.
12401 2006-03-16  Jackson Harper  <jackson@ximian.com>
12403         * Control.cs: Use the viewport space when sizing not the controls
12404         client size, so things like ScrollableControl that effect the
12405         viewport size (when scrollbars are added) are computed correctly.
12406         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
12407         of ManagerEntrys.
12408         - Handle creating BindingManagers for null data sources.
12409         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
12410         source, otherwise when rows are added they are added to the 'fake'
12411         datasource and we will crash when trying to set the position in
12412         those rows.
12413         - Use Implicit scrollbars on the datagrid so they arent
12414         selectable.
12415         
12416 2006-03-16  Jackson Harper  <jackson@ximian.com>
12418         * Binding.cs:
12419         * InternalWindowManager.cs:
12420         * MdiWindowManager.cs:
12421         * X11Keyboard.cs: I really want Mike to love me again (fix
12422         compiler warnings).
12424 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
12426         * DataGrid.cs:
12427           - OnMouseDown: Switch to editing mode when clicking on the cell
12428                          even if we're clicking on the cell that's currently 
12429                          selected
12430           - ProcessGridKey: Left/Right now wrap like MS.Net does
12431           - ProcessGridKey: Tab now knows to add a new row when tab is
12432                             pressed in the cell of the last column of the 
12433                             last row
12434           - ProcessGridKey: Enter now adds another row  if pressed in the last
12435                             row and selectes the new row, same column cell
12436           - ProcessGridKey: Home/End navigate columns, not rows, like 
12437                             originally implemented
12438           - Broke ProcessKeyPreview code out into an extra Internal method
12439             so it can be called from the edit code
12440         * DataGridTextBox.cs (ProcessKeyMessage):
12441           - Switched to accept Tab keypresses
12442           - Added F2 handling to allow jumping to the end of the edited cell
12443           - Added logic to allow moving caret left/right inside edited cell
12444             and making the edited cell jump when the caret hits cell borders
12445           - Tab and Enter are now passed to the datagrid after being handled
12446         * TextBoxBase.cs:
12447           - Removed capture code now that Control handles it
12448           - set_SelectionStart now ensures caret is visible
12450 2006-03-16  Jackson Harper  <jackson@ximian.com>
12452         * TrackBar.cs: Debackwards the increment/decrement for handling
12453         mouse clicks on the bar with vertical trackbars.
12454         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
12455         bottom to match MS.
12457 2006-03-16  Mike Kestner  <mkestner@novell.com>
12459         * ListView.cs: make shift/ctrl keyboard and mouse selection 
12460         consistent with the MS control. Fix a bug in
12461         SelectedListViewItemCollection.Clear that was pissing me off for the
12462         better part of a day because the collection was being altered
12463         underneath us as we walked the list.
12465 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
12467         * Control.cs: Not sure how we could miss this so long, but it seems
12468           that MS.Net has Capture set all the way from before calling 
12469           OnMouseDown through sending the mouse events until after
12470           OnMouseUp. This will fix DataGrid's selection being set to end
12471           at the location of the MouseUp.
12473 2006-03-15  Jackson Harper  <jackson@ximian.com>
12475         * BindingContext.cs: Check the binding after its added so that it
12476           can initialize the binding managers and hookup to events.
12477         * Binding.cs: Data members seem to sometimes include rows/cols in
12478           the format Row.Column we now take this into account.
12479           - Hookup to the position changed event so we can update the
12480           control when the position has changed in the data set.
12481         * CurrencyManager.cs: Take into account the row/col naming
12482           convention when creating dataset tables.
12483         * BindingContext.cs: Using a newer better way of storing
12484           datasource/datamember pairs.  Hopefully this better matches MS for
12485           looking up binding managers.
12488 2006-03-15  Jackson Harper  <jackson@ximian.com>
12490         * BindingContext.cs: The currency manager needs the data member
12491         name, if the member is a data set we use the name to find the
12492         correct table.
12493         * CurrencyManager.cs: When creating the list prefer an IList over
12494         an IListSource.
12495         - Attempt to create a DataTable from a DataSet (TODO: might need
12496         some better error checking here, although MS doesn't seem to have much)
12497         - If we have a DataTable create a view and use it as our list.
12499 2006-03-15  Mike Kestner  <mkestner@novell.com>
12501         * ListView.cs: keep a matrix of the icon mode layout to facilitate
12502         keyboard navigation. Support Up/Down/Left/Right selection correctly
12503         for all 4 View modes.
12504         * ListViewItem.cs: add internal row/col fields for icon layouts.
12506 2006-03-15  Jackson Harper  <jackson@ximian.com>
12508         * TabControl.cs: Redraw the tabs when we resize so their newly
12509         calculated sizes are drawn on screen.
12510         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
12511         composite characters.
12512         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
12513         - filter events so that composite characters can be created
12514         patches by peter
12515         * X11Structs.cs: Add XIMProperties enum.
12517 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
12519         * Control.cs (BringToFront, SendToBack): Don't use window or handle
12520           unless it's created
12522 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
12524         * Control.cs (PerformLayout): We don't need to consider visiblity
12525           for anchoring, only for docking. This fixes 'whacky' alignment
12526           in listbox and other controls that use implicit scrollbars after
12527           the previous PerformLayout patch
12528         * ListBox.cs: Switched to use implicit scrollbars
12529           
12530 2006-03-14  Mike Kestner  <mkestner@novell.com>
12532         * ToolBar.cs: 
12533         * VScrollBar.cs:
12534         - chain up the "new event" overrides to base and use
12535         OnEvent to raise them.  Part of fix for bug #76509.
12537 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
12539         * FileDialog.cs: Do not select an item in the parent directory
12540           on backspace
12542 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
12544         * Control.cs (PerformLayout): It would seem that we considered
12545           invisible windows for our layout. Not quite the right thing
12546           to do. Now we don't any longer, thereby fixing bug #76889.
12548 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
12550         * Control.cs (CanFocus): I goofed. A control can have focus 
12551           even though it's not selectable. Made it match MS docs.
12553 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
12555         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
12556           center by default (fixes #76895)
12557         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
12558           all uses of Border3DSides.All with the explicit ORd together
12559           Left|Right|Top|Bottom because I assume that nobody was aware 
12560           that All also implies a center fill. Most places I checked had
12561           a fill right above.
12562         * ProgressBarStyle.cs: Added
12564 2006-03-13  Mike Kestner  <mkestner@novell.com>
12566         * ListView.cs: fix breakage in drag shadow header positioning 
12567         from Peter's csc compilation fix.
12569 2006-03-13  Mike Kestner  <mkestner@novell.com>
12571         * ListView.cs: fix NRE produced by backspacing twice in a focused
12572         FileDialog.
12574 2006-03-13  Mike Kestner  <mkestner@novell.com>
12576         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
12578 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
12580         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
12581           be changed
12582         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
12583           the allowed size before making programmatic size changes
12585 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
12587         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
12588           set, metacity is broken and will still use the emty sizes in 
12589           the struct. (Fix for #77089)
12591 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
12593         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
12594           WindowExStyles and marked both enums as Flags
12595         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
12596           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
12597           to match WindowStyles split
12598         * XplatUIX11.cs:
12599           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
12600           - Updated to match WindowStyles split
12601         * XplatUIWin32.cs:
12602           - Fixed FosterParent creation, was using ExStyle on the Style field
12603             (This should help with Popup focus issues)
12604           - Updated to match WindowStyles split
12606 2006-03-13  Jackson Harper  <jackson@ximian.com>
12608         * MdiWindowManager.cs: Use the system menu height. Fixes some
12609         strange sizing issues.
12611 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
12613         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
12614         * TextBoxBase.cs:
12615           - Scroll to caret after inserting text (#77672)
12616           - Make scroll range one pixel higher, fixes off-by-one error (and
12617             makes underlines visible on the last line)
12619 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
12621         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
12622           the keyboard state from being stuck with keys in 'pressed' state when
12623           focus is switched away via keyboard
12624         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
12625           reset the keyboard if no X11 KeyUp events are expected to come
12626         * X11Structs.cs: Switched type of Visible to bool to match driver
12628 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
12630         * TextControl.cs:
12631           - Switched caret to be just 1 pixel wide, matches MS and looks less
12632             clunky
12633           - Moved caret display 1 pixel down from the top of the control
12634             to improve view
12635           - InsertCharAtCharet: Update the selection start if moving the caret
12636             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
12637           - No longer always creating the caret when the caret methods are
12638             called. Only the actual ShowCaret/HideCaret will do that now
12639           - Only setting caret visible if the owner control has focus
12640           - UpdateView: Added invalidation-shortcut logic for center and right 
12641             aligned text. Previously we'd update all according to the left
12642             logic which caused drawing errors. Also fixed height of invalidated
12643             areas, now properly invalidating the whole area (was off-by-one)
12644           - owner_HandleCreated: Always generate the document when the
12645             handle is created; this ensures that 
12646         * TextBoxBase.cs:
12647           - Fixed situation where caret would disappear under the right
12648             window border, also improved scrolling behaviour on left-
12649             aligned textboxes
12650           - Fixed right-aligned textboxes to have a border to the
12651             right instead of the caret being under the right border
12652         * XplatUIX11.cs:
12653           - Switched from 'nested' to simple visible/not visible tracking 
12654             for caret (part of fix for #77671)
12655           - No longer passing through translated FocusIn/FocusOut messages
12656             since we were notifying too often and the wrong windows. Instead
12657             we just notify our focussed window of receiving or loosing focus
12658         * XplatUIWin32.cs: Switched from 'nested' show/hide 
12659           counting for caret to simple visible yes/no behaviour (part of 
12660           fix for #77671)
12662 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
12664         * Mime.cs: Remove debug code...
12666 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
12668         * MimeGenerated.cs: Removed
12669         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
12670           and subclasses) from /usr/(local/)share/mime and
12671           $HOME/.local/share/mime.
12673 2006-03-10  Jackson Harper  <jackson@ximian.com>
12675         * MdiWindowManager.cs: Recalc the NC area when a window is
12676         maximized/restored so that the menu area is drawn on forms that
12677         don't have a menu.
12679 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
12681         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
12682           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
12683           us to force a WM_NCCALCRESIZE message being sent. This is needed
12684           for MDI maximizing.
12686 2006-03-10  Jackson Harper  <jackson@ximian.com>
12688         * Form.cs: We need to use the ActiveMenu when calculating menu
12689         height.
12690         - Fix nullref when the window manager hasn't been created yet.
12691         * Control.cs: Fix nullref when we try to bring a control to the
12692         front that has no parent.
12693         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
12694         height.
12695         - Add a dummy item to the maximized menu so it always has the
12696         correct height. Otherwise when there are no menus we don't get our
12697         icon and buttons.
12698         
12700 2006-03-10  Jackson Harper  <jackson@ximian.com>
12702         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
12703         stuff.
12704         * Form.cs: Make the window_state internal so the window managers
12705         can track it.
12706         - When an MDI child is maximized let its window manager create the
12707         main menu (so it can add its icon).
12708         - Notify the window managers of state changes
12709         - Let the window manager paint its buttons and handle button
12710         clicks on the menu when it is maximized.
12711         * InternalWindowManager.cs: Move the prev_bounds into the mdi
12712         window manager, since tool windows don't use it, only mdi windows.
12713         - Tell the main form that we don't want it to handle NCPAINT
12714         itself to avoid extra painting.
12715         - Handle clicks on a maximized windows menu.
12716         - Handle window state changes
12717         - Handle minimize/maximize clicks correctly by setting the window state.
12718         * MdiWindowManager.cs: Add an icon menu that (the menu you get
12719         when clicking on the forms icon).
12720         - New method to create a forms maximized menu. This is its normal
12721         menu + an icon.
12722         - Handle window state changes.
12723         - Handle sizing of maximized windows.  Maximized windows are just
12724         drawn bigger then the parent visible area. All controls are still
12725         there, they are just outside the visible area (this matches windows).
12726         * MdiClient.cs: No scrollbars when a child window is maximized.
12727         - Let the children windows figure out how big they should be when
12728         sizing maximized windows.
12729         - Implement a version of ArrangeIconicWindows somewhat similar to
12730         Windows version.  There are some little differences, but I don't
12731         think any app will rely on the layout of minimized mdi windows.
12733 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
12735         * Padding.cs: Several fixes to allow compiling with csc 2.0
12737 2006-03-09  Jackson Harper  <jackson@ximian.com>
12739         * Menu.cs:
12740         * MenuItem.cs: Cheap hack so we can add items to the list without
12741         the events being raised.  This allows adding mdi items during
12742         drawing. TODO: Should probably find a better time to add the items.
12744 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
12746         * ThemeWin32Classic.cs:
12747           - CheckBox_DrawText: Added logic to not wrap if not enough space
12748             is available (Fix for bug #77727)
12749           - RadioButton_DrawText: Added logic not to wrap if not enough
12750             space is available (Fix for bug #77727). Also removed some
12751             duplicate code, DrawString always drawing the regular text
12752             before hitting the if statement.
12754 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
12756         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
12758 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
12760         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
12761         * ContainerControl.cs: Partial implementation of some 2.0 scaling
12762           methods. Moved the new 2.0 properties into alphabetical order with
12763           other properties and added MonoTODO tags
12765 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
12767         * AutoScaleMode.cs: Added. Fix build.
12769 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
12771         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
12772           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
12773           and was requiring premature handle creation for calls from above
12774         * Form.cs, Control.cs: Removed handle arguments from calls to
12775           CalculateClientRect()
12777 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
12779         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
12780           drag_column.column_rect is MarshalByRef and can't be used that way
12782 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
12784         * AxHost.cs: Added deserialization constructor for 
12785           AxHost+State (fixes 77743)
12787 2006-03-09  Mike Kestner  <mkestner@novell.com>
12789         * ListView.cs: 
12790         - Added column drag reordering for details view.
12791         - fixed behavior when mouse is dragged off column and
12792         AllowColumnReorder is false.
12793         * ColumnHeader.cs: clone the format too in Clone.
12794         * Theme.cs: add DrawListViewHeaderDragDetails method.
12795         * ThemeWin32Classic.cs:
12796         - impl new method for drawing drag column shadows and targets.
12797         - support column offset for details mode in DrawListViewItem.
12799 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
12801         * TextControl.cs: Reset the char_count when the document is cleared
12802           (Fixes bug reported on mono-winforms mailing list)
12804 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
12806         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
12807           of calling base we simply process the key ourselves, since both
12808           DefWindowProc and the handled method would set m.Result. 
12809           (Fixes #77732)
12811 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
12813         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
12814           method also moves the window; instead implemented a copy of
12815           Control.ScaleCore (Part of fix for #77456)
12816         * TextBoxBase.cs: 
12817           - Created new CreateGraphicsInternal method to allow providing
12818             a graphics context when no handle is created without triggering
12819             handle creation. (Part of fix for #77456)
12820           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
12821         * TextControl.cs: 
12822           - Switched Constructor to require TextBoxBase instead of Control (to
12823             allow uncast access to CreateGraphicsInternal)
12824           - Safeguarded use of owner.Handle property. No longer accessing it
12825             unless the handle is already created.
12826           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
12827           - Now triggering a recalc when owning control becomes visible
12828         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
12829           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
12830           premature handle creation (Part of fix for #77456)
12831         * Control.cs:
12832           - We now only destroy our double-buffering buffers when the
12833             control is resized or disposed, but not when visibility
12834             changes. (The code even re-created them twice every time)
12835           - Now requiring a redraw of the buffer on visibility changes
12836             (fixes bug 77654 part 2)
12837           - Not passing OnParentVisibleChanged up unless the control
12838             is visible
12839           - CanFocus: Fixed to match MS documentation
12840           - Focus: Fixed to return actual focus state and to check if
12841             setting focus is legal before setting it
12843 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
12845         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
12846           when to draw focus rectangle by looking at parent focus and
12847           selected state instead. This fixes TabPages on Linux sometimes
12848           having none or multiple focus rectangles.
12849         * XplatUIX11.cs (SetFocus): 
12850           - Don't set the focus if the same window already has focus
12851           - Use SendMessage instead of PostMessage (like it's Win32
12852             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
12853             to match MS behaviour
12854         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
12855           are not selectable.
12857 2006-03-07  Jackson Harper  <jackson@ximian.com>
12859         * PictureBox.cs: Revert line I accidently committed last week.
12861 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
12863         * Control.cs: 
12864           - Added new IsRecreating and ParentIsRecreating properties to
12865             allow testing if RecreateHandle has been called on ourselves
12866             or one of our parents
12867           - WndProc(WM_DESTROY): If our control handle is being recreated
12868             we immediately need to create the handle when receiving the
12869             destroy, that way our child windows find a valid parent handle
12870             when they themselves are being recreated upon WM_DESTROY receipt
12871             (fix for bug #77654 part 1)
12872         * XplatUIX11.cs:
12873           - DestroyWindow: WM_DESTROY must be sent to our own window before
12874             notifying any child windows. MS documents that child windows
12875             are still valid when WM_DESTROY is received. (Control now relies on
12876             this behaviour)
12877           - Added some fine-grain debug options
12879 2006-03-06  Jackson Harper  <jackson@ximian.com>
12881         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
12882         box and base calculations off this.
12883         * MdiChildContext.cs:
12884         * MdiWindowManager.cs: Don't need to ensure scrollbars here
12885         anymore.
12886         
12887 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
12889         * Splitter.cs: In situations where the affected control is added
12890           to the parent's control list after the splitter, we would not
12891           populate affected. Now we try populating it on mousedown, if
12892           it's not already set, and force it to be re-set whenever our
12893           parent changes.
12895 2006-03-03  Matt Hargett  <matt@use.net>
12897         * Control.cs: implement Control.Padding
12898         * Padding.cs: -Padding.All returns -1 when constructing with the
12899         implicit default ctor
12900         -Padding.ToString() matches MS.NET
12901         * ContainerControl.cs: implement
12902         ContainerControl.AutoScaleDimensions
12903         * ListControl.cs: implement ListControl.FormattingEnabled
12904         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
12905         * ButtonBase.cs:
12906         * TabPage.cs: Implement UseVisualStyleBackColor.
12907         * PictureBox.cs: Implement PictureBox.InitialImage.
12909 2006-03-03  Mike Kestner  <mkestner@novell.com>
12911         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
12912         event declarations to proxy to base event.
12913         * ListViewItem.cs: update to use ItemControl.
12914         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
12915         * ThemeWin32Classic.cs: update to new ListView theme API and fix
12916         column header label rendering for 0 width columns.
12918 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
12920         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
12921           that causes the control to be created. Fixes #77476.
12923 2006-03-02  Jackson Harper  <jackson@ximian.com>
12925         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
12926         expose_pending.
12928 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
12930         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
12931           passed in for the EventArgs (fixes #77690)
12933 2006-03-01  Jackson Harper  <jackson@ximian.com>
12935         * ScrollBar.cs: Refresh afterbeing resized.
12937 2006-02-28  Mike Kestner  <mkestner@novell.com>
12939         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
12940         Clean up a tracker compile warning.
12941         * MenuItem.cs: add internal PerformPopup method.
12942         [Fixes #77457]
12944 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
12946         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
12947           implicit expose) when the text is set to null
12949 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
12951         * RichTextBox.cs (FlushText): When newline is true, we always
12952           need to split the line, even if no text is on it and we may
12953           never eat newlines. (Fixes #77669)
12955 2006-02-28  Mike Kestner  <mkestner@novell.com>
12957         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
12958         and set Selected instead.
12959         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
12960         collections.
12962 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
12964         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
12966 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
12968         * FontDialog.cs:
12969           - Got rid of the panel. All controls are now directly added to
12970             the dialog form
12971           - It is now possible to set a font with the Font property
12972           - MinSize and MaxSize property do now what they should
12973           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
12974           - Searching and selecting a font with the font textbox works now,
12975             the same applies to the style and size textbox
12976           - Draw the correct 3D border in the example panel
12977           - Fixed a little mem leak (unused fonts didn't get disposed)
12978           - Many other internal updates/rewrites...
12979           - Fix typo
12981 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
12983         * TextControl.cs: 
12984           - InsertRTFFromStream: Added 'number of characters inserted' argument
12985           - set_SelectedRTF: Now using the number of characters to calculate
12986             the new location for the selection and cursor (x/y cannot be used
12987             due to potentially already wrapped text)
12989 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
12991         * TextControl.cs: Added property and implemented means to allow 
12992           disabling recalculation of a document (can be used to speed up
12993           multiple inserts and is needed to make RTF inserts predictable, see
12994           bug #77659)
12995         * RichTextBox.cs: Using the new NoRecalc property of Document to
12996           keep x/y insert locations predictable. Also makes it faster inserting
12997           large chunks of RTF
12999 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
13001         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
13002           it's easier for a child control to handle the other messages without
13003           having to duplicate the special functionality
13004         * TextBoxBase.cs
13005           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
13006             code to handle processing the key ourselves, in order to get 
13007             access to the result of KeyEventArgs.Handled. We now only call 
13008             ProcessKey if they key hasn't been handled already. Fixes #77526.
13009           - set_Text: If null or empty string is given, just clear the 
13010             document. Fixes part of #77526
13012 2006-02-27  Jackson Harper  <jackson@ximian.com>
13014         * SizeGrip.cs: Paint the background color before painting the grip
13015         so things look right.
13016         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
13018 2006-02-27  Mike Kestner  <mkestner@novell.com>
13020         * ListView.cs:
13021           - Restructure layout and invalidation model to remove a ton of
13022           flicker from the control and speed up performance in general.
13023           - Add manual column resize, flickers like crazy, but I already have
13024           some ideas on how I'll fix that. (#76822)
13025           - Merge the three Icon-based views into a single layout method.
13026           - Move item selection interaction logic from the item since 
13027           interaction with the collections is more appropriate to the view.
13028           - Deselection on non-item clicks.
13029         * ListViewItem.cs:
13030           - Encapsulate most of the layout. Add some internal props to trigger
13031           layout.  Move to a model where Items invalidate themselves instead
13032           of just invalidating the whole control every time something changes.
13033           - Invalidate on Text/Caption changes.
13034           - switch to an offset based layout model to avoid having to absolute
13035           position every element on item moves.
13036           - correct checkbox layout to conform to MS layout.
13037         * ThemeWin32Classic.cs:
13038           - refactor some column header drawing code.
13039           - fix string justification for column headers (#76821)
13040           - make SmallIcon labels top justified for compat with MS impl.
13041         * ThemeClearlooks.cs:
13042           - adjust to new ListViewItem internal checkbox bounds api.
13044 2006-02-27  Jackson Harper  <jackson@ximian.com>
13046         * Control.cs:  Change where implicit controls fall in the zorder.
13047         They are now on top of all children.
13048         - Synced AddImplicit code with Add
13049         - Removed unused enumerator.
13050         * SizeGrip.cs: Remove the TODO as its been TODONE.
13052 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
13054         * TextControl.cs(Insert): Combine the last lines unless the insertion
13055           string ends with \n\n, otherwise we leave one line too many (Fixes
13056           something I noticed with the testapp for #77526; the bug itself was
13057           already fixed in the previous checkin)
13059 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
13061         * RichTextBox.cs:
13062           - SelectionColor and SelectionFont methods no longer set absolute
13063             styles. Instead, the keep font or color respectively (This 
13064             resolves a long-standing FIXME in the code)
13065           - When flushing RTF text, the insert code now considers text trailing
13066             behind the insertion point (Fixes the bug where when replacing
13067             the selected text via SelectedRTF the remainder of the line behind 
13068             the selection would stay on the first insertion line)
13069         * TextBoxBase.cs:
13070           - AppendText now updates the selection points after inserting text
13071           - AppendText now ensures that the last tag (sometimes 0-length) of
13072             the document is used for the style information (Fixes part of 
13073             bug #77220)
13074         * TextControl.cs:
13075           - Created new FontDefiniton class to allow describing partial style
13076             changes
13077           - StreamLine() now takes a lines argument, to allow it to decide
13078             whether an encountered zero-length tag is the last in the document
13079             (which must be kept to not loose the font/color contained in it,
13080             for later appends)
13081           - Created Combine() and Split() methods for Marker structs, to 
13082             support marker updates due to reformatted documents (soft line
13083             wraps)
13084           - Implemented Document.CaretTag setter
13085           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
13086             of the last line (Not the cause, but also exposed by bug #77220)
13087           - Added LineTag argument to InsertString method, to allow callers
13088             to force a certain tag to be used (required to force use of the
13089             trailing zero-length tag of a document)
13090           - Now updating markers in Combine(), to avoid stale tag markers
13091           - Added some method descriptions to aid maintenance
13092           - Implemented new FormatText concept, allowing additive/subtractive
13093             formatting by only specifying the components that are to be 
13094             changed. This was needed for resolving the RTB.SelectedColor/
13095             RTB.SelectedFont fixmes
13096           - Added Break() support method to allow breaking up linetags (used
13097             for partial formatting)
13098           - Added GenerateTextFormat() method. It is used for partial 
13099             formatting and allows to generate a full font/color from given
13100             attributes and an existing tag.
13102 2006-02-26  Jackson Harper  <jackson@ximian.com>
13104         * XplatUIX11.cs:  Use the correct caption height.
13105         - Translate hittest coordinates to screen coords to match MS.
13106         * XplatUIWin32.cs: When we create MDI windows we need to reset
13107         some of the style flags, so we get a nice blank window, and can
13108         draw all the decorations ourselves.
13109         - Set a clipping rectangle on the non client paint event, the
13110         window manager drawing code needs one.
13111         * Form.cs: The window manager needs to know when the window state
13112         has been updated.
13113         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
13114         don't need to factor in border and title sizes in these
13115         methods. TODO: Remove the args and fix the call points.
13116         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
13117         properly.
13118         - Let the driver set the cursors.
13119         - Improve active window handling
13120         - Correct sizes for title bars and buttons.
13121         - Match MS drawing better
13122         * MdiWindowManager.cs: We don't need to handle border style
13123         updates specially anymore.
13124         - Check for scrollbars when windows are done moving
13125         - Handle Active properly.
13126         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
13127         correctly. I am spewing the exception though, so we don't hide the
13128         bugs.
13129         
13130 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
13132         * DataGridViewRowPostPaintEventArgs.cs,
13133           DataGridViewCellPaintingEventArgs.cs,
13134           DataGridViewRowCollection.cs,
13135           DataGridViewRowPrePaintEventArgs.cs,
13136           DataGridViewCell.cs: Clear a few warnings and implement a few
13137           exceptions that should be thrown.
13139 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
13141         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
13142           'inheriting' our parent's (non-default) cursor. (Part of
13143            the fix for #77479)
13145 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
13147         * XplatUIX11.cs: Fixed cast to make csc happy
13149 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
13151         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
13152           it's for the client area (part of fix for #77479 and needed
13153           for MDI window cursor handling)
13154         * XplatUIX11.cs
13155           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
13156             the appropriate default cursors and also passing the message
13157             up the parent chain 
13158           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
13159             for non-client areas
13161 2006-02-15  Jackson Harper  <jackson@ximian.com>
13163         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
13164         is a real MDI window
13166 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
13168         * X11DesktopColors.cs: Instead of checking the desktop session
13169           string for "KDE" check if it starts with "KDE"
13171 2006-02-10  Jackson Harper  <jackson@ximian.com>
13173         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
13174         systems).
13176 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
13178         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
13179           errors
13180         * ColorDialog.cs:
13181           - Got rid of the panel. All controls are now directly added to
13182             the dialog form
13183           - Changed to mono coding style
13185 2006-02-10  Jackson Harper  <jackson@ximian.com>
13187         * InternalWindowManager.cs: We don't need the set visibility to
13188         false hack anymore now that peter has written beautiful shutdown
13189         code.
13191 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
13193         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
13194           where already explicitly destroyed
13196 2006-02-10  Jackson Harper  <jackson@ximian.com>
13198         * MdiClient.cs: Handle the case where windows are too high or to
13199         the left and we need scrollbars.
13201 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
13203         * MimeIcon.cs: Added some icons
13204         * FileDialog.cs:
13205           - Fixed bug #77477
13206           - Got rid of the panel. All controls are now directly added to
13207             the dialog form
13208           - Changed to mono coding style
13209           - On Linux "My Computer" and "My Network" will now show some
13210             more usefull information. A new class, MasterMount, gathers
13211             this information from /proc/mount. Updated MWFFileView to make
13212             use of this information
13213           - Fixed a bug that caused FileDialog to crash when
13214             ".recently_used" file had a zero size
13215           - FilterIndex does now what it should
13216           - Some Refactoring
13217         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
13218             FileDialog changes
13220 2006-02-09  Jackson Harper  <jackson@ximian.com>
13222         * ComboBox.cs: Don't touch if null.
13224 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
13226         * Cursor.cs: 64bit safeness fix
13227         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
13229 2006-02-09  Jackson Harper  <jackson@ximian.com>
13231         * Form.cs: If a form is made into an MDI form update the styles so
13232         all the props can get set correctly.
13233         - Kill the mdi_container when we dont need it anymore.
13234         * InternalWindowManager.cs: Add missing NOT
13236 2006-02-08  Jackson Harper  <jackson@ximian.com>
13238         * InternalWindowManager.cs: Respek clipping when drawing MDi
13239         decorations.
13241 2006-02-08  Jackson Harper  <jackson@ximian.com>
13243         * Hwnd.cs: Add bits to track non client expose events.
13244         * XplatUIX11.cs: Track non client expose events on the hwnd. This
13245         gives us a proper invalid rect and will allow for some nice
13246         optimizations with NC client drawing
13247         - MDI windows are children windows, so move their style handling
13248         into the child window block.
13249         * InternalWindowManager.cs: Remove a state reset that was
13250         getting invoked at the wrong time. Fixes managed windows getting
13251         into a 'stuck' captured state.
13253 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
13255         * TextControl.cs (Document.ctor): Now initializing 
13256           selection_anchor. Fixes #77493
13258 2006-02-07  Jackson Harper  <jackson@ximian.com>
13260         * TrackBar.cs: The increment/decrements were backwards.
13262 2006-02-07  Mike Kestner  <mkestner@novell.com>
13264         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
13265         to the instance itself.
13267 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
13269         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
13270           on ulongs and pointers, the size differs between 32bit and 64bit
13271           systems. 
13273 2006-02-07  Mike Kestner  <mkestner@novell.com>
13275         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
13276         for 64 bit platforms to work around a metacity bug. 
13278 2006-02-07  Jackson Harper  <jackson@ximian.com>
13280         * TrackBar.cs: Process the input keys we need, and hookup to
13281         KeyDown instead of using WndProc, so we get key messages.
13283 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
13285         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
13286           machine we're on. 
13287         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
13288           we need to translate the XdndVersion atoms array before sending it
13290 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
13292         * XplatUIX11.cs: 
13293           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
13294             number of bits for the property, not the number of bytes. The
13295             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
13296             but would not crash since it specified 8 bits instead of 4 bits)
13297           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
13298             defined as XID -> long in the C headers)
13299           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
13300             references since those are now IntPtr to begin with
13301           - Switched all Atom.XXX 'int' casts to IntPtr casts
13302           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
13303           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
13304           - Added XChangeActivePointerGrab DllImport (for X11DnD)
13305         * X11Structs.cs:
13306           - Changed 'int' type for Atoms in XEvent structures to IntPtr
13307           - Changed atom in HoverStruct to be IntPtr
13308         * X11DnD.cs:
13309           - Removed local DllImports, switched code to use those from XplatUIX11
13310           - Removed/fixed casts related to the switch of Atom to be a IntPtr
13312 2006-02-06  Mike Kestner  <mkestner@novell.com>
13314         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
13315         method signatures in the import region.  There may still be some
13316         lingering struct marshaling issues, as I didn't drill down into those.
13317         Yet.
13319 2006-02-06  Jackson Harper  <jackson@ximian.com>
13321         * ComboBox.cs: Dont manually set the top_item, this is computed
13322         when the scrollbar position is set.
13324 2006-02-06  Mike Kestner  <mkestner@novell.com>
13326         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
13327         startup crashes on amd64.  There's other fixes needed.  All pinvoke
13328         usage of Atom needs to be mapped to IntPtr for example.  And there are
13329         likely other int/long issues to be addressed.
13331 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
13333         * FileDialog.cs: One more...
13335 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
13337         * FileDialog.cs: Next try
13339 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
13341         * FileDialog.cs: First part of fix for #77464
13343 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
13345         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
13346           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
13347           AcceptButton border drawing.
13349 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
13351         * Form.cs: Moved positioning of form after auto scaling is applied,
13352           otherwise it would possibly use wrong form size.
13354 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
13356         * Control.cs (RecreateHandle): No need to re-create any child
13357           controls, the child windows will get destroyed automatically by
13358           the windowing system or driver, and re-created when the handle
13359           is being accessed the first time. Fixes #77456
13360         * Form.cs: No longer setting the form to closing if the handle is 
13361           being recreated. This seems like the right thing to do, don't
13362           have a bug or testcase for this, though.
13364 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
13366         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
13367           controls to avoid unwanted side effects
13369 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
13371         * Control.cs: 
13372           - ScaleCore needs to scale the bounds, not the ClientSize of the 
13373             control. Fixes #77416.
13374           - DefaultSize is 0,0 for control
13375         * TextBoxBase.cs: 
13376           - DefaultSize is 100, 20
13377           - SetBoundsCore: Now enforcing the height, no matter if the provided
13378             height is more or less than the preferred one, as long as AutoSize
13379             is on
13380         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
13382 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
13384         * Control.cs:
13385           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
13386             call unless both performLayout is true *and* we have a pending
13387             layout change
13388           - ResumeLayout: MS does not completely nest Suspend and Resume,
13389             they bottom out at 0, fixed our code to match that.
13390           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
13391             SetBoundsCore, we were updating even when we shouldn't. This fixes
13392             swf-anchors mis-anchoring when resizing the app fast and lots.
13393           - UpdateDistances: Now only setting the left and top distance if 
13394             we have a parent and are not suspended, this is based on
13395             a suggestion by Don Edvaldson in bug #77355.
13396           - OnVisibleChanged: Fixed logic when to create the control. We may
13397             not create the control if we have no parent or if it's not visible;
13398             switched to using Visible property instead of is_visible field 
13399             since the property also considers parent states. This fixes a bug
13400             when starting Paint.Net
13402 2006-02-02  Jackson Harper  <jackson@ximian.com>
13404         * Form.cs: If the forms handle hasn't been created yet don't call
13405         into xplatui to make it top most, just set the topmost flag on the
13406         form in CreateParams
13407         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
13409 2006-02-01  Jackson Harper  <jackson@ximian.com>
13411         * ScrollableControl.cs: Refactored the Recalculate method a
13412         little, this wasn't handling all the variants of bottom and right
13413         bars needed to be added and added/removed based on their
13414         counterparts being added/removed (which changes the drawable
13415         size). Also we special case client widths and heights of 0 and
13416         don't add the scrollbar for those.
13418 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
13420         * XplatUIX11.cs: 
13421           - Added method to get AbsoluteGeometry(); currently unused, but might
13422             be used in the future, if we try again to figure out toplevel
13423             coordinates with some more crappy window managers
13424           - Added FrameExtents() method to retrieve the WM set decoration size
13425           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
13426             to deal with at least KDE, FVWM and metacity (Fixes #77092)
13427         * Hwnd.cs: 
13428           - Added whacky_wm tracking var for metacity
13429           - Added logic to have default menu height if the actual menu height
13430             has not yet been calculated (part of fix for #77426)
13431         * Form.cs: Keep track whether client size has been set and re-set 
13432           it if a menu is added/removed afterwards (Fixes #77426)
13434 2006-01-31  Jackson Harper  <jackson@ximian.com>
13436         * Control.cs: When a new Site is set on the component attempt to
13437         pull the AmbientProperties from it.
13439 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
13441         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
13442           in the background of the owning form. Fixes #77332
13444 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
13446         * MimeIcon.cs: Fix for #77409
13448 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
13450         * XplatUIX11GTK.cs: Initial import
13452 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
13454         * FixedSizeTextBox: fixes class signature
13456 2006-01-30  Jackson Harper  <jackson@ximian.com>
13458         * FixedSizeTextBox.cs: New internal class that represents a
13459         textBox that will not be scaled.
13460         * TreeView.cs:
13461         * ComboBox.cs:
13462         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
13463         standard TextBox.
13464                 
13465 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
13467         * XplatUIX11.cs: Retrieve default screen number instead of
13468           assuming 0. Attempted fix for #77318
13470 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
13472         * XplatUIWin32.cs: 
13473           - GetWindowPos: When a window is parented by FosterParent, use 
13474             the desktop instead of FosterParent as the base to get coordinates
13475           - CreateWindow: Don't make FosterParent the parent window for Popups
13476             if we don't want a taskbar entry, Popups automatically don't get one
13477         * Hwnd.cs: Need to call remove to actually remove the key from the
13478           hash table
13480 2006-01-30  Mike Kestner  <mkestner@novell.com>
13482         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
13484 2006-01-30  Jackson Harper  <jackson@ximian.com>
13486         * TreeView.cs:
13487         * TreeNode.cs: Raise events no matter how the treenode is
13488         checked. Patch by Don Edvalson.
13490 2006-01-30  Jackson Harper  <jackson@ximian.com>
13492         * TreeNode.cs: Signature fix.
13494 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
13496         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
13498 2006-01-20  Mike Kestner  <mkestner@novell.com>
13500         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
13501         event forwarding when menus are active.
13502         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
13503         Most of the patch is pdb's with a little rework.
13505 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
13507         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
13508           Removed GetMenuDC and ReleaseMenuDC methods; replaced
13509           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
13510         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
13511         * InternalWindowManager.cs: Added use of PaintEventStart/End to
13512           handling of WM_NCPAINT message, now passing the PaintEventArgs to
13513           the PaintWindowDecorations method
13514         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
13515         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
13516         * MenuAPI.cs: Made tracker window invisible
13517         * XplatUIWin32.cs:
13518           - Removed GetMenuDC and ReleaseMenuDC methods
13519           - Implemented the client=false path for PaintEventStart and
13520             PaintEventEnd
13522 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
13524         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
13525         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
13526           styles
13527         * Form.cs: 
13528           - MaximizeBox, MinimizeBox: Recreate the handle when setting
13529             the style
13530           - CreateParams: Reworked the styles to match MS look'n'feel,
13531             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
13532             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
13534 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
13536         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
13537           window is not mapped, since otherwise every form that's being 
13538           created is considered minimized, which is wrong.
13539         * Form.cs: Catching the exception and returning our internal value
13540           instead
13542 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
13544         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
13545           SetWindowMinMax() to have means to tell the driver about the minimum,
13546           maximum and maximized state window sizes. (Part of the fix for #76485)
13547         * Form.cs:
13548           - Implemented tracking of minimum and maximum window size, now calling
13549             new SetWindowMinMax() driver method to tell the driver (Part of the
13550             fix for #76485)
13551           - Finished handling of WM_GETMINMAXINFO method, now setting all values
13552             (Completes fix for #76485)
13553           - Calling new SetWindowMinMax driver method when the handle for a 
13554             form is created, to make sure the driver knows about it even if
13555             the values have been set before the window was created
13556           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
13557             to avoid messing up our anchoring calculations (partial fix
13558             for #77355)
13559         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
13560         * XplatUIX11.cs:
13561           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
13562           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
13563             (and presumably other freedesktop.org compliant WMs). Left the
13564             assumption unmapped=minimized, needed for SetVisible to work.
13565           - Now setting the window state when creating windows
13566           - Fixed SetVisible to consider/set the window state when mapping
13567             a Form. We cannot set the state before it's mapped, and we cannot
13568             use Form.WindowState once it's mapped (since it would ask the
13569             driver and get 'normal'. Therefore, we grab the state before
13570             mapping, map, and then set state.
13571           - Implmemented SetWindowMinMax method; Metacity does not seem to
13572             honor the ZoomHints, though.
13573         * XplatUIWin32.cs:
13574           - Removed MINMAXINFO (moved to XplatUIStructs)
13575           - Added SetWindowMinMax stub (on Win32 the only way to set that
13576             information is in response to the WM_GETMINMAXINFO message, which
13577             is handled in Form.cs)
13578           - Added logic to SetVisible to set the proper window state when a 
13579             form is made visible (fixes #75720)
13581 2006-01-26  Jackson Harper  <jackson@ximian.com>
13583         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
13584         same way we handle them with Invoke.
13586 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
13588         * Form.cs:
13589           - Added tracking of window state so CreateParams can return
13590             the appropriate style
13591           - Moved setting of WS_CAPTION style in CreateParams to allow
13592             styles without caption
13593         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
13594           control if the TextBox property is accessed. Fixes #77345
13595         * Control.cs:
13596           - get_Created: now uses is_disposed and is_created to determine
13597             return value (suggested by Jackson)
13598           - CreateHandle: No longer exits if the handle is being recreated
13599           - RecreateHandle: If the handle is not yet created call the 
13600             appropriate method to create either control or handle. If the
13601             control is already created CreateHandle will simply exit instead
13602             of just creating the handle
13603         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
13604           now SendMessage WM_DESTROY directly to the control when DestroyWindow
13605           is called.
13606         * XplatUIX11.cs: 
13607           - When DestroyWindow is called, instead of waiting for the 
13608             DestroyNotification from X11, we directly post it to the WndProc
13609             and immediately dispose the hwnd object.
13610             Same applies to DestroyChildWindows, and this obsoletes the
13611             expose_pending tracking. Contrary to Win32 behaviour we destroy our
13612             child windows before our own, to avoid X11 errors.
13613           - Removed the direct sending of WM_PAINT on UpdateWindow
13614         * XplatUIWin32.cs:
13615           - Reworked DoEvents and GetMessage to allow access to internal queue
13616             even when trying non-blocking access to the queue.  Fixes #77335. 
13617             Based on a patch suggestion by Don Edvalson. The new private
13618             GetMessage can now also be used as a backend for a PeekMessage
13619             frontend version.
13620         * XplatUI.cs: Improved debug output for CreateWindow
13622 2006-01-25  Jackson Harper  <jackson@ximian.com>
13624         * Help.cs: Allow param to be null. Patch by Don Edvalson.
13626 2006-01-24  Jackson Harper  <jackson@ximian.com>
13628         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
13629         when we have a MaxDropItems lower then the selected index.
13631 2006-01-24  Jackson Harper  <jackson@ximian.com>
13633         * Control.cs: Don't allow selection of non visible controls, allow
13634         selection of controls without parents.
13636 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
13638         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
13639         * DataGridDrawingLogic.cs: Add editing row only when is necessary
13641 2006-01-23  Jackson Harper  <jackson@ximian.com>
13643         * UpDownBase.cs: Make the textbox handle all the selection and
13644         tabbing. This fixes tabing to updown controls.
13646 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
13648         * TextBoxBase.cs: fixes exception thown the object was null
13650 2006-01-23  Jackson Harper  <jackson@ximian.com>
13652         * ButtonBase.cs: Just use the base CreateParams. They set
13653         visibility and enabled correctly.
13654         * ComboBox.cs:
13655         * TrackBar.cs:
13656         * MonthCalendar.cs: Lets let the base set as much of the
13657         createparams as possible so we don't have duplicate code all over
13658         the place.
13660 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
13662         * ThemeGtk.cs: Added TrackBar and some experimental code to
13663           get double buffering back
13665 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
13667         * DataGrid.cs: Allows row number set internally higher than the last
13668         when creating a new row. Restores the editing functionality.
13670 2006-01-20  Mike Kestner  <mkestner@novell.com>
13672         * MimeIcon.cs: delay Image creation until the icons are accessed
13673         instead of creating 190 scaled images on GnomeHandler startup.
13675 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
13677         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
13678           first call base before processing the event. Fixes #77279
13680 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
13682         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
13683           that the stride for the GDI bitmap would match the stride of
13684           a DIB or a Cursor.
13686 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
13688         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
13690 2006-01-19  Jackson Harper  <jackson@ximian.com>
13692         * ComboBox.cs: Hookup the text controls keydown event so we get
13693         those when the text control has the focus.
13695 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
13697         * Label.cs: Now using the base events instead of defining new ones;
13698           this allows us to just call the base properties without having to
13699           duplicate all base property logic 
13701 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
13703         * Label.cs: A label by default is not a tabstop (Fixes one of our
13704           failing nunit tests)
13706 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
13708         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
13709         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
13711 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
13713         * Cursor.cs: Reimplemented creating cursor bitmaps without using
13714           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
13715           This fixes #77218
13716         * XplatUIWin32.cs: 
13717           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
13718             constructor creates images that can't be saved. Part of the fix
13719             for #76103
13720           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
13721           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
13722             bug fix for handling window state in forms properly)
13724 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
13726         * ThemeGtk.cs: Simplify ScrollBar drawing
13728 2006-01-18  Jackson Harper  <jackson@ximian.com>
13730         * Splitter.cs: Set the default dock style for the splitter control
13731         in the constructor.
13733 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
13735         * ThemeGtk.cs: Corrected StateType and ShadowType for
13736           gtk_paint_box
13738 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
13740         * Control.cs: Make use of Theme.DoubleBufferingSupported
13741         * ThemeGtk.cs:
13742           - Added drawing for flat style buttons
13743           - Added ScrollBar drawing
13745 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
13747         * ThemeClearlooks.cs: Removed some unneeded code.
13748         * ThemeGtk.cs: First part of ThemeGtk enhancements.
13750 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
13752         * LinkLabel.cs: We need to update the hover drawing when
13753           leaving the control as well.
13755 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
13757         * DataGrid.cs: Clicking on non empty areas in the columns
13758            area was giving an exception
13760 2006-01-17  Jackson Harper  <jackson@ximian.com>
13762         * ThemeWin32Classic.cs:
13763         * ListView.cs: Do not draw/clip the headers when the header style
13764         is None.
13766 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
13768         * DataGrid.cs: Fixes 77260
13769         
13770 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
13772         * DataGrid.cs: Clicking on a column on a empty grid was giving
13773           an exception
13775 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
13777         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
13778           or any keypress will crash the grid.
13780 2006-01-17  Mike Kestner  <mkestner@novell.com>
13782         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
13783         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
13784         invisible/previously-visible items.
13785         [Fixes #76909]
13787 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
13789         * ThemeClearlooks.cs:
13790         - Added CL_Draw_Button method; now other theme controls that are 
13791           not derived from button or do not have a button can draw buttons
13792           too
13793         - Updated ComboBox drawing
13794         - Beautified RadioButton drawing
13795         - Corrected drawing of bottom and left tabs
13796         - Beautified DateTimePicker and MonthCalendar
13797         - Added CPDrawButton and CPDrawRadioButton
13799 2006-01-16  Jackson Harper  <jackson@ximian.com>
13801         * ComboBox.cs: Set the initial value of the scrollbar to the
13802         current index. Reduce the numbers of refreshs and IndexOfs called.
13804 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
13806         * FileDialog.cs: When the file listview is focused hitting the
13807           backspace key moves the fileview to the parent directory
13809 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
13811         * Form.cs: 
13812           - Added RecreateHandle call when changing taskbar visibility to 
13813             trigger reparenting in Win32 driver (Fixes #75719)
13814           - If a window has minimize or maximize buttons, it cannot have
13815             a help button
13816         * XplatUIWin32.cs:
13817           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
13818             the toplevel form with FosterParent (A toolwindow not on the
13819             taskbar) (Fixes #75719)
13820           - Made FosterParent a toolwindow
13822 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
13824         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
13826 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
13828         * ToolTip.cs: If SetToolTip is called from a control and the mouse
13829           is currently over that control, make sure that tooltip_window.Text
13830           gets updated
13832 2006-01-13  Mike Kestner  <mkestner@novell.com>
13834         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
13836 2006-01-13  Jackson Harper  <jackson@ximian.com>
13838         * TreeView.cs: On MS GetNodeAt never actually factors in the X
13839         value passed.  Also redraw the selected node when we recieve
13840         focus, so tabbing between trees works correctly.
13842 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
13844         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
13845           ~/.gconf/%gconf-tree.xml, so use
13846           .gconf/desktop/gnome/interface/%gconf.xml
13848 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
13850         * TextControl.cs: Draw text in gray if control is disabled
13852 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
13854         * TreeView.cs: Draw the focus rectangle outside the highlight, to
13855           make sure it's always visible. Fixes #76680.
13857 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
13859         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
13861 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
13863         * PageSetupDialog.cs: Added.
13864         * PrintDialog.cs: Attributes.
13865         * PrintPreviewControl.cs: Updates.
13866         * PrintPreviewDialog.cs: Updates.
13867         
13868 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
13870         * Control.cs: Undid my selection check fix, since it's not needed
13871         * TextBoxBase.cs:
13872           - Now considering the presence of hscroll/vscroll when sizing
13873             vscroll/hscroll respectively. Fixed bug #77077
13874           - Added Left/Up/Down/Right to IsInputKey list to prevent
13875             ContainerControl from stealing them. This fixes what I broke
13876             with my last checkin.
13878 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
13880         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
13881           I finally understand how the property can be set without a setter :-)
13883 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
13885         * Application.cs:
13886           - Switched RunLoop to use static Message.Create to create a 
13887             Message object
13888           - Added PreProcessMessage call in runloop for keyboard events; this
13889             is part of the fix for #77219, I overlooked this originally in the
13890             MSDN doc for PreProcessMessage
13891         * Control.cs:
13892           - Removed call to PreProcessMessage from handling of keyboard 
13893             messages; it's supposed to be done in the message pump
13894           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
13895             per MSDN documentation.
13896           - IsInputChar: All chars are input chars by default; removed the 
13897             parent calling chain, MS does not document that
13898           - PreProcessMessage: If IsInputChar is true, we want to return false
13899             to allow dispatching of the message
13900           - When selecting the next control, now also check that we're not
13901             selecting ourselves again and therefore return a false positive.
13902         * TextBoxBase.cs:
13903           - Tried to match return values for IsInputKey and ProcessDialogKey
13904             to what MS returns; moved processing of our special keys outside
13905             ProcessDialogKey since MS does not seem to return true on those.
13906           - Moved code that previously was in ProcessDialogKey into new private
13907             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
13908           - Reworked handling of WM_CHAR to not have to duplicate code from
13909             Control.cs anymore, instead we simply call down to base.
13910            
13911 2006-01-12  Jackson Harper  <jackson@ximian.com>
13913         * ComboBox.cs: We always need to refresh the text area when
13914         EndUpdate is called. Fixes the combobox in the file dialog.
13915         * Control.cs: Don't create the creator_thread until the controls
13916         handle is created.  Also in InvokeRequired we check if the
13917         creator_thread is null. This gives the effect of InvokeRequired
13918         returning true if the controls handle is not created yet, and
13919         matches MS.
13921 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
13923         * XplatUI.cs:
13924           - Added StartLoop() driver method. This is used to allow drivers to
13925             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
13926             loop for a particular thread
13927           - Added EndLoop() driver method. This is called once the message
13928             pump for the thread is shut down
13929           - Added SupportsTransparency method to allow the driver to indicate
13930             opacity support for windows
13931         * Form.cs:
13932           - Removed TODO attribute, completed AllowTransparency property
13933           - Added documented logic to Opacity
13934         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
13935           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
13936           versions of CompatibleTextRendering
13937         * X11Structs.cs: Added opacity atom to our atom enumeration
13938         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
13939           of a form might be set before it's reparented by the WM, and we need
13940           the opacity value without calling up to Form)
13941         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
13942           SupportsTransparency() driver methods
13943         * Application.cs: Now calling StartLoop and EndLoop driver methods
13944         * XplatUIX11.cs:
13945           - Added opacity atom registration
13946           - Added StartLoop()/EndLoop() methods. They're empty right now but
13947             will need to get implemented when we switch to a per-thread queue
13948           - Implemented SupportsTransparency() method
13949           - Implemented SetWindowTransparency() method
13950           - Added support for setting the opacity value when a window is
13951             reparented (since the opacity needs to be set on the WM frame)
13952         * XplatUIOSX.cs, XplatUIWin32.cs:
13953           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
13955 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
13957         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
13959 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
13961         * FileDialog.cs: Added ToolTip for MWFFileView
13962         * MimeIcon.cs: Rewrote GnomeHandler.
13963           - Get currently used gnome icon theme from
13964             ($HOME)/.gconf/%gconf-tree.xml
13965           - Make use of inherited icon themes
13966           - Support SVG icon themes like Tango via librsvg
13968 2006-01-12  Miguel de Icaza  <miguel@novell.com>
13970         Revert's Jackson's revert which broke 2.0 builds.   Fix both
13971         builds. 
13972         
13973         * Application.cs: Move the use_compatible_text_rendering outside
13974         the NET_2_0 define.  If we ever need to use the
13975         use_compatible_text_rendering on the individual controls they will
13976         access the variable from the common shared code paths.
13978 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
13980         * XplatUI.cs:
13981           - Added more granular debug options
13982           - Added method to print both window text and id
13983           - Switched debug output to use new Window() debug method
13984           - Added IsEnabled() driver method
13985           - Added EnableWindow() driver method
13986         * Form.cs:
13987           - Removed end_modal; no longer needed, new loop handles termination
13988             via 'closing' variable
13989           - If form is modal, setting DialogResult will now initiate loop
13990             termination via 'closing' variable
13991           - Added support for is_enabled/WS_DISABLED to CreateParams
13992           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
13993             does all the work
13994           - Removed code that's now in RunLoop from ShowDialog()
13995           - Added various documented sanity checks to ShowDialog()
13996           - Added handling of WM_DESTROY message; we set 'closing' on getting
13997             the message to indicate the message pump to terminate
13998           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
13999             send by the Application.ExitThread method. (We send the message
14000             to destroy the window after all other events have been
14001             processed through the queue, instead of destroying the handle 
14002             directly)
14003           - Moved code from Close() method to WM_CLOSE handler; added logic
14004             to only send close-related events if the form is not displayed
14005             modal
14006         * Splitter.cs (..ctor): Fixed typo in resource name
14007         * Control.cs:
14008           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
14009             brush now
14010           - set_Cursor: Now only setting calling into XplatUI if the handle for
14011             the control is already created; this avoids implict handle creation
14012             or crashes if it's not created
14013           - set_Enabled: Now setting the enabled state via the new driver method
14014             instead of just tracking it
14015           - CreateParams: Added logic to set WS_DISABLED based on enabled state
14016           - CreateControl: Reordered event firing and method calls to more
14017             closely fire events in the order MS does. Now setting the
14018             enabled state in the driver when creating the control.
14019           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
14020             match MS order
14021         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
14022           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
14023         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
14024         * Hwnd.cs:
14025           - Added tracking of window enabled state (get_Enabled/set_Enabled)
14026           - Added EnabledHwnd property to easily allow a driver to find the
14027             handle of the first enabled window in the parent chain (this is
14028             used by drivers to pass up input events of disabled windows)
14029         * XplatUIDriver.cs: Added IsEnabled() method
14030         * Application.cs:
14031           - Removed crude and obsolete exiting tracking variable
14032           - Removed internal ModalRun(); replaced by RunLoop()
14033           - Implemented private CloseForms() method to allow closing all 
14034             windows owned by a particular (or all) threads
14035           - Exit() now properly closes all windows without forcing the message
14036             pump to quit
14037           - Removed obsolete InternalExit() method
14038           - Changed Run() methods to use new RunLoop() message pump
14039           - Implemented new RunLoop() method for both modal and non-modal forms
14040         * CommonDialog.cs:
14041           - get_CreateParams: Added setting of WS_DISABLED
14042           - Simplified ShowDialog(); now all the work is done in RunLoop(),
14043             invoked via Form.ShowDialog()
14044         * NativeWindow.cs: We don't remove the window from the collection when
14045           the handle is destroyed; there might still be messages for it in the
14046           queue (mainly the resulting WM_DESTROY); instead it will be removed
14047           when Control calls InvalidateHandle in the WM_DESTROY handler
14048         * XplatUIX11.cs:
14049           - CreateWindow: Added logic to handle the WS_DISABLED window style
14050           - EnableWindow: Implemented based on Hwnd.Enabled
14051           - GetMessage: Reset PostQuitState so the method can be called again
14052           - Implemented support for disabled windows (passing messages to the
14053             first enabled parent) in handling all input messages
14054           - Added optimizations for handling Expose events
14055           - Implemeted new driver method IsEnabled()
14056           - Now always resetting paint pending tracking vars when we start paint
14057           - Re-implemented UpdateWindow via just sending a WM_PAINT message
14058         * XplatUIOSX.cs: Added IsEnabled method stub
14059         * XplatUIWin32.cs: Implemented new IsEnabled() method
14061 2006-01-11  Jackson Harper  <jackson@ximian.com>
14063         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
14064         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
14065         variables a little.
14066         * ColorDialog.cs: Clear out the old form before adding the new
14067         panel.  
14069 2006-01-11  Jackson Harper  <jackson@ximian.com>
14071         * X11Dnd.cs: Make sure to add all the text formats when adding
14072         strings to the data object.
14073         * TreeNodeCollection.cs: When adding to a sorted tree we need to
14074         do some redrawing too.  Also change the UpdateNode to an
14075         UpdateBelow so the newly added node gets painted.
14076         
14077 2006-01-11  Miguel de Icaza  <miguel@novell.com>
14079         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
14080         LinkLabel.cs, PropertyGrid.cs: Implement the
14081         UseCompatibleTextRendering property for 2.x
14083         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
14085 2006-01-11  Jackson Harper  <jackson@ximian.com>
14087         * TreeView.cs: Use the property for setting the selected node so
14088         the correct events get raised.
14089         * TreeNode.cs: Update the tree when the fore/back colours of a
14090         node are set.
14092 2006-01-10  Jackson Harper  <jackson@ximian.com>
14094         * TreeView.cs: Allow setting SelectedNode to null.
14096 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
14098         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
14100 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
14102         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
14104 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
14106         * PrintDialog.cs: Added attributes and set default property values.
14108 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
14110         * PrintControllerWithStatusDialog.cs: 
14111         Added PrintControllerWithStatusDialog.
14113 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
14115         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
14116         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
14118 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
14120         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
14122 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14124         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
14125         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
14127 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
14129         * MimeIcon.cs: Added internal class SVGUtil.
14131 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
14133         * FileDialog.cs: Don't crash if there are two files with the
14134           same name but different locations.
14136 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
14138         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
14139         dates across multiple month grids. Used to not highlight entire 
14140         month, but does now.
14141         
14142 2006-01-06  Jackson Harper  <jackson@ximian.com>
14144         * MonthCalendar.cs: Removed DoEvents call to prevent a running
14145         message loop. Change timer intervals to numbers that seem more
14146         natural.
14148 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
14150         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
14151           object for location info since screen object is now implemented.
14153 2006-01-05  Jackson Harper  <jackson@ximian.com>
14155         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
14156         * AsyncMethodResult.cs: We no longer use a WeakReference for the
14157         AsyncMethodResult, this is because we ALWAYS want the
14158         ManualResetEvent to get set.
14159         * Control.cs: When disposing use an async invoke to call shutdown
14160         code, so that thigns don't block on the finalizer thread.  Also
14161         check if we even have a message loop before trying to send
14162         messages, if we don't then don't bother sending messages.
14163         - No more weak references for async methods
14164         * XplatUIDriver.cs: No more weak references for async methods.
14166 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
14168         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
14169           returns two FontFamily with the same name
14171 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
14173         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
14174           drawing disabled text. Instead using the ColorGrayText color
14176 2006-01-04  Jackson Harper  <jackson@ximian.com>
14178         * TreeNode.cs: redraw the node when its image index is changed.
14180 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
14182         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
14183           time I checked there are no others like it.
14185 2006-01-04  Jackson Harper  <jackson@ximian.com>
14187         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
14188         this gives the behavoir I was looking for.
14189         * Control.cs: Special case Invoking EventHandlers, this matches MS
14190         and fixes part of bug #76326.
14192 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
14194         * ThemeClearlooks.cs, FileDialog.cs:
14195           - Reflect the latest Theme class changes
14196           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
14197             with DateTime
14198             
14199 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
14201         * Theme.cs: Cache UI resource images and resize them if needed
14203 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
14205         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
14206           is called. This fixes the crash in Nexxia when setting the font
14207           attributes in the chat. [However, RTF needs a look-over to make sure
14208           that all SelectionXXX methods handle the special case that selection
14209           is empty and therefore the change must be applied to all text starting
14210           at the cursor/selection start]
14212 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
14214         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
14215           XplatUIOSX.cs: Added SendMessage and PostMessage methods
14216         * X11Keyboard.cs: Switched to new way of calling PostMessage
14218 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
14220         * Theme.cs: Added theme interface for images to allow the theme to
14221           control what images are used for things like FileDialog, MessageBox
14222           icons, etc.
14223         * MessageBox.cs: Now uses the new Theme icon/image interfaces
14225 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
14227         * FileDialog.cs:
14228           - Removed some dead code
14229           - Opening a recently used file does work now
14230           - Small UI enhancements
14231           - Refactoring
14233 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
14235         * FileDialog.cs: Forgot too add __MonoCS__
14237 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
14239         * FileDialog.cs: We are able to read recently used files now let's
14240           go on and write them.
14242 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
14244         * FileDialog.cs: Breathe some life into "last open"/"recently used"
14245           button
14246         * MimeIcon.cs: Do a check for the top level media type also
14248 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
14250         * ThemeClearlooks.cs:
14251           - Added CPDrawStringDisabled
14252           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
14253             some chars if the text doesn't fit into text_rect
14254           - DrawListViewItem: If View = View.LargeIcon center the image;
14255             rewrote the drawing of ListViewItem.Text if View = 
14256             View.LargeIcon
14258 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
14260         * MimeIcon.cs: Use default KDE icon theme if there is no
14261           "48x48" directory for the current icon theme, fixes #77114
14262         * Mime.cs: Disable not working and actually not used code. 
14263         * ThemeWin32Classic.cs:
14264           - Replace "new SolidBrush" in GetControlBackBrush and
14265             GetControlForeBrush with ResPool.GetSolidBrush
14266           - Changed DrawListViewItem from private to protected virtual
14267         * FileDialog.cs:
14268           - Added form.MaximizeBox = true
14269           - Don't throw an exception if there is a broken symbolic link
14271 2005-12-23  Jackson Harper  <jackson@ximian.com>
14273         * TabControl.cs: Give the panels focus, keyboard navigation is
14274         fixed so this works correctly now.
14275         - We need these key events also.
14276         * ToolBar.cs: Remove some of the poor mans double buffering.
14277         
14278 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
14280         * ComboBox.cs: The internal TextBox now returns the focus.
14282 2005-12-23  Jackson Harper  <jackson@ximian.com>
14284         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
14286 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
14288         * Control.cs: Removed debug code
14289         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
14290           implicit children
14292 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
14294         * Control.cs: When creating the control, update the Z-order after
14295           all it's children are created, too. (Fixes nexxia not showing
14296           picturebox bug)
14298 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
14300         * Control.cs: Do not update the anchoring distances if layout is
14301           suspended, instead do it once layout is resumed
14303 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
14305         * Control.cs: 
14306           - After many hours of debugging, for both Jackson and
14307             myself, it turns out that it helps to set the parent of a control
14308             if you want to actually see it onscreen. In the spirit of that
14309             discovery, we're now setting the parent of the control and
14310             it's children when the control's handle is created. This fix
14311             will make Lutz Roeder's Reflector run happily. 
14312           - now just creating the handle instead of the whole control when
14313             getting a graphics context for the control.
14315 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
14317         * ScrollableControl.cs: When calculating the canvas, don't consider
14318           the scrollbar widths. Instead, predict if horizontal scrollbar
14319           will affect canvas when deciding on vertical display and vice versa.
14321 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
14323         * RichTextBox.cs: Set default RTF font for documents that don't
14324           have a font table (Fixes #77076)
14326 2005-12-22  Jackson Harper  <jackson@ximian.com>
14328         * TextBoxBase.cs: It's difficult to do, but you can have an empty
14329         clipboard. This prevents a NullRef in that case.
14330         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
14331         clipboard. PRIMARY is for the currently selected text only. (We
14332         should implement PRIMARY at some point.
14334 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
14336         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
14337           a Unicode function with a structure that was defined in Ansi way.
14338           This fixes #76942.
14340 2005-12-21  Jackson Harper  <jackson@ximian.com>
14342         * StatusBar.cs: Statusbar handles its fore/back colours on it's
14343         on. Because thats how it rolls. (and this avoids it using ambient
14344         colours).
14345         * ThemeWin32Classic.cs: Use the proper back color for filling.
14346         * Menu.cs: Use the system menu bar color for drawing menu
14347         bars. Using the window back color will bring ambient colours into
14348         the picture.
14350 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
14352         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
14353           Bitmaps were created and not disposed.
14355 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
14357         * Control.cs (CreateControl): Don't do anything if the control is
14358           already created, otherwise we'd fire the OnCreated event more than
14359           once
14361 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
14363         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
14364           will always match. Instead return -1. Fixes #76464.
14366 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
14368         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
14369           neither the beginning nor the end of the line (Fixes bug #76479)
14371 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
14373         * Control.cs:
14374           - ControlNativeWindow.ControlFromHandle(): Now handling situation
14375             where handle is invalid
14376           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
14377             instead of slower linear search
14378         * NativeWindow.cs: Don't remove the window from the hashtable until
14379           after the driver has destroyed it (since the driver might use
14380           Control.FromHandle to lookup the control object
14381         * Hwnd.cs: Added DestroyPending property to track if a window is 
14382           already destroyed as far as the driver is concerned and only hasn't
14383           yet notified the control
14384         * XplatUIX11.cs:
14385           - Activate(): Check if the window is still valid before using the 
14386             handle
14387           - Implemented DestroyChildWindow() method to mark child windows as
14388             destroyed when a window is destroyed. This prevents situations 
14389             where we might call an X method based on queued events for a
14390             window that already has been destroyed but we haven't yet pulled
14391             the destroy method from the queue.
14392           - Added a call to the new DestroyChildWindow() method to the drivers
14393             DestroyWindow code. Also now marking the destroyed window itself
14394             as pending
14396 2005-12-20  Jackson Harper  <jackson@ximian.com>
14398         * StatusBar.cs:
14399         * StatusBarPanel.cs: Don't calculate panel sizes on draw
14400         anymore. Just do them when needed, also track the rects of panels
14401         so that we can optimize refreshing more in the future.
14403 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
14405         * ColorDialog.cs: Fixed focus drawing in small color controls
14407 2005-12-19  Jackson Harper  <jackson@ximian.com>
14409         * InternalWindowManager.cs:
14410         * MdiWindowManager.cs: Cleanup some coordinate system changes so
14411         moving windows works properly.
14413 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
14415         * Control.cs: 
14416           - Removed call to InitLayout() from SetBoundsCore(); doc says
14417             it's only called when a control is added to a container
14418           - Split InitLayout logic, moved to separate UpdateDistances() method
14419             since we need to perform those calculations more often than just
14420             when adding the control to a container. (Needed to fix #77022)
14421           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
14422           - Reduced the OnBindingContextChanged events count, don't send them
14423             unless the control is created, we still aren't totally matching
14424             MS, but I can't quite figure out some of their rules
14426 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
14428         * ThemeClearlooks.cs: Corrected distance between ProgressBar
14429           stripes
14431 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
14433         * ThemeClearlooks.cs:
14434           - Updated ProgressBar drawing
14435           - Corrected drawing of ScrollBars and scroll buttons
14436           - Some temporary fixes for minor pixel artefacts
14438 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
14440         * Control.cs:
14441           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
14442             cause events to be sent in the same order as MS does.
14443           - Added ChangeParent() method to trigger various OnXXXChanged events
14444             that need to be fired when a parent changes (This is a reworking
14445             of the patch from r54254, with the X11 errors fixed)
14446           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
14447             since on MS we get OnLayoutChanged events when calling Clear()
14448           - Changed Enabled property to consider parent state as well, if a
14449             parent is not enabled, the control will not be either
14450           - Changed Parent property to simply call Controls.Add() since that
14451             now does all the work required, this way we avoid code duplication
14452           - Threw in a few OnBindingsContextChanged calls to try and match
14453             when MS sends them. We seem to send a few too many, though.
14454           - Added call to CreateControl when adding the control to a parent.
14455             We were never calling CreateControl. Still needs some work, in
14456             some places we treat HandleCreated and ControlCreated as equal, 
14457             which is wrong
14458           - Removed obsolete commented out code from UpdateZOrder()
14460 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
14462         * ThemeClearlooks.cs: Updated TrackBar drawing.
14464 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
14466         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
14468 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
14470         * FileDialog.cs: Add the Help button and the open readonly
14471           checkbox only if needed
14473 2005-12-16  Jackson Harper  <jackson@ximian.com>
14475         * Control.cs: Make sure we have an active menu before trying to
14476         process commands on it. Prevents menu-less forms from crashing
14477         when Alt is pressed.
14478         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
14479         Dieter Bremes.
14480         * RichTextBox.cs: Expand statement to help out gmcs and fix the
14481         2.0 build.
14483 2005-12-16  Jackson Harper  <jackson@ximian.com>
14485         * InternalWindowManager.cs: Don't translate tool windows screen
14486         coordinates. This fixes windows 'bouncing' around when being moved.
14488 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
14490         * TextBoxBase.cs:
14491           - MaxLength now treats 2^31-1 equal to unlimited length (this is
14492             not quite MS compatible, MS uses that number only for single line
14493             and 2^32-1 for multi-line, but I figure it won't hurt keeping
14494             the limit at 2GB)
14495           - Now enforcing the MaxLength limit when entering characters
14496           - Added argument to internal Paste() method to track if it's called
14497             from programatically or via keyboard, since keyboard driven pastes
14498             need to enforce max-length
14499           - Added logic to Paste to only paste as many chars as MaxLength 
14500             allows
14501         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
14502         * TextControl.cs:
14503           - Added Length property to return number of characters in document
14504           - Added private CharCount property which only tracks actual chars
14505             in the document (no linefeeds) and fires event when CharCount
14506             changes
14507           - Added tracking of character count to all methods that alter it
14508           - Added LengthChanged event to allow applications to subscribe
14509             to any changes to the document
14511 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
14513         * TextBox.cs: 
14514           - Removed local password_char field (moved to TextBoxBase)
14515           - Now setting the document's password var when password is
14516             set
14517         * TextBoxBase.cs:
14518           - Added password_char field (needed here so MultiLine can
14519             access it)
14520           - Added logic to MultiLine property setter to set the document's
14521             variable when password display is allowed
14522           - Removed debug code and made some debug code conditional
14523         * TextControl.cs:
14524           - Added RecalculatePasswordLine() method to handle special password
14525             char only lines
14526           - Added PasswordChar property, also added related tracking vars
14527           - Draw() method now uses local text var for grabbing text to draw,
14528             this var is set to line.text unless we're doing password display,
14529             then it is set to the pre-generated all-password-chars line
14530           - Added calling RecalculatePasswordLine() method for password lines
14532 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
14534         * Hwnd.cs: 
14535           - Added Reparented property to allow tracking of Window Manager
14536             reparenting actions (which affect X/Y calculations of toplevel 
14537             windows)
14538           - Made ToString() print window handles in hex
14539         * XplatUIX11.cs:
14540           - AddConfigureNotify(): Now uses reparented state off Hwnd to
14541             determine if X/Y needs offsetting
14542           - AddConfigureNotify(): Fixed offset calculations
14543           - Now adds ReparentNotify messages into the queue
14544           - Now processes ReparentNotify messages and causes a 
14545             WM_WINDOWPOSCHANGED message to be sent upstream if a window
14546             is reparented (as most likely it's X/Y coordinates are changed
14547             due to that)
14549 2005-12-14  Jackson Harper  <jackson@ximian.com>
14551         * XplatUIX11.cs: Tool windows still need to respek focus.
14553 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
14555         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
14556           have a working release
14558 2005-12-13  Jackson Harper  <jackson@ximian.com>
14560         * Form.cs: Update styles after setting the border style regardless
14561         of whether or not the window is using a window manager.
14563 2005-12-13  Jackson Harper  <jackson@ximian.com>
14565         * Form.cs: We now hook into an internal window manager instead of just an
14566         MDI subsystem, this is so we can have properly behaving tool windows.
14567         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
14568         * InternalWindowManager.cs: New internal class that acts as a
14569         window manager for tool windows and as a base for mdi windows.
14570         * MdiWindowManager.cs: New class that acts as a window manager for
14571         mdi windows.
14573 2005-12-12  Jackson Harper  <jackson@ximian.com>
14575         * Control.cs: Updates so we match behavoir for for implicit
14576         controls. Fixes explosions in MDI.
14578 2005-12-12  Jackson Harper  <jackson@ximian.com>
14580         * Control.cs: Implement Invalidate (Region).
14582 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
14584         * Control.cs: 
14585           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
14586             the same events as MS does. MS fires events for each property 
14587             except, for unknown reasons, Cursor, when the control is reparented. 
14588             I can't seem to totally match add/remove since MS also fires some 
14589             VisibleChanged events, which makes no sense. Consolidated the
14590             parenting code into a separate method so it can be called from
14591             both Add and Remove. set_Parent no longer needs any special logic
14592             as it calls the parent's add method which implicitly fires
14593             all events
14594           - Removed some obsolete code and debug output
14595           - Enabled state is inherited from parents, if this is enabled
14597 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
14599         * Form.cs: Removed commented out code
14601 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
14603         * Control.cs:
14604           - Added internal version of Invoke, with additional argument 
14605             indicating if we're calling it from a Dispose() handler. That
14606             way we can avoid BeginInvoke throwing an exception if we're
14607             calling for an already destroyed window.
14608           - Added a dispose argument to BeginInvokeInternal, and made the
14609             check if a valid window handle chain exists conditional on
14610             it not being a dispose call
14611           - Removed code in DestroyHandle to destroy our children. Since we
14612             now handle the WM_DESTROY message we will catch all our children
14613             being destroyed.
14614           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
14615         * Form.cs:
14616           - Added a field to track the application context of the form.
14617           - No need to set closing variable as response to WM_CLOSE, instead
14618             we destroy the window. We also call PostQuitMessage if the form
14619             has an application context (which makes it the main app form,
14620             which, when closed terminates the app)
14621         * XplatUI.cs:
14622           - Dropped Exit() method, it's naming was confusing
14623           - Added PostQuitMessage() which causes GetMessage to return false
14624             once the message queue is empty
14625         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
14626           PostQuitMessage()
14627         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
14628           no longer a valid XplatUI method, but left it in since it's used
14629           internally. Added empty PostQuitMessage() method.
14630         * MenuAPI.cs: Replaced call to Exit() with call to
14631           PostQuitMessage, even though this is probably no longer needed.
14632         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
14633         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
14634         * Application.cs:
14635           - Replaced call to XplatUI.Exit() with PostQuitMessage()
14636           - Removed old debug code that would call XplatUI for exception
14637             display, enabled standard exception handling (Still not enabled
14638             though, until NativeWindow's ExternalExceptionHandler define
14639             is removed
14640         * NativeWindow.cs:
14641           - Added internal method to allow control to update NativeWindow
14642             after a window has been destroyed
14643           - Added handling of already destroyed windows when calling i
14644             DestroyWindow
14645           - Added removal of handle from list on ReleaseHandle
14646         * XplatUIX11.cs:
14647           - Dropped GetMessageResult var and related code
14648           - Added PostQuitState to field to track if PostQuitMessage has been
14649             called
14650           - Dropped Exit() method
14651           - Added PostQuitMessage() method
14652           - GetMessage now will return false if PostQuitState is set and no
14653             more messages are in the queue.
14654           - Expose handler will no longer generate WM_PAINT messages if we are
14655             in PostQuitState since it's very likely any windows have already
14656             been destroyed, and since Hwnd won't get updated until we have
14657             processed the DestroyNotify we'd be causing X errors.
14658         
14659 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
14661         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
14662           Thanks to Mike for pointing out the err of my ways.
14664 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
14666         * Control.cs(PreProcessMessage): Moved menu handling back, but
14667           after all other key handling, to match MS (who handles Menu in
14668           DefWndProc)
14669         * Menu.cs (WndProc): Removed my brainfart
14671 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
14673         * Control.cs(PreProcessMessage): Removed special menu handling 
14674         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
14676 2005-12-07  Mike Kestner  <mkestner@novell.com>
14678         * Control.cs : special case SYSKEYUP so that we can adjust keynav
14679         state according in tracker.
14680         * Menu.cs : promote tracker field to base class and provide a tracker
14681         lookup capability.  Add/Remove shortcuts dynamically if the top menu
14682         has a tracker. Unparent items that are removed from the collection.
14683         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
14684         * Theme*.cs: add always_show_hotkeys field to support configurability
14685         of mnemonic display.  win32 doesn't show mnemonics until Alt is
14686         pressed.
14688 2005-12-07  Jackson Harper  <jackson@ximian.com>
14690         * MdiChildContext.cs: Use Control.ResetCursor.
14691         * Control.cs: ResetCursor needs to set the property so that the
14692         correct XplatUI call gets made.
14694 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
14696         * Control.cs: More fixes to make our key events match MS. We
14697           were not setting the modifier state on KeyData, and we were
14698           not generating any events when Alt was pressed with a key
14699           since handling of WM_SYSxxx was missing for the OnKey methods.
14701 2005-12-07  Jackson Harper  <jackson@ximian.com>
14703         * MdiChildContext.cs: reenable the sizing code.
14704         - When the mouse leaves a window reset its cursor.
14706 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
14708         * ThemeClearlooks.cs: Reflect latest Hwnd changes
14710 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
14712         * Hwnd.cs: Now using the theme 3d bordersize to calculate
14713           widths of Fixed3D borders
14715 2005-12-07  Jackson Harper  <jackson@ximian.com>
14717         * MdiClient.cs: Fix warnings. Earn Mike's love.
14719 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
14721         * ThemeClearlooks.cs:
14722           - Adjusted mouse over button color
14723           - Added first parts of CheckBox drawing
14724           - Added correct color for selected text background
14725           - Fixed ComboBox drawing
14726           - Added CPDrawBorder3D and CPDrawBorder
14728 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
14730         * XplatUIX11.cs: Added call to XBell for AudibleAlert
14732 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
14734         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
14735           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
14736           alert users via sound. We could add an enum arg with different
14737           types of alerts in the future
14739 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
14741         * Control.cs: Fix behaviour problems pointed out by Mike
14743 2005-12-05  Mike Kestner  <mkestner@novell.com>
14745         * StatusBarPanel.cs: add Invalidate method and hook it into all the
14746         prop setters.  Calls parent.Refresh for now, but could be maybe be
14747         optimized with an internal method on StatusBar at some point.
14748         [Fixes #76513]
14750 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
14752         * RichTextBox.cs: Implemented get_SelectionColor
14754 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
14756         * ThemeClearlooks.cs:
14757           - Removed dead code
14758           - Draw black button border only if button is Form.AcceptButton
14759           - Draw correct button color for pressed RadioButton if the mouse 
14760             has entered the button
14761           - Updated ProgressBar drawing!
14762           - Updated CPDrawSizeGrip drawing
14763           - Updated StatusBarPanel drawing
14765 2005-12-05  Mike Kestner  <mkestner@novell.com>
14767         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
14768         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
14770 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
14772         * ThemeClearlooks.cs: Initial check-in, activate with
14773           export MONO_THEME=clearlooks
14774         * ThemeEngine.cs: Added ThemeClearlooks
14776 2005-12-03  Mike Kestner  <mkestner@novell.com>
14778         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
14779         [Fixes #76897]
14781 2005-12-02  Jackson Harper  <jackson@ximian.com>
14783         * Form.cs: If the child form has no menu the default main menu is
14784         used as the active menu.
14786 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
14788         * ListBox.cs: Check if any items exist before trying to resolve 
14789           coordinates into items
14791 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
14793         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
14794           as the second color for the background hatch
14796 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
14798         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
14799         * RichTextBox.cs: FormatText position arguments are 1-based, now making
14800           sure that what we pass to FormatText is always 1-based. Fixes #76885
14802 2005-11-29  Miguel de Icaza  <miguel@novell.com>
14804         * NumericUpDown.cs (EndInit): When we are done initializing,
14805         reflect any updates on the UI.
14807 2005-12-02  Jackson Harper  <jackson@ximian.com>
14809         * ImplicitHScrollBar.cs:
14810         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
14811         their container controls.
14812         * TreeView.cs: Use the new implicit scrollbars.
14814 2005-12-02  Jackson Harper  <jackson@ximian.com>
14816         * TreeView.cs: Make top_node internal so the TreeNodeCollections
14817         can play with it.
14818         * TreeNodeCollection.cs: If we remove the topnode we need to
14819         update topnode to the next node in line.
14820         - When clearing nodes go through the same process as removing
14821         them, so they get depareneted and checked if they are top node.
14823 2005-12-01  Jackson Harper  <jackson@ximian.com>
14825         * TreeView.cs: When imagelists are used the image area is
14826         selectable as well as the text.
14827         - If there are no selected nodes select the first one.
14828         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
14829         so don't do it more then we need to.
14831 2005-12-01  Jackson Harper  <jackson@ximian.com>
14833         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
14834         that arrows can be scaled.
14836 2005-12-01  Jackson Harper  <jackson@ximian.com>
14838         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
14839         fail. Patch by Dieter Bremes
14841 2005-11-30  Jackson Harper  <jackson@ximian.com>
14843         * Form.cs: Property is 2.0 only
14844         * PrintDialog.cs: Signature fix.
14846 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
14848         * TextControl.cs: 
14849           - No longer artificially moves text 2 pixels down (now that we have
14850             borders this is no longer needed)
14851           - Added calcs for left, hanging and right indent
14853 2005-11-23  Mike Kestner  <mkestner@novell.com>
14855         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
14857 2005-11-30  Jackson Harper  <jackson@ximian.com>
14859         * MdiChildContext.cs: Set the cloned menus forms, as these don't
14860         get cloned as part of CloneMenu ().
14861         * Menu.cs: Make sure the parent of the items get set correctly
14862         when they are added.  And the owners are notified of the changes.
14863         * Form.cs: Create an ActiveMenu property, so that when MDI is used
14864         we can change the menu being displayed/handled by the form without
14865         changing the menu assosciated with the form.
14866         - Don't let Mdi children draw/handle menus.
14867         
14868 2005-11-30  Jackson Harper  <jackson@ximian.com>
14870         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
14871         a MenuChanged event. Just to make the API a little more
14872         consistent.
14873         * MainMenu.cs:
14874         * MenuItem.cs: Use the new OnMenuChanged
14875         * MdiChildContext.cs: Handle menu merging.
14876         * Form.cs: Implement MergedMenu.
14877         
14878 2005-11-30  Jackson Harper  <jackson@ximian.com>
14880         * Menu.cs: We were misusing Add. Add goes behind the specified
14881         index according to the docs, and does not replace the specified
14882         index. So I added an Insert method.
14884 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
14886         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
14887           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
14888           is for Jackson
14889         * RichTextBox.cs: Added calls to base for DnD events
14891 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
14893         * TextControl.cs:
14894           - Fixed drag-selection related crash; style fixes
14895           - Implemented undo class
14896             o Implemented method to capture document state for specified
14897               range in document tree
14898             o Implemented method to restore captured document state
14899             o Implemented cursor tracking
14900             o Implemented basic undo stack
14901           - Added undo cursor tracking to methods altering cursor location
14902           - Added undo tracking to selection deletion (still missing
14903             other text-altering hookups)
14904         * RichTextBox.cs:
14905           - Added SelectionLength property
14906           - Implemented CanPaste()
14907           - Implemented Paste()
14908           - Added missing protected methods
14909           - Fixed RTF->Document conversion; now uses font index 0 and color 
14910             index 0 as the default font for the parsed text
14911           - Fixed RTF<->Document font size translation
14912           - Fixed RTF generation, now properly handles cross-tag boundaries
14913             for single line selection
14914           - No longer always appends blank line to generated RTF
14915           - Removed TODOs
14916           - Added missing attributes
14917           - Hooked up undo-related methods
14918         * TextBoxBase.cs:
14919           - Implemented Copy()
14920           - Implemented Paste()
14921           - Implemented Cut()
14922           - Fixed caret mis-behaviour on backspace across line-boundaries
14924 2005-11-29  Jackson Harper  <jackson@ximian.com>
14926         * MdiClient.cs: Add a method for activating mdi children. Very
14927         basic right now. I imagine someday it might need more girth.
14928         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
14929         children windows names are added to the menu item.
14930         * ThemeWin32Classic.cs: Draw the arrow if the item is an
14931         mdilist. This happens regardless of whether or not there are any
14932         mdi windows to see in the list, and according to my tests happens
14933         before the items are even added. Also happens if there isn't even
14934         an mdi client to get windows from.
14936 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
14938         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
14939         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
14941 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
14943         * DataGridTableStyle.cs:
14944           - Create always the styles for the missing columns even if they are
14945             provided by the user (not default table style)
14946         * DataGrid.cs:
14947           - Fixes bug 76770
14948           - Fixes SetDataBinding (always re-attach source)
14949           - Fixes SetNewDataSource (only clear styles if they are not for 
14950             this source)
14951          -  Expands OnTableStylesCollectionChanged to handle style refresh 
14952             and remove properly
14954 2005-11-29  Jackson Harper  <jackson@ximian.com>
14956         * FileDialog.cs: Implement missing bits, remove some dead
14957         code.
14958         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
14959         creation of the panel so that the options set on the dialog are
14960         seen when the panel is created.
14961         * TreeView.cs: raise a click when items are clicked.
14962         
14963 2005-11-29  Jackson Harper  <jackson@ximian.com>
14965         * MdiClient.cs: Pass some signature methods through to base.
14967 2005-11-28  Jackson Harper  <jackson@ximian.com>
14969         * ListView.cs: Raise the click event when items are clicked.
14971 2005-11-28  Jackson Harper  <jackson@ximian.com>
14973         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
14974         a nullref.
14976 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
14978         * ThemeNice.cs: - Removed 1 pixel bitmaps
14979           - Use SmoothingMode.AntiAlias where it makes sense
14980             (ScrollButton arrow for example)
14981           - Enhanced Button focus drawing
14982           - Fixed ComboBox drawing (no artefacts anymore, focus
14983             rectangle is back again, reduced size of ComboButton, etc.)
14984           - Fixed RadioButton focus drawing for Appearence.Button
14985           - Slight ScrollButton redesign
14986           - Some LinearGradientBrush size fixes
14987           - GroupBoxes have now rounded edges
14988           - Fixed StatusBar drawing
14990 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
14992         * ThemeNice.cs: - Remove dead code
14993           - use correct background colors for menus, etc.
14994           - Fake pixel drawing with 1 pixel bitmaps
14996 2005-11-24  Jackson Harper  <jackson@ximian.com>
14998         * MdiClient.cs: Size the scrollbars when resizing the window.
14999         - Resize the maximized windows when the client is resized
15000         * Form.cs: Make the child context available
15001         
15002 2005-11-23  Jackson Harper  <jackson@ximian.com>
15004         * MdiChildContext.cs: Don't size windows if they are maximized.
15006 2005-11-23  Mike Kestner  <mkestner@novell.com>
15008         * ContextMenu.cs: use MenuTracker.
15009         * Control.cs: remove menu handle usage.
15010         * Form.cs: remove menu handle usage.
15011         * Hwnd.cs: remove menu handle usage.
15012         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
15013         motion and clicks to the new Tracker handlers.
15014         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
15015         and handle usage.
15016         * MenuAPI.cs: refactored to combine popup and menubar event handling.
15017         Killed the MENU and MENUITEM data types and associated collections
15018         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
15019         MenuTracker class that exposes the leftovers from the old MenuAPI
15020         static methods. Restructured Capture handling so that only one grab is
15021         done for the entire menu hierarchy instead of handing off grabs to
15022         submenus. Tracker now has an invisible control to Capture when active.
15023         * MenuItem.cs: add sizing accessors, kill Create
15024         and handle usage.
15025         * Theme.cs: remove menu handle and MENU(ITEM) usage.
15026         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
15027         MENU(ITEM). remove menu handle usage, use Menu directly.
15028         * XplatUIDriver.cs: remove menu handle usage.
15029         * XplatUIOSX.cs: remove menu handle usage.
15030         * XplatUIWin32.cs: remove menu handle usage.
15031         * XplatUIX11.cs: remove menu handle usage.
15033 2005-11-22  Jackson Harper  <jackson@ximian.com>
15035         * Hwnd.cs: Don't compute the menu size for
15036         DefaultClientRectangle.
15037         - Reenable menu sizes being computed for GetClienRectangle.
15038         * Form.cs: Remove comment of trechery
15039         
15040 2005-11-22  Jackson Harper  <jackson@ximian.com>
15042         * Hwnd.cs: The adjustments for the menu bar are made when it is
15043         attached to the form.
15045 2005-11-19  Jackson Harper  <jackson@ximian.com>
15047         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
15048         (just like on windows).
15050 2005-11-19  Jackson Harper  <jackson@ximian.com>
15052         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
15053         use real buttons anymore because they are in non client area. The
15054         one TODO here is that I need to somehow invalidate a section of
15055         the non client area.
15057 2005-11-18  Jackson Harper  <jackson@ximian.com>
15059         * Control.cs: Put the enum check back in now that MDI doesnt have
15060         to use this to set border styles.
15061         * Form.cs: Only set mdi child windows borders if the handle has
15062         been created.
15063         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
15064         this directly on to the driver.
15065         - Get the move start position before adjusting for the titlebar
15066         height, this fixes the windows "skipping" when they are first
15067         moved.
15069 2005-11-18  Jackson Harper  <jackson@ximian.com>
15071         * XplatUIX11.cs: Just compute the mdi borders separately as they
15072         don't totally match up with normal form borders.
15074 2005-11-18  Jackson Harper  <jackson@ximian.com>
15076         * Control.cs: Set WS_ styles for borders, so that the driver does
15077         not have to retrieve the control instance to figure out what kind
15078         of borders it should have.
15079         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
15080         driver can know its an mdi child easily.
15081         * XplatUIX11.cs: Get the border styles and whether the window is
15082         MDI from the Styles and ExStyles params instead of having to get a
15083         control. This prevents a chicken and egg problem.       
15085 2005-11-18  Jackson Harper  <jackson@ximian.com>
15087         * MdiClient.cs: Fix typo so scrollbars show up correctly.
15089 2005-11-18  Jackson Harper  <jackson@ximian.com>
15091         * MdiClient.cs: Calculate when to add and remove scrollbars
15092         correctly.
15093         * MdiChildContext.cs: Adjust the y position to take the titlebar
15094         into account.
15095         - No height for FormBorderStyle.None
15097 2005-11-18  Jackson Harper  <jackson@ximian.com>
15099         * Control.cs: Allow non enum values to be used for
15100         InternalBorderStyle.  MDI does this to set a special border style.
15101         - New utility methods for converting points to/from client coords
15102         - Add the newly created control to the Controls collection before
15103         updating its style. This way UpdateStyle can walk the control
15104         heirarchy to find the control if needed.
15105         so I don't need to create a new Point object all the time.
15106         * Form.cs: Let MDI windows handle their border styles.
15107         - Set styles on MDI windows so the correct title style is derived.
15108         * MdiChildContext.cs: Move all the painting and window handling
15109         into the non client area.
15110         - Use correct sizing and put correct buttons on frames based on
15111         the FormBorderStyle.
15112         - Notify the mdi client about scrolling
15113         - Need to handle the buttons ourselves now, because they are all
15114         in non client areas and we can't add controls there.
15115         * MdiClient.cs: Halfway to scrolling, this implementation is
15116         somewhat broken though, we need to check to make sure other
15117         windows aren't causing scrolling before removing the bars. Also
15118         the bars need to be drawn on top, maybe I can switch implicit
15119         controls to be on top.
15120         * Hwnd.cs: caption_height and tool_caption_height are now
15121         properties of an hwnd, this way they can be set by the driver
15122         based on the type of window they are.  In X11 the window manager
15123         handles the decorations so caption_height is zero unless its an
15124         MDI window.
15125         - Add 3 pixel borders for MDI windows (0xFFFF).
15126         - Get rid of some code duplication, have DefaultClientRectanle
15127         just call GetClientRectangle.
15128         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
15129         Hwnd now.
15130         - Set border styles differently for mdi windows.
15131         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
15132         Hwnd now.
15133         
15134 2005-11-15  Mike Kestner  <mkestner@novell.com>
15136         * Menu.cs: when adding an item to the collection, if item is already 
15137         parented, remove it from the parent.
15139 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
15141         * X11DesktopColors.cs: Added KDE support
15143 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
15145         * XplatUIWin32.cs: 
15146           - Clipboard methods now can translate Rtf format
15147           - No longer removes clipboard contents whenever a new format is added
15148             to allow placing multiple formats on the clipboard
15149         * Clipboard.cs: Clipboard now supports getting a IDataObject and
15150           will place all formats contained in it onto the clipboard. Also
15151           now cleans the clipboard before placing a new object onto it
15152         * RichTextBox.cs:
15153           - Implemented set_Rtf
15154           - Implemented set_SelectedRtf
15155           - Created InsertRTFFromStream() method to allow single code base
15156             for all properties and methods that insert RTF into document
15157           - Removed debug output
15158         * TextControl.cs:
15159           - Fixed Delete(int) to fix up line numbers
15160           - Fixed ReplaceSelection to combine start and end line
15161           - Fixed serious DeleteChars bug that would leave the document tree
15162             broken
15163           - Improved DumpTree with several logic checks to detect broken
15164             document trees
15165           - Removed debug lines
15166           - Fixed Caret.WordForward/WordBack moving code, now always also 
15167             updates caret.tag (fixes crash when word-selecting across tag
15168             boundaries via keyboard)
15169           - Added Insert() method for inserting multiline text into documents
15170           - Fixed DeleteChars() calculation errors that would cause a broken
15171             tag chain with multiple tag lines
15172           - DeleteChars() no longer crashes on multi-tag lines if not all tags
15173           - Split() no longer moves caret if split is at caret location
15174           - ReplaceSelection() now updates the cursor and re-displays it
15175           - ReplaceSelection() now uses new Insert() method to avoid code
15176             duplication
15177           - FormatText() can now handle formatting partial lines
15178         * TextBoxBase.cs:
15179           - Append now uses new TextControl.Insert() method (this avoids 
15180             duplicate code)
15181           - Implemented Ctrl-X (Cut) (
15182           - Implemented Ctrl-C (Copy)
15183           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
15184             regeneration when pasting text; roundtripping Copy&Paste within
15185             edit control still fails due to some calculation bugs in GenerateRTF)
15186           - The Delete key will now remove the current selection if it is visible
15187         * TextBox.cs: Removed debug lines
15188         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
15189           driver to be initialized and can't therefore be done via a static ctor)
15191 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
15193         * TextControl.cs: Added backend code for finding char arrays and strings
15194         * TextBoxBase.cs:
15195           - Added mouse wheel scroll support
15196           - Added support for VScroll and HScroll events
15197         * RichTextBox.cs:
15198           - Implemented all seven Find() variants
15199           - Implemented GetCharFromPosition()
15200           - Implemented GetCharIndexFromPosition()
15201           - Implemented GetLineFromIndex()
15202           - Implemented GetPositionFromCharIndex();
15203           - Implemented SaveFile for PlainText and UnicodeText
15204           - Fixed set_Font, now setting a new font applies that font to
15205             the whole document
15206           - Implemented generic Document to RTF converter
15207           - Implemented SaveFile for RichText format (still missing unicode
15208             conversion for non-ansi chars)
15209           - Implemented get_Rtf
15210           - Implemented get_SelectedRtf
15212 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
15214         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
15215           to allow any captures to be released before triggering OnClick. This
15216           way a click handler may capture the mouse without interference.
15217         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
15218           This way we send them even though X may not allow a grab (if the window
15219           isn't visible, for example)
15221 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
15223         * DataGridViewRowEventArgs.cs: DataGridView implementation
15224         * DataGridViewElement.cs: DataGridView implementation
15225         * DataGridViewComboBoxCell.cs: DataGridView implementation
15226         * DataGridViewDataErrorContexts.cs: DataGridView implementation
15227         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
15228         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
15229         * ImageLayout.cs: DataGridView implementation
15230         * DataGridViewComboBoxColumn.cs: DataGridView implementation
15231         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
15232         * DataGridViewSelectionMode.cs: DataGridView implementation
15233         * IDataGridViewEditingControl.cs: DataGridView implementation
15234         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
15235         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
15236         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
15237         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
15238         * DataGridViewColumnSortMode.cs: DataGridView implementation
15239         * DataGridView.cs: DataGridView implementation
15240         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
15241         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
15242         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
15243         * Padding.cs: DataGridView implementation
15244         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
15245         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
15246         * DataGridViewRowEventHandler.cs: DataGridView implementation
15247         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
15248         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
15249         * DataGridViewButtonCell.cs: DataGridView implementation
15250         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
15251         * DataGridViewEditMode.cs: DataGridView implementation
15252         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
15253         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
15254         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
15255         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
15256         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
15257         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
15258         * DataGridViewCellEventHandler.cs: DataGridView implementation
15259         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
15260         * DataGridViewCellStyleConverter.cs: DataGridView implementation
15261         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
15262         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
15263         * DataGridViewColumnEventArgs.cs: DataGridView implementation
15264         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
15265         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
15266         * QuestionEventArgs.cs: DataGridView implementation
15267         * IDataGridViewEditingCell.cs: DataGridView implementation
15268         * DataGridViewTriState.cs: DataGridView implementation
15269         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
15270         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
15271         * DataGridViewColumnCollection.cs: DataGridView implementation
15272         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
15273         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
15274         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
15275         * DataGridViewColumn.cs: DataGridView implementation
15276         * DataGridViewCellBorderStyle.cs: DataGridView implementation
15277         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
15278         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
15279         * DataGridViewRow.cs: DataGridView implementation
15280         * DataGridViewImageCellLayout.cs: DataGridView implementation
15281         * DataGridViewImageCell.cs: DataGridView implementation
15282         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
15283         * DataGridViewCheckBoxCell.cs: DataGridView implementation
15284         * DataGridViewHeaderCell.cs: DataGridView implementation
15285         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
15286         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
15287         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
15288         * DataGridViewTextBoxColumn.cs: DataGridView implementation
15289         * QuestionEventHandler.cs: DataGridView implementation
15290         * DataGridViewCellStyleScopes.cs: DataGridView implementation
15291         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
15292         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
15293         * DataGridViewCell.cs: DataGridView implementation
15294         * DataGridViewCellEventArgs.cs: DataGridView implementation
15295         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
15296         * DataGridViewCellStyle.cs: DataGridView implementation
15297         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
15298         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
15299         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
15300         * TextFormatFlags.cs: DataGridView implementation
15301         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
15302         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
15303         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
15304         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
15305         * DataGridViewButtonColumn.cs: DataGridView implementation
15306         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
15307         * HandledMouseEventArgs.cs: DataGridView implementation
15308         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
15309         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
15310         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
15311         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
15312         * DataGridViewRowCollection.cs: DataGridView implementation
15313         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
15314         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
15315         * DataGridViewHitTestType.cs: DataGridView implementation
15316         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
15317         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
15318         * DataGridViewColumnEventHandler.cs: DataGridView implementation
15319         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
15320         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
15321         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
15322         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
15323         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
15324         * DataGridViewContentAlignment.cs: DataGridView implementation
15325         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
15326         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
15327         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
15328         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
15329         * DataGridViewPaintParts.cs: DataGridView implementation
15330         * DataGridViewCellCollection.cs: DataGridView implementation
15331         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
15332         * DataGridViewImageColumn.cs: DataGridView implementation
15333         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
15334         * DataGridViewElementStates.cs: DataGridView implementation
15335         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
15336         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
15337         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
15338         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
15339         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
15340         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
15341         * DataGridViewRowHeaderCell.cs: DataGridView implementation
15342         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
15343         * DataGridViewTextBoxCell.cs: DataGridView implementation
15344         * DataGridViewBand.cs: DataGridView implementation
15345         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
15346         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
15347         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
15348         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
15349         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
15350         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
15351         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
15352         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
15353         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
15354         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
15355         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
15357 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
15359         * ThemeWin32Classic.cs: 
15360           - Draw the outside focus rectangle around buttons
15361           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
15362             doesn't use end caps for every dash of a line anymore. This
15363             workaround ignores the forecolor.
15365 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
15367         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
15368           endian safe.
15370 2005-11-07  Jackson Harper  <jackson@ximian.com>
15372         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
15374 2005-11-07  Jackson Harper  <jackson@ximian.com>
15376         * ScrollableControl.cs: Calculate the maximum and change vars
15377         (more) correctly so that scrollbars appear as a sensible size.
15379 2005-11-04  Jackson Harper  <jackson@ximian.com>
15381         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
15382         collection.
15383         * TreeView.cs: When the tree is sorted null out the top_node so
15384         that it is recalculated.
15385         - Use dotted lines instead of dashed lines to match MS better.
15387 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
15389         * ListView.cs: 
15390           - Implements key search for items. Useful when browsing files with FileDialog
15391           - When changing view mode or when clear the items reset scrollbar positions
15393 2005-11-04  Jackson Harper  <jackson@ximian.com>
15395         * CurrencyManager.cs: Implement the MetaDataChanged event, the
15396         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
15397         as to what the method may do as there is no real way of creating a
15398         derived CurrencyManager and calling the method. 
15400 2005-11-03  Jackson Harper  <jackson@ximian.com>
15402         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
15403         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
15404         method which seems to just be used internally to refresh the tabs.
15406 2005-11-03  Jackson Harper  <jackson@ximian.com>
15408         * TabControl.cs: Implement the remove method. Fix some broken
15409         comments.
15411 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
15413         * DateTimePicker.cs:
15414           - Added missing DateTimePickerAccessibleObject class
15415           - Added missing events
15416           - Added OnFontChanged method
15417         * Form.cs: Added missing attributes
15418         * TreeView.cs: Added missing attributes
15420 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
15422         * GridItemCollection.cs: Fix signatures
15424 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
15426         * XplatUI.cs: Updated build rev/date
15427         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
15428           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
15429         * Application.cs: Trigger context-specific ExitThread events
15431 2005-11-03  Jackson Harper  <jackson@ximian.com>
15433         * Menu.cs:
15434         * MainMenu.cs:
15435         * GridTableStylesCollection.cs:
15436         * Timer.cs:
15437         * TabPage.cs:
15438         * HelpProvider.cs:
15439         * StatusBar.cs:
15440         * MonthCalendar.cs: Signature fixes
15442 2005-11-03  Jackson Harper  <jackson@ximian.com>
15444         * TreeNodeCollection.cs: Remove should not be virtual.
15445         * TreeView.cs: Implement the last of the missing methods.
15447 2005-11-03  Jackson Harper  <jackson@ximian.com>
15449         * TreeNodeConverter.cs: Implement to get off my class-status back.
15451 2005-11-03  Jackson Harper  <jackson@ximian.com>
15453         * TreeView.cs: Hookup the bits for drag and drop.
15454         * TreeNode.cs: Don't cache the tree_view or index anymore, now
15455         that nodes can be moved from tree to tree easily this just causes
15456         all sorts of problems.
15457         * TreeNodeCollection: Don't need to give treenodes an index and
15458         treeview anymore when they are added, these are computed on the
15459         fly. Also make sure to remove a node before its added.
15461 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
15463         * TextControl.cs:
15464           - Added CaretSelection enum
15465           - Added comparison methods to Marker struct, makes selection code
15466             more readable
15467           - Added SelectionStart and SelectionEnd as 'moveable' location for
15468             the CaretDirection enum and handler
15469           - Added selection_prev variable to track optimized invalidation for
15470             word and line selection
15471           - Added SelectionVisible property (returns true if there is a valid 
15472             selection)
15473           - Switched CaretHasFocus to only display the caret if there is no
15474             visible selection
15475           - Avoiding StringBuilder.ToString to retrieve a single char, instead
15476             using the direct character index; should be much faster
15477           - Added various conditional debug statements
15478           - Fixed invalidation calculation for selection ranges
15479           - Added ExpandSelection() method to support word and line selection
15480           - Switched SetSelectionToCaret to use new Marker compare overloads
15481           - Added central IsWordSeparator() method to determine word 
15482             separators/whitespace and FindWordSeparator() to streamline common
15483             usage of IsWordSeparator()
15484         * TextBoxBase.cs:
15485           - Removed unneeded grabbed variable, it was just mirroring
15486             Control.Capture
15487           - No longer firing OnTextChanged event when Text setter is called,
15488             since the base will fire the event for us
15489           - Added handling of Ctrl-Up/Down selection
15490           - Added handling of Shift-Cursorkey selection
15491           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
15492             words
15493           - Added handling of Shift and Ctrl-Shift-Home/End selection
15494           - Removed some debug output
15495           - Added handling for single/double/tripple-click to place caret/
15496             select word/select line respectively (Fixes bug #76031)
15497           - Added support for drag expansion of word/line selection
15498         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
15499           current selection
15501 2005-11-02  Jackson Harper  <jackson@ximian.com>
15503         * X11Dnd.cs: If the drag is going to and from a MWF window just
15504         copy the data instead of sending it out through the X Selection
15505         mechanism.
15507 2005-11-02  Jackson Harper  <jackson@ximian.com>
15509         * X11Dnd.cs:
15510         * XplatUIX11.cs: When in a drag we don't want motion notify
15511         messages to get passed on to the other controls. This prevents
15512         mouse move messages from showing up in the drag source.
15514 2005-11-02  Jackson Harper  <jackson@ximian.com>
15516         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
15517         the correct button is release to end a drag.
15518         * XplatUIX11.cs: Make the button state internal so the drag system
15519         can access it.  Dragging needs to know about all button releases,
15520         not just left button.
15522 2005-11-02  Miguel de Icaza  <miguel@novell.com>
15524         * Form.cs (Icon): If the icon is null, reset the icon to the
15525         default value. 
15527         * Cursor.cs: When writing the AND-mask bitmap do not include the
15528         number of colors, but hardcode those to two (black and white),
15529         fixes the loading of color cursors (Paint Dot Net).
15531         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
15532         turn off autoscaling.
15534         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
15536 2005-11-02  Jackson Harper  <jackson@ximian.com>
15538         * X11Dnd.cs: Make sure to send a status message if the pointer
15539         enters a control that can not accept a drop, otherwise the cursor
15540         isn't updated correctly. Also tried to compress the lines of code
15541         a bit.
15543 2005-11-02  Jackson Harper  <jackson@ximian.com>
15545         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
15546         set actions correctly.  This isn't perfect as XDND and win32 have
15547         some differences on how you allow actions. I'll clear this up by
15548         adding a path for drag from MWF to MWF windows.
15549         * XplatUIX11.cs: Hook into the dnd system.
15551 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
15553         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
15554         previously shown but they are no longer need it. Very obvious when 
15555         browsing files with FileDialog.
15557 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
15559         * Control.cs: We always need to call OnPaintBackground. We pretty much
15560           ignore AllPaintingInWmPaint and always do the painting there, whether 
15561           it's set or not, since we always ignore the WM_ERASEBKGND message 
15562           (which we don't generate on X11). This fixes #76616.
15563         * Panel.cs: Removed unneeded background painting. This happens properly
15564           in Control.cs already
15566 2005-10-31  Mike Kestner  <mkestner@novell.com>
15568         * Menu.cs: Add items to collection before setting their index.
15569         * MenuItem.cs : add range checking with ArgumentException like MS.
15570         [Fixes #76510]
15572 2005-10-31  Jackson Harper  <jackson@ximian.com>
15574         * ListBox.cs: Invalidate if the area is visible at all not just
15575         contained in the visible rect. Fixes unselection of semi visible
15576         items.
15578 2005-10-31  Jackson Harper  <jackson@ximian.com>
15580         * Control.cs: Consistently name the dnd methods. Make them
15581         internal so we can override them to match some MS behavoir
15582         internally.
15583         * Win32DnD.cs: Use the new consistent names.
15585 2005-10-31  Jackson Harper  <jackson@ximian.com>
15587         * TreeView.cs: Don't draw the selected node when we lose focus.
15589 2005-10-31  Jackson Harper  <jackson@ximian.com>
15591         * X11Dnd.cs: We still need to reset the state even though a full
15592         reset isn't being done, otherwise status's still get sent all over
15593         the place.
15595 2005-10-31  Jackson Harper  <jackson@ximian.com>
15597         * Control.cs: Make the dnd_aware flag internal so the dnd
15598         subsystem can check it. Catch exceptions thrown in dnd handlers to
15599         match MS behavoir.
15600         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
15601         * X11Dnd.cs: Handle null data in the converters. Set the XDND
15602         version when sending a XdndEnter. Use the control/hwnd dnd_aware
15603         flags to reduce the number of dnd enters/status's sent.
15605 2005-10-31  Jackson Harper  <jackson@ximian.com>
15607         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
15609 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
15611         * PictureBox.cs: Fixes 76512
15613 2005-10-28  Jackson Harper  <jackson@ximian.com>
15615         * X11Dnd.cs: Early implementation to support winforms being a drag
15616         source for data on X11. Also restructured the converters so they
15617         can go both ways now.
15618         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
15619         
15620 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
15622         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
15623           clipboard requests
15625 2005-10-27  Jackson Harper  <jackson@ximian.com>
15627         * TreeNode.cs: Implement serialization so my DnD examples will work.
15629 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
15631         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
15632           TreeView.cs: Don't dispose objects that are not owned.
15633           
15634 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
15636         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
15637           should retrieve the current cursor and report that, but XplatUI
15638           doesn't (yet) have an interface for that (and I'm not sure I even
15639           can, on X11)
15640         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
15641           until any message loop processing is done (and the WM_SETCURSOR
15642           replaces the cursor to the proper one)
15643         * XplatUIX11.cs: 
15644           - Fixed override behaviour, we can't set the cursor globally on X11, 
15645             just for our windows.
15646           - Invalidating the System.Drawing X11 display handle when we are
15647             shutting down
15648         * Control.cs: Fix to make csc happy
15650 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
15652         * TextBoxBase.cs: 
15653           - get_Text: Add last line (without trailing newline) to returned
15654             value (Fixes 76212)
15655           - get_TextLength: Count last line in returned length
15656           - ToString: Call Text property instead of duplicating code
15658 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
15660         * ImageList.cs: Dispose ImageAttributes objects.
15662 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
15664         * ImageList.cs: Use attribute constructors with less arguments where
15665           possible.
15667 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
15669         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
15670           Use typeof instead of strings when assembly is referenced. Added
15671           some more comments.
15673 2005-10-21  Jackson Harper  <jackson@ximian.com>
15675         * ListView.cs: Raise a double click event. Also tried to somewhat
15676         fix when the selectedindexchanged event is raised. Its still
15677         broken though.
15679 2005-10-21  Jackson Harper  <jackson@ximian.com>
15681         * TreeView.cs: New method to invalidate the plus minus area of a
15682         node without invalidating the whole node (maybe this can be used
15683         in some more places).
15684         * TreeNodeCollection.cs: When adding to an empty node we need to
15685         invalidate its plus minus area so the little block shows up.
15686         
15687 2005-10-21  Jackson Harper  <jackson@ximian.com>
15689         * TreeView.cs: Make sure that when we invalidate a node the bounds
15690         are big enough to cover the selected box and the focus
15691         rectangle. Use a different colour for the lines connecting nodes
15692         so they show up with all themes.
15694 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
15696         * NativeWindow.cs: Don't call anything that could call into the driver,
15697           we might be on a different thread.
15699 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
15701         * Control.cs(Dispose): Since Dispose might run on a different thread,
15702           make sure that we call methods that could call into the driver via
15703           invoke, to avoid thread issues
15705 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
15707         * XplatUI.cs: Removed finalizer
15708         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
15709           not allowing to be called on the finalizer thread.
15711 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
15713         * ImageList.cs:
15714           - Reverted r51889 and r51891.
15715           - Added ImageListItem class that stores unmodified image items and image
15716             properties required to create list images until handle is created.
15717           - Added AddItem and moved image creation logic to AddItemInternal.
15718           - Added CreateHandle method that creates images based on unmodified items.
15719           - Added DestroyHandle that changes state to store unmodified items.
15720           - Add and AddStrip methods no more create handle.
15721           - ReduceColorDepth has no return value.
15722           - Dispose destroys handle.
15723           - Modified other methods to reflect the above changes.
15724           - Implemented key support.
15725           - Added profile 2.0 members and attributes.
15726           - Added private Reset and ShouldSerialize methods that provide the same
15727             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
15728             them as they are private.
15729           - Added some more comments about implementation details.
15731 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
15733         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
15735 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
15737         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
15739 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
15741         * DataGridDrawingLogic.cs: Fixes column hit calcultation
15742         * DataGridColumnStyle.cs: Remove debug message
15744 2005-10-20  Jackson Harper  <jackson@ximian.com>
15746         * TreeView.cs: We can always get input keys regardless of whether
15747         or not editing is enabled. They are used for navigation.
15749 2005-10-20  Jackson Harper  <jackson@ximian.com>
15751         * TreeNode.cs: Use the viewport rect for determining if a node
15752         needs to be moved for visibility. Don't use Begin/End edit. This
15753         calls a full refresh when its done.
15754         * TreeView.cs: New SetBottom works correctly.  Make the viewport
15755         rect property internal so the treenodes can see it. When clicking
15756         on a node we need to ensure that its visible because it might just
15757         be partly visible when clicked.
15759 2005-10-20  Jackson Harper  <jackson@ximian.com>
15761         * TreeNodeCollection.cs: Remove debug code.
15763 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
15765         * Datagrid.cs: Implements column sorting in Datagrid
15766         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
15768 2005-10-20  Jackson Harper  <jackson@ximian.com>
15770         * TreeNodeCollection.cs: Remove items properly. Update the correct
15771         area after removing them.
15773 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
15775         * Datagrid.cs: Should not call base.OnPaintBackground
15777 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
15779         * XplatUIX11.cs (GetMessage):
15780           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
15781             window instead of client window
15782           - Now properly calculates NC_xBUTTONUP message coordinates
15783           - ScreenToMenu now properly calculates it's coordinates of whole 
15784             window, since menus are in the whole window, not in the client
15785             window
15786           - Added WholeToScreen coordinate translation method
15788 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
15790         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
15791           want to return a message, loop back to the beginning of the function
15792           and grab the next real message to process instead.
15794 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
15796         * Splitter.cs: Properly set limits if no filler control is used
15798 2005-10-19  Jackson Harper  <jackson@ximian.com>
15800         * ColorDialog.cs: Don't show the help button if it is not enabled
15801         instead of disabling it (this is what MS does). Don't create the
15802         panel until the dialog is run, otherwise the vars (such as
15803         ShowHelp) are not set yet.
15805 2005-10-19  Jackson Harper  <jackson@ximian.com>
15807         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
15808         are reduced when adding nodes.
15809         * TreeNode.cs:
15810         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
15811         tree.
15812         
15813 2005-10-19  Jackson Harper  <jackson@ximian.com>
15815         * FolderBrowserDialog.cs: End editing our treeview so the window
15816         actually gets refreshed.
15818 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
15820         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
15821           Obsoleted handling of WM_ERASEBKGND, now always draws our background
15822           inside of WM_PAINT
15824 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
15826         * MenuAPI.cs: Returns after Hidding window
15827         * XplatUIX11.cs: Added TODO found while debugging menu issues
15829 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
15831         * XplatUIX11.cs: Do not re-map the whole window when it's size
15832           becomes non-zero unless it's supposed to be actually visible
15834 2005-10-18  Jackson Harper  <jackson@ximian.com>
15836         * TreeView.cs: We don't need to keep a count anymore.
15837         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
15838         use the Grow method.
15840 2005-10-18  Jackson Harper  <jackson@ximian.com>
15842         * TreeNodeCollection.cs: Insert is not supported on arrays, so
15843         implement it manually here.
15845 2005-10-18  Jackson Harper  <jackson@ximian.com>
15847         * ImageList.cs: Dont kill the list when the colour depth is
15848         changed, just change the colour depth of all the images.
15849         - Same goes for setting the image size. Just resize them all
15850         instead of killing the list softly.
15852 2005-10-18  Jackson Harper  <jackson@ximian.com>
15854         * Control.cs: Don't invalidate empty rectangles.
15856 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
15858         * ListViewItem.cs:
15859           - Adds checked item to the Checked/Item lists (where empty before)
15860           - Do not add items to the Selected lists if they are already present
15861         * ListView.cs:
15862           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
15863           - When deleting items make sure that we delete them for the Selected
15864           and Checked list also.
15866 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
15868         * Label.cs: Dispose objects no longer used
15869         * ThemeWin32Classic.cs: Dispose objects no longer used
15871 2005-10-18  Jackson Harper  <jackson@ximian.com>
15873         * TabControl.cs: Don't refresh the whole control when the tabs are
15874         scrolled, we just need to refresh the tab area.
15876 2005-10-17  Jackson Harper  <jackson@ximian.com>
15878         * XplatUIX11.cs: Compress code a little bit. Only calculate the
15879         after handle when we need it.
15881 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
15883         * Control.cs: When the parent size changes, recalculate anchor 
15884           positions. Partial fix for #76462
15886 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
15888         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
15889           drawn. Fixes #76462
15891 2005-10-17  Jackson Harper  <jackson@ximian.com>
15893         * MonthCalendar.cs: Don't create the numeric up down until our
15894         handle is created. Otherwise our handle is created in the
15895         constructor and we don't know if we are a WS_CHILD or WS_POPUP
15896         yet.
15898 2005-10-17  Jackson Harper  <jackson@ximian.com>
15900         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
15901         correctly.
15903 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
15904         * TreeNode.cs : small logical fix (was using local var instead of field)
15905         
15906 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
15908         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
15910 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
15912         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
15914 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
15916         * Control.cs: 
15917           - Re-implemented anchoring code. My first version was really broken.
15918             This fixes bug #76033. Unlike the previous implementation we will
15919             no longer have round errors since all numbers are calculated from
15920             scratch every time. Removed various anchor-related obsolete vars.
15921           - InitLayout no longer causes layout event firing and layout to be 
15922             performed
15924 2005-10-16  Jackson Harper  <jackson@ximian.com>
15926         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
15927         which was broken).
15929 2005-10-16  Jackson Harper  <jackson@ximian.com>
15931         * TabControl.cs: Remove debug code.
15933 2005-10-16  Jackson Harper  <jackson@ximian.com>
15935         * XEventQueue.cs: Increase the default queue size (very simple
15936         apps needed to grow the queue).
15937         * Hwnd.cs: No finalizer so we don't need to suppress
15938         finalization. Compute the invalid area manually so a new rectangle
15939         does not newto be created.
15940         * ScrollableControl.cs: Don't set any params (otherwise visibility
15941         isn't set correctly).
15942         * MdiChildContext.cs: New constructor takes the mdi parent so it
15943         doesn't have to be computed and avoids a crash on windows. Draw
15944         the window icon properly, and allow the text to be seen.
15945         * Form.cs: Use new MdiChildContext constructor. Make sure the
15946         child context isn't null in wndproc.
15947         * TabControl.cs: Don't set focus, this is muddling keyboard
15948         behavoir. Expand the tab rows when a window size increase will
15949         allow extra tabs to be seen. Don't allow tabs smaller than the
15950         width of a window to be scrolled out of view.
15951         * TreeNode.cs:
15952         * TreeView.cs: Use measure string to calculate a nodes width, the
15953         width is cached and only updated when the text or the font is
15954         changed. Don't check for expand/collapse clicks on the first level
15955         nodes if root lines are disabled.
15956         
15957 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
15959         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
15961 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
15963         * DataGridBoolColumn.cs: fixes warning
15965 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
15967         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
15968         to match more to match more precisely the MS Net behavior
15970 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
15972         * Hwnd.cs: Added field to track if window is mapped
15973         * XplatUIX11.cs: 
15974           - Unmap windows if they become 0-size, re-map when 
15975             they are >0 again; fixes #76035
15976           - Re-set our error handler after initializing X11Desktop
15977             to override any error handlers Gtk or whatever was called
15978             may have set.
15980 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
15982         * CheckedListBox.cs: Removed unused vars
15983         * ListView.cs: Fixed signatures
15984         * RichTextBox.cs: Removed unused vars
15985         * TextBoxBase.cs: Removed unused vars
15986         * XplatUIWin32.cs: Removed unused vars
15987         * XplatUIX11.cs: Removed unused vars
15988         * XplatUI.cs: Updated version and date to latest published
15990 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
15992         * Cursor.cs: Added private .ctor to work around a bug in
15993           resourceset (Thanks to Geoff Norton for the help on this)
15994         * SplitterEventArgs.cs: Made fields accessible so we don't
15995           waste boatloads of objects and can reuse the same one
15996           in Splitter
15997         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
15998           any captions and borders when generating screen coordinates
15999         * Splitter.cs: Reimplemented control, now fully complete, uses
16000           rubberband drawing, supports and obeys all properties, has
16001           proper cursors
16003 2005-10-13  Miguel de Icaza  <miguel@novell.com>
16005         * Form.cs (Form): Setup default values for autoscale and
16006         autoscale_base_size;  Make these instance variables, not static
16007         variables. 
16009         (OnLoad): on the first load, adjust the size of the form.
16011 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
16013         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
16014           width argument to DrawReversibleRectangle()
16015         * XplatUIWin32.cs, XplatUIX11.cs: 
16016           - Implemented width for DrawReversibleRectangle()
16017           - Added logic to DrawReversibleRectangle that recognizes a zero
16018             width or height and only draws a line in that situation
16019         
16020 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
16022         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
16023         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
16024         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
16025           method (it uses our FosterParent window to get a graphics context)
16027 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
16029         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
16030           and SetWindowBackground methods
16031         * Control.cs:
16032           - Setting proper ControlStyles
16033           - We no longer call XplatUI.SetWindowBackground and XplatUI.
16034             EraseWindowBackground, instead we draw the window background
16035             ourselves in PaintControlBackground. This behaviour is
16036             required to match MS, where, when OnPaintBackground is not
16037             called, the background is not drawn.
16038           - Removed unneeded Refresh() in set_Text
16039         * Hwnd.cs: Dropped the ErasePending support. No longer needed
16040         * XplatUIX11.cs:
16041           - Created DeriveStyles method to translate from CreateParams to
16042             FormBorderStyle and TitleStyle, also handles BorderStyle (which
16043             matches FormBorderStyle enum values)
16044           - Consolidated SetHwndStyles and CalculateWindowRect border/title
16045             style calculations into single DeriveStyles method
16046           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
16047             from redrawing the whole window on any resize or expose.
16048           - Fixed CreateWindow usage of SetWindowValuemask. Before not
16049             all styles were applied to our whole/client window appropriately
16050           - Removed EraseWindowBackground() and SetWindowBackground() methods
16051           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
16052             no longer clear/redraw the background through X
16053           - Removed handling of erase_pending bit, we have no use for it (or
16054             so it seems)
16055         * XplatUIOSX.cs:
16056           - Removed generation and handling of WM_ERASEBKGND message
16057           - Removed EraseWindowBackground() and SetWindowBackground() methods
16058           - Removed handling of hwnd.ErasePending flag
16059         * XplatUIWin32.cs:
16060           - Removed EraseWindowBackground() and SetWindowBackground() methods
16061           - We no longer call EraseWindowBackground on PaintEventStart, we 
16062             ignore the fErase flag, erasing is handled in Control in the
16063             background handler
16064         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
16065           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
16066           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
16067           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
16068           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
16069           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
16070           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
16072 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
16074         * PropertyGrids.cs: Get sub properties
16075         * PropertyGridView.cs: Fix drawing code
16077 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
16079         * ListBox.cs: Fixes 76383
16081 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
16083         * DataGridTextBoxColumn.cs: Sets location and size before attachment
16084         * ThemeWin32Classic.cs: Fixes border drawing and calculations
16085         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
16088 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
16090         * ComboBox.cs: Fixes border drawing
16092 2005-10-10  Miguel de Icaza  <miguel@novell.com>
16094         * MimeIcon.cs: Ignore errors if the file can not be read.
16096 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
16098         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
16099          - Fixed border calculations
16100          - Fixed horizontal scrolling in single column listboxes
16101          - Fixed drawing issues
16103 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
16105         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
16106           FormBorderStyle enum
16107         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
16108           code to determine FormBorderStyles from CreateParams
16109         * Form.cs:
16110           - Fixed bug where we'd set the wrong window styles if we were
16111             not creating an MDI window
16112           - Added call to XplatUI.SetBorderStyle when form borders are set
16113         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
16114         * Hwnd.cs:
16115           - Removed obsolete edge style
16116           - Switched from BorderStyle to FormBorderStyle
16117         
16118 2005-10-10  Jackson Harper  <jackson@ximian.com>
16120         * Form.cs: Use the property to get the window handle instead of
16121         accessing it directly. Prevents a null reference exception.
16123 2005-10-10  Jackson Harper  <jackson@ximian.com>
16125         * TreeView.cs: Don't adjust the rect given to DrawString now that
16126         our libgdiplus draws correctly.
16128 2005-10-08  Jackson Harper  <jackson@ximian.com>
16130         * TreeView.cs: Don't try to find the clicked on node if there are
16131         no nodes in the tree.
16133 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
16135         * RichTextBox.cs:
16137           restore
16139 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
16141         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
16142           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
16143           ErrorProvider.cs:
16144           Use ResPool for brushes and dispose System.Drawing objects that
16145           are not used anymore.
16147 2005-10-07  Jackson Harper  <jackson@ximian.com>
16149         * MdiChildContext.cs: Use the new borders instead of drawing them
16150         ourselves.
16152 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
16154         * Calling UpdateBounds after changing the window's BorderStyle 
16155         since the style can change the ClientSize
16157 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
16159         * Control.cs: Made PaintControlBackground virtual
16160         * Panel.cs: Overriding PaintControlBackground instead of using paint
16161           event; paint event method was interfering with 'real' users of the
16162           event.
16164 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
16166         * ThemeWin32Classic.cs: remove border drawing since it is handled
16167         by the base control class now and was causing double border drawing.
16169 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
16171         * Panel.cs: Redraw our background on paint. Not a pretty solution,
16172           but it does seem to match MS behaviour. This fixes bug #75324
16174 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
16176         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
16177           somewhat hackish looking
16179 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
16181         * TextBoxBase.cs:
16182           - We now accept Enter even if AcceptEnter is false, if the containing
16183             form does not have an AcceptButton configured (fixes bug #76355)
16184           - Calculations are now fixed to no longer use Width/Height, but
16185             ClientSize.Width/Height, since we now support borders (this was
16186             a result of fixing borders and therefore bug #76166)
16187           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
16188             true (fixes bug #76354)
16189         
16190 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
16192         * Control.cs: 
16193           - Defaulting BorderStyle and setting it in XplatUI when our window 
16194             is created
16195           - Added enum check to InternalBorderStyle setter
16196         * XplatUIX11.cs: 
16197           - Added drawing of window borders
16198           - Now properly calculates WM decorations offset for toplevel 
16199             windows (fixes bug #74763)
16200         * XplatUIWin32.cs: 
16201           - Implemented BorderStyles for windows (we're letting win32 draw 
16202             the border for us)
16203           - Fixed the signature for SetWindowLong
16204         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
16205           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
16206           setting borders
16207         * UpDownBase.cs: Remove drawing of borders, this is handled by
16208           the driver, outside the client area
16209         * ListView.cs: Removed bogus border calculations. The control should
16210           be oblivious to borders, since those are not part of the client
16211           area. 
16212         * X11DesktopColors.cs: Commented out (currently) unneeded variables
16213         * ThemeWin32Classic.cs: Removed border calculations from ListView 
16214           drawing code
16216 2005-10-06  Jackson Harper  <jackson@ximian.com>
16218         * MdiChildContext.cs: Clear out the old virtual position remove
16219         all the unneeded calls to CreateGraphics.
16221 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
16223         * TextControl.cs: Use proper color for highlighted text; fixes #76350
16225 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
16227         * Form.cs: 
16228           - Added loading and setting of our new default icon
16229           - Only set icon if window is already created
16231 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
16233         * Label.cs:
16234           - Do not explicitly set the foreground and background colors, to
16235             allow inheriting from parents (fixes #76302)
16236           - Use Control's InternalBorderStyle property to deal with borders
16238 2005-10-06  Jackson Harper  <jackson@ximian.com>
16240         * MdiChildContext.cs: Use the new xplatui function to draw a
16241         reversible rect.
16243 2005-10-06  Jackson Harper  <jackson@ximian.com>
16245         * Form.cs: Add the parent before creating the child context cause
16246         we need the parent when setting up the child.
16248 2005-10-06  Jackson Harper  <jackson@ximian.com>
16250         * FolderBrowserDialog.cs: redo the tree population code so a
16251         second thread isn't used. Should be a lot faster and more stable
16252         now.
16254 2005-10-05  Jackson Harper  <jackson@ximian.com>
16256         * TreeView.cs: There are no expand/collapse boxes if the node has
16257         no children.
16259 2005-10-05  Jackson Harper  <jackson@ximian.com>
16261         * X11DesktopColors.cs: Get menu colours for the gtk theme.
16263 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
16265         * FileDialog.cs: Fix InitialDirectory
16267 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
16269         * ComboBox.cs:
16270                 - Fixes changing between styles
16271                 - Fixes simple mode
16272                 - Fixes last item crashing when navigating with keyboard
16274 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
16276         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
16278 2005-10-05  Jackson Harper  <jackson@ximian.com>
16280         * TreeView.cs: If updating the root node do a full refresh.
16281         * TreeNode.cs: The root node should be expanded by default. Also
16282         added a utility prop to tell if we are the root node.
16283         * TreeNodeCollection.cs: Only refresh if the node we are being
16284         added to is expanded. Also added a comment on a potential
16285         optimization.
16286         
16287 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
16289         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
16290           in dispose method. Fixes #76330
16292 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
16294         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
16296                 - Implements vertical and horizontal scrolling using XplatUI
16297                 - Fixes keyboard navagation
16298                 - Fixes EnsureVisible
16299                 - Drawing fixes
16300                 - Handles and draws focus properly
16303 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
16305         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
16306           Create handle. NET_2_0: Destroy handle when value is null.
16308 2005-10-03  Jackson Harper  <jackson@ximian.com>
16310         * ScrollBar.cs: My last scrollbar patch was broken. This is a
16311         revert and a new patch to prevent the thumb from refreshing so
16312         much.
16314 2005-10-02  Jackson Harper  <jackson@ximian.com>
16316         * ScrollBar.cs: Don't update position if it hasn't actually
16317         changed. This occurs when you hold down the increment/decrement
16318         buttons and the thumb gets to the max/min.
16320 2005-10-01  Jackson Harper  <jackson@ximian.com>
16322         * Form.cs:
16323         * MdiChildContext.cs:
16324         * MdiClient.cs: Implement ActiveMdiChild in Form.
16326 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
16328         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
16330 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
16332         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
16333           be found
16335 2005-09-30  Jackson Harper  <jackson@ximian.com>
16337         * ListBox.cs: Don't do a full refresh unless some data has
16338         actually changed.
16340 2005-09-30  Jackson Harper  <jackson@ximian.com>
16342         * TreeView.cs: Make sure that the checkboxes size is factored in
16343         even when not visible.
16345 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
16347         * FileDialog.cs: Fix Jordi's build break
16349 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
16351         * FileDialog.cs: 
16352                 - Use standard the Windows colours for the combobox as espected
16353                 - Dispose objects that use resouces when no longer need them
16355 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
16357         * X11DesktopColors.cs: Initial incomplete implementation
16358         * XplatUIX11.cs: Added call to initialize X11DesktopColors
16360 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
16362         * Theme.cs: 
16363           - Switched Theme color names to match the names defined in 
16364             System.Drawing.KnownColors. Life's hard enough, no need to make 
16365             it harder.
16366           - Added setters to all theme color properties so themes can set
16367             their color schemes. The setters also propagate the color changes
16368             to System.Drawing.KnownColors via reflection
16369         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
16370           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
16371           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
16372           use the new, more logical theme color names
16373         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
16374           post-NT colors
16375         * ThemeWin32Classic.cs:
16376           - Removed code to set the old classic Windows colors. Instead it
16377             now relies on the colors returned by System.Drawing.KnownColors
16378             which will be either modern static colors (Unix) or colors
16379             read from the user's configuration (Win32)
16380           - Updated to use the new, more logical theme color names
16381           - Switched DataGrid drawing code to use only Theme colors instead of
16382             a mix of System.Drawing.KnownColors and Theme colors
16383           - DrawFrameControl(): Removed code that fills the button area, the
16384             fill would overwrite any previous fill done by a control. This
16385             fixes bug #75338 
16386           - Added DrawReversibleRectangle() stub
16387         * ScrollableControl.cs: Set visible state to false when scrollbars
16388           are removed (pdn fix)
16389         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
16390           DrawReversibleRectangle() method to allow drawing primitive 
16391           'rubber bands'
16392         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
16394 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
16396         * ImageList.cs: Add(Icon): Create handle.
16398 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
16400         * ListView.cs:
16401         * ThemeWin32Classic.cs:
16402                 - Fixes detail mode
16403                 - Sets clippings
16404                 - Issues with drawing
16406 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
16408         * ImageList.cs: Moved RecreateHandle back to ImageList as event
16409           source has to be the ImageList.
16411 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
16413         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
16415 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
16417         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
16419 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
16421         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
16423 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
16424         * GridItem.cs: Fixed TODOs
16425         * GridItemCollection.cs: Added ICollection interface
16427 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
16429         * ImageList.cs: Resize icons when needed.
16431 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
16433         * ListViewItem.cs
16434                 - Fixes GetBounds and returns on screen rects
16435         * ListView.cs:
16436                 - Fixes vertical and horzintal scrolling of items
16437         * ThemeWin32Classic.cs:
16438                 - Fixes drawing
16439                 
16440 2005-09-29  Raja R Harinath  <harinath@gmail.com>
16442         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
16444 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
16446         * ImageList.cs: Added comments about handle creation. Moved Handle,
16447           HandleCreated and OnRecreateHandle implementations to ImageCollection.
16448           Handle is created in Add methods.
16450 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
16451          
16452         * DataGridDrawingLogic.cs: 
16453                 - Takes rows into account on Colum calculations
16454                 - Returns the column when clickig
16455         * DataGrid.cs:
16456                 - Fixes default HitTestInfo values
16457                 - Fixes HitTestInfo.ToString
16458                 - Fixes ResetBackColor          
16459         
16460 2005-09-28  Jackson Harper  <jackson@ximian.com>
16462         * MdiChildContext.cs: Obey rules for fixed sized windows (no
16463         sizing or cursor changes). Also added some temp code to draw the
16464         titlebars text (Makes dev a little easier).
16466 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
16468         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
16470 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
16471          
16472         * ListBox.cs: Fixes bug 76253
16474 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
16476         * ImageList.cs: Added comments about the current implementation. Added
16477           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
16478           Format32bppArgb to preserve transparency and can use Graphics.FromImage
16479           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
16480           with Bitmap.LockBits for better performance. Revised the whole file to
16481           match MS.NET behaviour and provide better performance. Non-public
16482           interface members are calling public members even when they throw
16483           NotSupportedException for better maintainability. Moved ColorDepth,
16484           ImageSize, ImageStream and TransparentColor implementations to
16485           ImageCollection for better performance as these properties are not used
16486           by ImageList.
16487         * ImageListStreamer.cs: Added a new internal constructor that takes an
16488           ImageList.ImageCollection and serializes Images based on
16489           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
16490           match ImageList property name.
16492 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
16494         * ListBox.cs: Fixes IndexFromPoint for last item
16496 2005-09-27  Jackson Harper  <jackson@ximian.com>
16498         * Form.cs: Set the position of new mdi children correctly.
16500 2005-09-27  Jackson Harper  <jackson@ximian.com>
16502         * MdiClient.cs: New mdi children need to be added to the back of
16503         the controls collection so the zorder is set correctly. Also add a
16504         count of all the child windows that have been created.
16506 2005-09-27  Jackson Harper  <jackson@ximian.com>
16508         * Form.cs (CreateParams): Setup MDI forms correctly.
16510 2005-09-27  Jackson Harper  <jackson@ximian.com>
16512         * MdiChildContext.cs:
16513         * MonthCalendar.cs:
16514         * UpDownBase.cs:
16515         * ListBox.cs:
16516         * ListView.cs:
16517         * TextBoxBase.cs:
16518         * TreeView.cs:
16519         * ScrollableControl.cs:
16520         * ComboBox.cs: Add implicit controls using the new implict control
16521         functionality in ControlCollection. Also try to block multiple
16522         control add in a suspend/resume layout to save some cycles.
16523         
16524 2005-09-27  Jackson Harper  <jackson@ximian.com>
16526         * Control.cs: Add functionality to the controls collection to add
16527         'implicit controls' these are controls that are created by the
16528         containing control but should not be exposed to the user. Such as
16529         scrollbars in the treeview.
16530         * Form.cs: The list var of the ControlsCollection is no longer
16531         available because of the potential of implicit controls getting
16532         ignored by someone accessing the list directly.
16534 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
16536         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
16537           loose it's parent. (Fixed bug introduced in r49103 when we added
16538           setting the child parent to null on Remove)
16540 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
16542         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
16543         * Splitter.cs: Added missing attributes for BorderStyle property.
16544         * TextBoxBase.cs: Marked Calculate* methods internal.
16545         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
16546         MS.NET.
16548 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
16549          
16550         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
16552 2005-09-25  Jackson Harper  <jackson@ximian.com>
16554         * TreeView.cs: Update the node bounds correctly regardless of
16555         whether the node is visible.
16557 2005-09-25  Jackson Harper  <jackson@ximian.com>
16559         * ImageList.cs: Don't dispose the image after it is added to the
16560         image list. Only reformat images that need to be resized.
16562 2005-09-25  Jackson Harper  <jackson@ximian.com>
16564         * ImageList.cs: Don't set the format when changing the image.
16566 2005-09-25  Jackson Harper  <jackson@ximian.com>
16568         * TreeView.cs: We can't just assume the node has a font. Use the
16569         treeviews font if no node font is available.
16571 2005-09-25  Jackson Harper  <jackson@ximian.com>
16573         * TreeView.cs: Allow the scrollbars to be reset with negative
16574         values.
16575         - Don't add scrollbars to negative sized windows.
16577 2005-09-23  Jackson Harper  <jackson@ximian.com>
16579         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
16580         old Mono.Posix. Also remove some stray code that shouldn't have
16581         been committed.
16583 2005-09-23  Jackson Harper  <jackson@ximian.com>
16585         * TreeView.cs: Attempt at proper sizing of the horizontal
16586         scrollbar. Also don't resize the scrollbars unless they are
16587         visible.
16589 2005-09-23  Jackson Harper  <jackson@ximian.com>
16591         * TreeView.cs: We don't need to expand the invalid area when the
16592         selection changes, as this is all drawn in the node's bounding
16593         box. The area needs to be expanded (previous typo was contracting
16594         it) when the focus rect moves.
16596 2005-09-23  Jackson Harper  <jackson@ximian.com>
16598         * TreeView.cs: Display the selection box under the correct
16599         circumstances. We were rendering white text with no selection box
16600         before.
16602 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
16604         * TextControl.cs(Split): Now updates selection start/end if it points 
16605           into a line that's being split. Fixes a FIXME and bug #75258
16607 2005-09-23  Jackson Harper  <jackson@ximian.com>
16609         * Binding.cs:
16610         * ListControl.cs: Don't use the path when retrieving binding
16611         managers from the binding context. My bat sense tells me that the
16612         path is only used on insertion.
16614 2005-09-22  Jackson Harper  <jackson@ximian.com>
16616         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
16618 2005-09-22  Jackson Harper  <jackson@ximian.com>
16620         * Splitter.cs: There are special cursors used for splitting.
16621         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
16623 2005-09-22  Jackson Harper  <jackson@ximian.com>
16625         * Splitter.cs: Change the cursor appropriately when the splitter
16626         is moused over, so the user actually knows there is a splitter
16627         there.
16629 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
16631        * Label.cs : Fix ToString method to give same output as MS.NET
16633 2005-09-22  Jackson Harper  <jackson@ximian.com>
16635         * TreeView.cs: Create the scrollbars when the handle is created
16636         and add them right away, just make them invisble. Also account for
16637         the window being shrunk vertically to the point that the vert
16638         scrollbar needs to be added.
16639         - Remove some 0.5 adjustments to get around anti aliasing issues.
16640         
16641 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
16642          
16643         * MainMenu.cs: Fixes default value
16644         * MenuItem.cs: Fixes default value
16646 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
16648         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
16650 2005-09-21  Jackson Harper  <jackson@ximian.com>
16652         * Control.cs: Don't try to set the border style on the window if
16653         it hasn't been created. When the window is created the border
16654         style will be used.
16656 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
16658         * Control.cs (Update): Don't call XplatUI if we don't have a
16659           window handle yet
16661 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
16663         * ContainerControl.cs: Instead of throwing an exception, print
16664           a one-time warning about Validate not being implemented
16665         * XplatUIWin32.cs: Removed debug output
16667 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
16669         * Control.cs: Only set XplatUI background if we expect the windowing
16670           system to handle the background. This stops controls that draw their
16671           own background from flickering
16673         * XplatUIX11.cs: Support custom visuals and colormaps for window 
16674           creation. This allows, amongst other things, using MWF X11 windows 
16675           with OpenGL.
16677 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
16679         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
16680           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
16681           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
16682           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
16683           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
16684           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
16685           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
16686           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
16687           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
16688           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
16689           GridColumnStylesCollection.cs, 
16690           IDataGridColumnStyleEditingNotificationService.cs,
16691           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
16692           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
16693           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
16694           TreeNodeCollection.cs, AmbientProperties.cs, 
16695           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
16696           DataObject.cs, ErrorProvider.cs, Splitter.cs,
16697           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
16698           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
16699           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
16700           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
16701           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
16702           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
16703           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
16704           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
16705           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
16706           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
16707           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
16708           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
16709           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
16710           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
16711           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
16712           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
16713           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
16714           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
16715           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
16716           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
16717           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
16718           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
16719           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
16720           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
16721           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
16722           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
16723           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
16724           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
16725           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
16726           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
16727           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
16728           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
16729           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
16730           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
16731           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
16733 2005-09-21  Jackson Harper  <jackson@ximian.com>
16735         * TreeNode.cs: Call Before/After Expand not Collapse when
16736         expanding.
16738 2005-09-20  Jackson Harper  <jackson@ximian.com>
16739         
16740         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
16742 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
16743          
16744         * ListViewItem.cs:
16745                 - Fixes bug 76120
16746                 - Fixes proper storing of subitems
16747                 - Fixes not updated items
16749 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
16751         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
16752           things if our window handle isn't created yet. Also disabled 
16753           debug for TextBoxBase
16755 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
16757         * MenuAPI.cs: Remove filtering of events to allow menu usage
16759 2005-09-20  Miguel de Icaza  <miguel@novell.com>
16761         * Cursor.cs: Allow null to be passed to Cursor.Current.
16763 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
16765         * ThemeWin32Classic.cs:
16766           - Change some private methods/fields to protected virtual so that 
16767             they can be accessed and overriden in derived classes
16768           - First refactoring of some methods. Derived themes now don't 
16769             need to duplicate the complete code from ThemeWin32Classic
16770         * ThemeNice.cs:
16771           - Added nice StatusBar
16772           - Derive from ThemeWin32Classic and not Theme
16773           - Removed duplicate ThemeWin32Classic code
16775 2005-09-20  Miguel de Icaza  <miguel@novell.com>
16777         * Control.cs (ControlCollection.Add): If the value null is passed
16778         the control is ignored. 
16780         Optimize this loop.
16782 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
16784         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
16785           PostQuitMessage state.
16786         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
16788 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
16790         * Application.cs: Our constructor will never get called, move 
16791           initialization to fields; fixes bug #75933
16793 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
16795         * FileDialog.cs :
16796                 - Allow files to be selected properly using file name
16797                 combo box.
16798                 - Add ability to change diretory (absolute / relative)
16799                 using file name combo box.
16801 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
16802          
16803         * ListBox.cs: 
16804                 - Fixes Multicolumn listboxes item wrong calculations
16805                 - Allows to click when only one item is in the listbox
16806                 - Fixes crash when no items using keyboard navigation
16808 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
16810         * ComboBox.cs: Reverted almost everything from the latest patch which
16811           broke ComboBox
16813 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
16814         
16815         * ToolTip.cs:
16816                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
16817         * ComboBox.cs:
16818                 - When DropDownStyle is Simple, it does not show scrollbar 
16819                 to the last item of the list.
16820                 - When DropDownStyle is Simple, it crashed when the list was 
16821                 scrolled down with the down cursor key.
16822                 - Fixed a bug that when DropDownStyle is DropDownList, the 
16823                 selected item was not shown.
16824                 - The position of the selected item was not preserved when 
16825                 the next dropdown happened.
16826         * ThemeWin32Classic.cs:
16827                 - Items were wrapped at the right end.
16828         * CheckedListBox.cs:
16829                 - Fixed Add method
16830         * ListBox.cs:
16831                 - Items should be fully shown.
16832                 - When resizing and vertical scrollbar disappeared, the item 
16833                 of index 0 should be on the top of the list.
16834                 - GetItemRectangle should consider the size of ver. scrollbar
16835         * StatusBar.cs:
16836                 - SizingGrip area should not be allocated when it is not 
16837                 displayed.
16838                 - Now it reflects MinWidth of the containing panel and 
16839                 fixed a crash that happens when its width becomes so small.
16841 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
16843         * CheckedListBox.cs: Fixes bug 76028
16844         * ListBox.cs: Fixes bug 76028
16846 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
16848         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
16849         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
16851 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
16853         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
16855 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16857         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
16859 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16861         * IRootGridEntry.cs: Added
16862         * PropertyGridCommands.cs: Added
16863         * PropertiesTab.cs: Added missing methods and property
16864         * PropertyGridView.cs: Made class internal
16865         * PropertyGridTextBox.cs: Made class internal
16867 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
16869         * MimeIcon.cs: Try to check some other environment variables
16870           if "DESKTOP_SESSION" returns "default"
16872 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
16874         * ThemeNice.cs: Corrected background colors (e.g. menus)
16875         * ColorDialog.cs: Use correct background colors for controls
16877 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
16879         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
16881 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
16883         * RichTextBox.cs: Added initial implementation
16884         * lang.cs: Removed. Was accidentally checked in long time ago
16885         * TODO: Removed. Contents were obsolete
16887 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
16888                                                                                 
16889         * PropertiesTab.cs : Added
16891 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
16892                                                                                 
16893         * PropertyGrid.cs : Update
16894         * PropertyGridView.cs : Update
16895         * System.Windows.Forms.resx : Added images and strings
16897 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
16899         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
16901 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
16903         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
16904           a busy loop right after the Ungrab the X11 display is otherwise 
16905           blocked
16907 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
16909         * ThemeWin32Classic.cs: Optimise the use of clipping
16911 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
16913         * DataGrid.cs: fixes recursion bug
16915 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
16917         * ThemeNice.cs: 
16918           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
16919           - Cleanup
16921 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
16923         * ThemeNice.cs: Draw nice ProgressBars
16925 2005-09-01  Miguel de Icaza  <miguel@novell.com>
16927         * VScrollBar.cs: Another buglet found by Aaron's tool. 
16929         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
16930         bug finder.
16932 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
16934         * ThemeNice.cs:
16935           - Added nicer menu drawing
16936           - Updated DrawTab
16937           - some refactoring
16939 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
16941         * CreateParams.cs (ToString): Made output match MS
16942         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
16943             handle is already created (to avoid forcing window creation)
16944         * XplatUIX11.cs: Set window text to caption after creating window,
16945           in case Text was set before window was created
16946         * Form.cs: Use this.Text instead of a static string as caption
16948 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
16950         * NotifyIcon.cs: Don't set the window to visible; this screws
16951           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
16952           OnPaint without a bitmap)
16953         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
16954           happen very often anyway; we could add the check to the WM_PAINT 
16955           event generation code
16957 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
16959         * NotifyIcon.cs: Fill the icon area with a background color, to 
16960           avoid 'residue' when transparent icons are drawn
16961         * XplatUIX11.cs:
16962           - Handle whole_window == client_window when destroying windows
16963           - SystrayAdd(): Set client_window to whole_window value to
16964             get mouse and other events passed to NotifyIcon
16966 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
16968         * Form.cs: Set proper default for Opacity property
16969         * NotifyIcon.cs:
16970           - ShowSystray(): Don't bother creating telling the OS
16971             about the systray item if no icon is provided
16972           - Now handles WM_NCPAINT message to deal with whole/client window
16973             split
16974           - Create window as visible to not get caught by Expose optimization
16975         * Hwnd.cs: Removed debug message
16976         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
16977           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
16978             PaintEventStart/End to use new client argument
16979         * TextBoxBase.cs:
16980           - Commented out debug messages
16981           - Switched PaintEventStart/End to use new client argument
16982         * XplatUI.cs: Added client window bool to PaintEventStart()/
16983           PaintEventEnd() calls, to support drawing in non-client areas
16984         * XplatUIDriver.cs: 
16985           - Added client window bool to PaintEventStart()/PaintEventEnd() 
16986             calls, to support drawing in non-client areas
16987           - Added conditional compile to allow using MWF BeginInvoke 
16988             on MS runtime
16989         * XplatUIX11.cs:
16990           - Added some conditional debug output
16991           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
16992             whole/client window split
16993           - Implemented handling of client argument to PaintEventStart()/End()
16994         * Control.cs:
16995           - Throw exception if BeginInvoke() is called and the window handle
16996             or one of the window's parent handles is not created
16997           - Added conditional compile to allow using MWF BeginInvoke on
16998             MS runtime
16999           - get_Parent(): Only sets parent if handle is created. This avoids
17000             forcing window handle creation when parent is set.
17001           - Now fires Layout and Parent changed events in proper order
17002           - Switched to use Handle instead of window.Handle for Z-Order setting,
17003             the get_Parent() patch above causes us to possibly get null for 'window'
17004           - Implemented handling of client argument to PaintEventStart()/End()
17005           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
17006             default handling)
17007           - Now sends a Refresh() to all child windows when Refresh() is called
17009 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
17011         * Form.cs: Added (non-functional) Opacity property
17012         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
17014 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
17015         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
17016           use export MONO_THEME=nice to activate it.
17017           Currently supported controls:
17018           - Button
17019           - ComboBox
17020           - ScrollBar
17021           - TabControl (TabAlignment.Top only, other will follow)
17022         * ThemeEngine.cs: Add theme nice
17023         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
17024           if enabled
17026 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
17028         * Splitter.cs: Resize docked control and its neighbor.
17030 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
17031         -- Making Windows with Menus layout correctly --
17032         * Form.cs : The first leg of the fix
17033                 Menu setter - adjust Client Size as needed to make space for the menu
17034                 SetClientSizeCore - doesn't call base version to be able to pass the 
17035                         menu handle to XplatUI.CalculateWindowRect
17036         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
17037         * XplatUIX11.cs: The critical second leg of the fix
17038                 GetWindowPos needs to use a recalculated client_rect
17039                 so that resizing the window doesn't break layout of child controls. 
17040                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
17041                 Lots of \t\n killed
17043 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
17045         * Label.cs: Now properly recalculates width and height on Font and Text
17046           changes if AutoSize is set
17048 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
17049         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
17051 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
17053         * ImageList.cs: Makes ToString method compatible with MS
17055 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
17057         * MenuAPI.cs: fixes bug 75716
17059 2005-08-11 Umadevi S <sumadevi@novell.com>
17060         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
17062 2005-08-11 Umadevi S <sumadevi@novell.com>
17063         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
17065 2005-08-10  Umadevi S <sumadevi@novell.com>
17066         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
17068 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
17070         * Menu.cs: fixes bug 75700
17071         * MenuAPI.cs: fixes navigation issues
17073 2005-08-09  Umadevi S <sumadevi@novell.com>
17074         * CheckedListBox.cs - simple fix for GetItemChecked.
17076 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
17078         * ComboBox.cs: Serveral fixes
17079         * ListBox.cs: Serveral fixes
17081 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
17083         * ComboBox.cs: Fixes FindString methods and GetItemHeight
17084         * ListBox.cs: Fixes FindString methods
17086 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
17088         * DataGrid.cs: fixes bugs exposed by new tests
17090 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
17092         * Mime.cs: Compile Mono assembly references only if compiling
17093           with Mono (Allows to build with VS.Net again)
17095 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
17097         * Control.cs (PaintControlBackground): Draw background image
17098         corrrectly.
17099         (CheckForIllegalCrossThreadCalls): Stubbed.
17100         
17101         * Form.cs (OnCreateControl): Center when should be centered.
17102         
17103         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
17105 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
17107         * Binding.cs: Binding to properties should be case unsensitive
17109 2005-07-18 vlindos@nucleusys.com
17111         * DataGrid.cs: fixes setmember order
17113 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
17115         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
17116         * FileDialog.cs: FileDialog is now resizable and uses the new
17117           MimeIconEngine
17119 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
17121         * DataGridTextBoxColumn.cs: default value
17122         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
17123         * GridTableStylesCollection.cs: fixes checking MappingName
17124         * DataGridDrawingLogic.cs: fixes drawing logic issues
17125         * DataSourceHelper.cs: rewritten to make compatible with more data sources
17126         * DataGrid.cs: fixes    
17128 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
17130         * MimeGenerated.cs: Use case sensitive comparer for
17131           NameValueCollections
17133 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
17135         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
17136         * ThemeWin32Classic.cs: bug fixes, code refactoring
17137         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
17138         * DataGrid.cs: bug fixes, code refactoring
17139         * DataGridTextBox.cs: bug fixes, code refactoring
17140         * DataGridColumnStyle.cs:  bug fixes, code refactoring
17141         * Theme.cs:  bug fixes, code refactoring
17143 2005-07-01  Peter Bartok  <pbartok@novell.com> 
17145         * TextControl.cs: Quick fix for the reported crash on ColorDialog
17146           and other text box usage
17148 2005-07-01  Jackson Harper  <jackson@ximian.com>
17150         * TabControl.cs: Make sure the bottom of the tab covers the pages
17151         border.
17153 2005-06-30  Peter Bartok  <pbartok@novell.com> 
17155         * Form.cs (ShowDialog): Assign owner of the dialog
17156         * TextBoxBase.cs: Always refresh caret size when deleting, caret
17157           might have been moved to a tag with different height
17159 2005-06-30  Jackson Harper  <jackson@ximian.com>
17161         * Form.cs: Don't create an infinite loop when setting focus
17162         * MenuItem.cs: Don't dirty the parents if we don't have any
17164 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
17166         * LibSupport.cs: Rename
17168 2005-06-29  Peter Bartok  <pbartok@novell.com>
17170         * TextBoxBase.cs: Re-align caret after deleting a character
17171         * TextControl.cs:
17172           - DeleteChars(): Ensure that tag covers the provided position
17173           - StreamLine(): Drop reference for dropped tag
17175 2005-06-29  Peter Bartok  <pbartok@novell.com> 
17177         * TextControl.cs: 
17178           - Selections now work properly, anchoring at the initial location
17179             and properly extending in either direction (SetSelectionToCaret(),
17180             SetSelectionStart() and SetSelectionEnd())
17181           - No longer redraws the whole control on selection change, now
17182             calculates delta between previous and new selection and only
17183             invalidates/redraws that area
17184           - Fixed FindPos() math off-by-one errors
17185           - Changed DeleteChars() to verify the provided tag covers the
17186             provided position, selections may have a tag that doesn't cover
17187             the position if the selection is at a tag border
17188           - Fixed off-by-one errors in DeleteChars()
17189           - Added missing streamlining check in DeleteChars() to remove
17190             zero-length tags
17191           - Implemented Invalidate() method, now properly calculates exposures
17192             between two given lines/positions
17193           - Implemented SetSelection()
17194           - Obsoleted and removed FixupSelection()
17195           - Improved RecalculateDocument() logic, removing code duplication
17197 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17199         * LibSupport.cs: changes to match different input/output arguments.
17201 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17203         * LibSupport.cs: added libsupport.so init routine.
17205 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
17206         
17207         * ControlBindingsCollection.cs
17208                 - Throws an exception on null datasource when adding
17209                 - Checks for duplicated bindings when adding
17211 2005-06-28  Jackson Harper  <jackson@ximian.com>
17213         * TreeView.cs (OnKeyDown): Support left and right properly
17214         (navigates as well as expanding and collapsing.
17215         - Add support for Multiply, this expands all the selected nodes
17216         children.
17217         - Fix some tabbing.
17219 2005-06-28  Jackson Harper  <jackson@ximian.com>
17221         * TreeView.cs: Implement keyboard navigation, currently supports,
17222         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
17223         support for toggling checkboxes with the space bar.
17225 2005-06-28  Jackson Harper  <jackson@ximian.com>
17227         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
17228         tree.
17230 2005-06-28  Jackson Harper  <jackson@ximian.com>
17232         * TreeView.cs: Add missing event.
17234 2005-06-27  Peter Bartok  <pbartok@novell.com> 
17236         * TextControl.cs:
17237           - Made line ending size configurable (now allows for counting 
17238             lineendings as \n or \r\n)
17239           - Added margin to viewport to keep caret visible on right side
17240           - Fixed translation routines for line/pos to documentpos to consider
17241             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
17242           - Fixed some line-endings to be unix style
17243           - Fixed Document.FormatText to perform it's calculations 1-based
17244           - Added descriptions for a few methods that might otherwise get 
17245             used wrong
17246           - Added NOTE section with some basic conventions to remember at 
17247             the top of the file
17248           - Major fixup for RichTextBox selection drawing:
17249             * Fixed crashes when multiple tags on a single line were selected
17250             * fixed selection box drawing not overlaying text
17251             * fixed bogus offset calculation for tags not starting at index 1
17252             * Switched behaviour from using multiple Substrings of a 
17253               StringBuilder.ToString() to using multiple 
17254               StringBuilder.ToString(start, length) statements, hoping this is
17255               faster (kept original version commented out in the code, in case
17256               original version was faster)
17257         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
17258           alignment != Left
17259         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
17260           call it as well
17262 2005-06-27  Jackson Harper  <jackson@ximian.com>
17264         * TabControl.cs: Move to the left and right with the arrow
17265         keys. These keys don't cycle beyond first and last like
17266         tab. Refresh all the tabs when scrolling them to the left or
17267         right.
17269 2005-06-27  Jackson Harper  <jackson@ximian.com>
17271         * TabControl.cs:
17272           - ToString: Added method
17273           - CreateParams: Remove TODO and comment
17274           - OnKeyDown: Cycle through bounds properly.
17275           - SelectedIndex: Scroll to the right or left if we need to
17276           display the newly selected tab.
17278 2005-06-23  Jackson Harper  <jackson@ximian.com>
17280         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
17281         set.
17283 2005-06-23  Jackson Harper  <jackson@ximian.com>
17285         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
17286         CTRL-SHIFT-TAB, and HOME, END are there any others?
17288 2005-06-23  Jackson Harper  <jackson@ximian.com>
17290         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
17292 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
17293         
17294         * DataGridTextBoxColumn.cs: fixes and enhancements
17295         * ThemeWin32Classic.cs: fixes and enhancements
17296         * DataGridBoolColumn.cs:  fixes and enhancements
17297         * DataGridDrawingLogic.cs:  fixes and enhancements
17298         * CurrencyManager.cs: fixes and enhancements
17299         * DataGrid.cs: fixes and enhancements
17300         * DataGridColumnStyle.cs:  fixes and enhancements
17302 2005-06-22  Jackson Harper  <jackson@ximian.com>
17304         * TabControl.cs: Add some missing methods that just call into the
17305         base. Make the TabPageCollection's IList interface behave in the
17306         same manner as the MS implementation.
17308 2005-06-22  Peter Bartok  <pbartok@novell.com> 
17310         * TextControl.cs: Added sanity check
17311         * TextBoxBase.cs: 
17312           - Fixed wrapping behaviour, don't set wrap on single line controls
17313             (this fixes the breakage of colordialog introduced in an earlier
17314              checkin)
17315           - Added rudimentary support for autoscrolling right-aligned controls
17316             (still needs fixing, also, center alignment scroll is missing)
17318 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
17319         
17320         * ScrollBar.cs: Fixes thumbpos on Maximum values
17322 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
17323         
17324         * PropertyGridView.cs: Pass context information to UITypeEditors 
17326 2005-06-21  Peter Bartok  <pbartok@novell.com> 
17328         * TextBoxBase.cs:
17329           - Now calling PositionCaret with absolute space coordinates
17330           - Enabled vertical scrolling
17331           - Better tracking of scrollbar changes, tied into WidthChange
17332             event
17333           - Improved cursor tracking
17334           - Removed debug output
17335         * TextControl.cs:
17336           - PositionCaret coordinates are now works in absolute space, not 
17337             the canvas
17338           - Improved tracking of document size
17339           - Added events for width and height changes
17341 2005-06-21  Peter Bartok  <pbartok@novell.com>
17343         * Form.cs: Set focus to active control when form is activated
17344         * TextControl.cs: 
17345           - Added word-wrap functionality to RecalculateLine() 
17346           - Added some short function descriptions for VS.Net to aid in
17347             writing dependent controls
17348           - Added Caret property, returning the current coords of the caret
17349           - Added ViewPortWidth and ViewPortHeight properties
17350           - Added Wrap property
17351           - Added CaretMoved event
17352           - Removed some old debug code
17353           - Split() can now create soft splits
17354           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
17355           - Added method to format existing text
17356           - Fixed size/alignment calculations to use viewport
17357           - RecalculateDocument now can handle changing line-numbers while
17358             calculating lines
17360         * TextBox.cs:
17361           - Added some wrap logic, we don't wrap if alignment is not left
17362           - Added casts for scrollbar var, base class switched types to
17363             also support RichTextBoxA
17364           - Implemented handling of scrollbar visibility flags
17366         * TextBoxBase.cs:
17367           - Switched scrollbars type to RichTextBoxScrollBars to support
17368             RichTextBox
17369           - Added tracking of canvas width/height
17370           - Switched scrollbars to be not selectable (to keep focus on text)
17371           - Added central CalculateDocument() method to handle all redraw
17372             requirements
17373           - Added ReadOnly support
17374           - Added WordWrap support
17375           - Fixed handling of Enter key (we now treat it as a DialogKey)
17376           - Fixed caret positioning when h or v scroll is not zero
17377           - Fixed placing/generation of vertical scrollbar
17378           - Added CalculateScrollBars() method to allow updating scrollbar
17379             limits and visibility
17380           - Fixed handling of horizontal scroll
17381           - Added handling of vertical scroll
17382           - Implemented auto-'jump' when caret moves to close to a left or
17383             right border and there is text to be scrolled into view (currently
17384             there's the potential for a stack overflow, until a bug in
17385             scrollbar is fixed)
17387 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
17388         
17389         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
17391 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
17393         * Mime.cs:
17394         - added inodes.
17395         - return application/x-zerosize for files with size zero
17396           (if no extension pattern matches).
17397         - check matches collection for strings too.
17398         - return only the first mime type if the name value
17399           collection has more than one mime type.
17401 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
17402         
17403         * PropertyGrid.cs: Cleaned up some TODOs
17404         * PropertyGridView.cs: Added support for UITypeEditors
17406 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
17407         
17408         * DataGrid.cs: clears cached value
17410 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
17412         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
17413         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
17414         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
17415         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
17416         
17417 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
17419         * ThemeWin32Classic.cs: fixes colour
17421 2005-06-15  Peter Bartok  <pbartok@novell.com>
17423         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
17424         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
17425         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
17426         * Control.cs: Added some MWFCategory and MWFDescription attributes
17427         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
17429 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
17431         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
17432         usage
17434 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
17436         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
17437         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
17438         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
17439         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
17440         * DataGrid.cs: default datagrid settings for Default Styles, fixes
17441         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
17443 2005-06-13  Jackson Harper  <jackson@ximian.com>
17445         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
17446         isn't printed when the user enables dropping. (X11 does accept
17447         drops).
17448         
17449 2005-06-13  Jackson Harper  <jackson@ximian.com>
17451         * TreeView.cs: Remove some TODOS.
17453 2005-06-13  Jackson Harper  <jackson@ximian.com>
17455         * Form.cs: Hook into the mdi framework.
17456         * MdiClient.cs: Use the base control collections add method so
17457         parents get setup correctly. Set the default back colour and dock
17458         style.
17459         * MdiChildContext.cs: New class, this bad actor handles an
17460         instance of an MDI window. Right now there is only basic
17461         support. You can drag, close, and resize windows. Minimize and
17462         Maximize are partially implemented.
17464 2005-06-13  Jackson Harper  <jackson@ximian.com>
17466         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
17467         freaky when both vals are negative. NOTE: There are probably other
17468         places in XplatUIX11 that this needs to be done.
17470 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
17472         * DataGrid.cs: implement missing methods, move KeyboardNavigation
17473         * DataGridColumnStyle.cs: fixes signature
17475 2005-06-12  Jackson Harper  <jackson@ximian.com>
17477         * XplatUIX11.cs: Use sizing cursors similar to the ones on
17478         windows.
17480 2005-06-11  Jackson Harper  <jackson@ximian.com>
17482         * StatusBarPanel.cs: Signature cleanups. Implement
17483         BeginInit/EndInit.
17485 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
17487         * DataGridTextBoxColumn.cs: Honors aligment
17488         * GridColumnStylesCollection.cs: Contains is case unsensitive
17489         * GridTableStylesCollection.cs: several fixes
17490         * DataGridTableStyle.cs: default column creation
17491         * DataGridDrawingLogic.cs: fixes
17492         * CurrencyManager.cs: ListName property
17493         * DataGrid.cs: multiple styles support
17494         * DataGridColumnStyle.cs: fixes
17495         
17497 2005-06-10  Peter Bartok  <pbartok@novell.com>
17499         * Control.cs(Select): Moved SetFocus call to avoid potential
17500           loops if controls change the active control when getting focus
17501         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
17502           the up/down buttons
17504 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
17506         * ImageListConverter.cs: Implemented
17508 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
17510         * MonthCalendar.cs: Wired in NumericUpDown control for year
17512 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
17514         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
17515           DoubleClick events, since they are not meant to be fired.
17517 2005-06-09  Peter Bartok  <pbartok@novell.com>
17519         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
17520           Jonathan's standalone controls into MWF, implemented missing
17521           events, attributes and methods; added xxxAccessible classes
17522         * AccessibleObject.cs: Made fields internal so other classes
17523           can change them if needed
17525 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
17527         * UpDownBase.cs: Complete implementation
17528         * NumericUpDown.cs: Complete implementation
17529         * DomainUpDown.cs: Complete implementation
17531 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
17533         * DataGridTextBoxColumn.cs: drawing fixes
17534         * DataGridCell.cs: fixes ToString method to match MSNet
17535         * DataGridTableStyle.cs: fixes
17536         * DataGridBoolColumn.cs: fixes, drawing
17537         * DataGridDrawingLogic.cs: fixes, new methods
17538         * DataGridTextBox.cs: Keyboard and fixes
17539         * DataGrid.cs:
17540                 - Keyboard navigation
17541                 - Scrolling fixes
17542                 - Row selection (single, multiple, deletion, etc)
17543                 - Lots of fixes
17544         
17545 2005-06-07  Jackson Harper  <jackson@ximian.com>
17547         * ThemeWin32Classic.cs: Clear the background area when drawing
17548         buttons.
17550 2005-06-06  Peter Bartok  <pbartok@novell.com>
17552         * ImageListStreamer.cs: Fixed signature for GetData
17553         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
17554         * ComboBox.cs:
17555           - Added missing ChildAccessibleObject class
17556           - Added missing OnXXXFocus overrides, switched to using those
17557             instead of the event handler
17558         * Control.cs:
17559           - Added Parent property for ControlAccessibleObject
17560           - Fixed signatures
17561           - Fixed attributes
17562           - Added ResetBindings()
17563         * ListBindingConverter.cs: Implemented some methods
17564         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
17565         * ImageList.cs: Implemented basic handle scheme, removed TODOs
17566         * ContainerControl.cs: Fixed signature, now subscribing to the
17567           ControlRemoved event instead of overriding the handler, LAMESPEC
17568         * CurrencyManager.cs: Added missing attribute
17569         * MonthCalendar.cs: Added missing properties
17571 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
17573         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
17574         
17575 2005-06-06  Gaurav Vaish and Ankit Jain
17577         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
17578         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
17579         
17580 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
17582         * Control.cs: fixes CreateParams Width / Height.
17584 2005-06-05  Peter Bartok  <pbartok@novell.com>
17586         * Win32DnD.cs: Removed compilation warnings
17588 2005-06-05  Peter Bartok  <pbartok@novell.com>
17590         * Control.cs (CreateParams): Since we don't know if one of the
17591           properties we use is overridden, lets make sure if we fail accessing
17592           we continue with a backup plan
17594 2005-06-05  Peter Bartok  <pbartok@novell.com>
17596         * Win32DnD.cs:
17597           - Removed debug output
17598           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
17599             struct
17600           - Plugged resource leak
17601         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
17602           MS size
17604 2005-06-05  Peter Bartok  <pbartok@novell.com>
17606         * XplatUIWin32.cs: Removed DnD code
17607         * Win32DnD.cs: Implemented drop source and drop target functionality
17609 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17611         * UpDownBase.cs: remove duplicate addition of event, enable some code
17612         that was commented out.
17613         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
17614         Validate input when a key is pressed. It works fine now for every
17615         combination of Hexadecimal. Only missing some drawing love when sharing
17616         space with other controls.
17618 2005-06-04  Peter Bartok  <pbartok@novell.com>
17620         * Control.cs:
17621           - We need to pass a window for DragDrop, so enable callback events
17622           - Added DnD callback events when being a DragSource
17623         * XplatUI.cs (StartDrag): Added window handle argument
17624         * XplatUIDriver.cs (StartDrag): Added window handle argument
17625         * QueryContinueDragEventArgs: Made fields internally accessible so
17626           drivers can set them
17627         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
17628           can set them
17630 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
17632         * DataGridTextBoxColumn.cs: column text editing
17633         * DataGridTableStyle.cs: Respect columns styles created by the user
17634         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
17635         * DataGridBoolColumn.cs: bool column editing
17636         * DataGrid.cs: fixes to scrolling, properties, etc
17637         * DataGridTextBox.cs: handle keyboard
17638         * DataGridColumnStyle.cs: fixes
17640 2005-06-02  Jackson Harper  <jackson@ximian.com>
17642         * ImageListStreamer.cs: Somewhat broken implementation of
17643         GetObjectData. The RLE needs some work to match MS properly.
17645 2005-06-02  Jackson Harper  <jackson@ximian.com>
17647         * X11Dnd.cs: Attempting to keep at least one file in MWF
17648         monostyled.
17650 2005-06-02  Peter Bartok  <pbartok@novell.com>
17652         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
17653           that way
17655 2005-06-02  Peter Bartok  <pbartok@novell.com>
17657         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
17658         * XplatUI.cs: Added DoDragDrop() method
17659         * XplatUIDriver.cs: Added DoDragDrop() method
17661 2005-06-02  Jackson Harper  <jackson@ximian.com>
17663         * Splitter.cs: Implement BorderStyle.
17665 2005-06-02  Jackson Harper  <jackson@ximian.com>
17667         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
17668         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
17669         X11 using XDND.
17671 2005-06-02  Peter Bartok  <pbartok@novell.com>
17673         * DataObject.cs:
17674           - Added Data setter
17675           - Fixed broken insertion code for SetData, now also
17676             overwrites any existing entry of the same format name
17677         * Hwnd.cs: Added list of pointers that automatically gets
17678           freed when the window is disposed
17679         * XplatUI.cs: Call driver initialization method when loading
17680           a driver
17681         * Control.cs:
17682           - OnDragLeave takes EventArgs, not DragEventArgs
17683           - Added setting of WS_EX_ACCEPTFILES style when dropping is
17684             supported
17685           - Forces style update when drop state changes
17686         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
17687           not perfect since we cannot (yet) call the IDataObject.GetData()
17688           method, we keep getting 0x80004005 error, dunno why)
17690 2005-06-02  Peter Bartok  <pbartok@novell.com>
17692         * DragEventArgs.cs: Make fields internal so we can cache the
17693           object and re-set the fields from XplatUI
17695 2005-06-02  Jackson Harper  <jackson@ximian.com>
17697         * Control.cs: Add some internal methods so the DnD subsystem can
17698         raise DnD events. Also call into the driver when AllowDrop is set.
17699         * XplatUI.cs:
17700         * XplatUIDriver.cs: New method for setting whether or not a window
17701         is allowed to accept drag and drop messages.
17702                 
17703 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
17704         
17705         * ScrollBar.cs: Make sure that values sent in Scroll events
17706         are always between Maximum and Minimum.
17708 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
17710         * Menu.cs: Call MenuChanged when menuitem visibility has been
17711         changed.
17712         * MenuItem.cs: Rebuild menu when item is (not) visible.
17713         * MainMenu.cs: MainMenu has special MenuChanged.
17714         * Theme.cs: Caption and FrameBorderSize are not fixed.
17715         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
17716         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
17717         * XplatUIX11.cs,
17718         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
17719         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
17721 2005-05-30  Jackson Harper  <jackson@ximian.com>
17723         * DataFormat.cs: We can't statically initialize this stuff because
17724         it calls into the xplatui and could create a loop. So we lazy init
17725         it.
17727 2005-05-28  Jackson Harper  <jackson@ximian.com>
17729         * Control.cs: Proper implementation of Product(Name/Version).
17731 2005-05-27  Jackson Harper  <jackson@ximian.com>
17733         * DataObject.cs: Dont crash if no data is found.
17735 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
17736         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
17737                 as per status page, guessing it should be set to true
17739 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
17741         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
17742         * DataGridTableStyle.cs: set proper formatting text, def header text
17743         * ThemeWin32Classic.cs: new themable paramaters
17744         * DataGridBoolColumn.cs: paint check box, get data, fixes
17745         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
17746         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
17747         * DataGridColumnStyle.cs: fixes
17748         * Theme.cs: new themable paramaters
17749                 
17750 2005-05-26  Peter Bartok  <pbartok@novell.com>
17752         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
17754 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
17755         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
17757 2005-05-24  Peter Bartok  <pbartok@novell.com>
17759         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
17760           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
17761           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
17762           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
17763           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
17764           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
17765           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
17766           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
17767           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
17768           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
17769           missing attributes, etc
17770         * DataGridPreferredColumnWidthTypeConverter.cs: Added
17772 2005-05-24  Peter Bartok  <pbartok@novell.com>
17774         * Help.cs: Added, implemented trivial functions, throws up MessageBox
17775           when user tries to get help
17776         * DataObject.cs, DataFormats.cs, LinkArea.cs,
17777           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
17778           to suppress warnings
17779         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
17780           avoid unreachable code warning
17782 2005-05-20  Peter Bartok  <pbartok@novell.com>
17784         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
17786 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
17788         * DataGridTextBoxColumn.cs: Basic painting methods
17789         * DataGridTableStyle.cs: Set table style in the column
17790         * ThemeWin32Classic.cs: Use Theme for colors
17791         * DataGridDrawingLogic.cs: Implement more drawing
17792         * DataGrid.cs: drawing, theming, enhacements, fixes
17793         * DataGridColumnStyle.cs: fixes, drawing
17794         * Theme.cs: theming for Datagrid
17796 2005-05-20  Peter Bartok  <pbartok@novell.com>
17798         * Cursor.cs: Implemented GetObjectData() method
17800 2005-05-20  Peter Bartok  <pbartok@novell.com>
17802         * Cursors.cs: Added setting of cursor name
17803         * Cursor.cs:
17804           - Implemented constructors
17805           - Implemented Draw and DrawStretched
17806           - Implemented Current property
17807           - Implemented == and != operators
17808           - Implemented Dispose()
17809           - Implemented ToString
17810           - Added missing attributes
17811         * XplatUIX11.cs:
17812           - Added missing reset for OverrideCursor when DoEvents is called
17813           - Fixed creation of cursor, logic was wrong
17814         * XplatUIWin32.cs:
17815           - Added missing reset for OverrideCursor when DoEvents is called
17816           - Fixed creation of cursor, bit arrays were swapped
17817         * Clipboard.cs: Removed obsolete MonoTODO attribute
17819 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
17821         * ComboBox.cs: fixes OnSelectedItemChanged
17822         * ControlBindingsCollection.cs: fixes item range check
17824 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
17826         * UpDownBase.cs:
17827                 - Calc preferred height properly
17828                 - Implement missing properties
17829                 
17830         * NumericUpDown.cs: Implement missing events
17832 2005-05-19  Jackson Harper  <jackson@ximian.com>
17834         * TabControl.cs: New method that resizes the tab pages before
17835         redrawing them. This as needed as the control is double buffered
17836         and sizing will not be recalculated unless ResizeTabPages is
17837         called.
17838         * TabPage.cs: Set base.Text instead of Text in the constructor so
17839         that UpdateOwner does not get called. Use the new Redraw method of
17840         TabControl instead of Refresh so the sizing is recalculated.
17841         * ThemeWin32Classic.cs: Draw the text for button tabs.
17843 2005-05-19  Jackson Harper  <jackson@ximian.com>
17845         * Control.cs: Paint control background images. Fix typo where
17846         PaintControlBackground was not getting called correctly.
17848 2005-05-19  Peter Bartok  <pbartok@novell.com>
17850         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
17851           I can investigate, apparently I broke FileDialog
17853 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
17855         * AxHost.cs: Some simple properties.
17856         * Control.cs: window must be accessible after ctor.
17857         * Form.cs: Added TransparencyKey property.
17858         * TextBoxBase.cs: Implemented Clear. Text property can be null.
17859         * XplatUIWin32.cs: SetBorderStyle implemented.
17861 2005-05-18  Peter Bartok  <pbartok@novell.com>
17863         * DataObject.cs: Entries are not global but particular to the
17864           DataObject, now it behaves that way
17865         * XplatUIWin32.cs: Implemented Clipboard methods
17866         * Clipboard.cs: Implemented
17867         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
17868         * XplatUIOSX.cs: Updated to final clipboard prototypes
17869         * XplatUIX11.cs: Implemented Clipboard methods
17870         * XplatUIDriver.cs: Updated to final clipboard prototypes
17871         * XplatUIStructs.cs:
17872           - Added BITMAPINFOHEADER struct
17873           - Added ClipboardFormats enum
17874         * X11Structs.cs:
17875           - Added ClipboardStruct
17876           - Added Atom enum items for clipboard types
17877           - Fixed atom types for Selection event structures
17878         * DataFormats.cs:
17879           - Added internal properties and methods for drivers to enumerate
17880             all known formats
17881           - Switched initialization method to allow drivers to assign their
17882             own IDs even for the MS predefined clipboard IDs
17883         * XplatUI.cs: Updated to final clipboard interface
17885 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
17886         * PropertyGridView.cs: Fixed compiler warnings.
17888 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
17889         * PropertyGrid.cs: Added some event calls
17890         * PropertyGridView.cs: Change drawing code to use double buffering
17891         * PropertyGridTextBox.cs: Changed Text property name
17892         * GridItem.cs: Added Bounds property.
17893         * GridEntry.cs: Added Bounds property.
17895 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
17897         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
17898         since GetType() may not return the correct type if the object is
17899         a remoting proxy.
17901 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
17903         * TreeNodeCollection.cs: fixes get/set item ranges
17904         
17905 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
17907         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
17908                 
17909 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
17911         * ComboBox.cs: Fix item range comparation
17912         * ListView.cs: Fix item range comparation
17914 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
17916         * FontDialog.cs:
17917           - Clear example panel when OnPaint is called
17918           - Better solution for displaying the example panel text
17919           - Select default indexes in the ListBoxes
17921 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
17923         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
17925 2005-05-11  Peter Bartok  <pbartok@novell.com>
17927         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
17928         * SelectionRangeConverter.cs: Implemented
17929         * PropertyGrid.cs: Fixed attribute value
17930         * Control.cs:
17931           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
17932           - Added Sebastien Pouliot's CAS Stack Propagation fixes
17933         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
17934           that's common to all drivers. First methods to go there are
17935           Sebastien Pouliot's CAS Stack Propagation helper methods
17936         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
17937           Sebastien Pouliot for CAS Stack Propagation
17939 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
17941         * OSXStructs.cs:
17942           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
17944 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
17946         * DataGridTextBoxColumn.cs: fixed some members
17947         * GridColumnStylesCollection.cs: indexed column is case insensitive
17948         * DataGridTableStyle.cs: fixes
17949         * ThemeWin32Classic.cs: add new theme parameter
17950         * Theme.cs: add new theme parameter
17951         * DataGridDrawingLogic.cs: Datagrid's drawing logic
17952         * DataGrid.cs: fixes, new internal properties, etc.
17953         * DataGridColumnStyle.cs: allows to set grid value
17954         *
17956 2005-05-10  Peter Bartok  <pbartok@novell.com>
17958         * AccessibleObject.cs:
17959           - Removed MonoTODO attribute on help, method is correct
17960           - Fixed Bounds property
17961         * AxHost.cs: Moved MonoTODO
17962         * ButtonBase.cs: Now setting AccessibleObject properties
17963         * RadioButton.cs: Setting proper AccessibleObject role
17964         * CheckBox.cs: Setting proper AccessibleObject role
17965         * ControlBindingsCollection.cs: Added properties, methods and attributes
17966         * DataFormats.cs: Fixed awkward internal API, and changed to enable
17967           userdefined DataFormats.Format items as well
17968         * ListControl.cs: Removed data_member from the public eye
17969         * OpenFileDialog.cs:
17970           - Made class sealed
17971           - Added missing attributes
17972         * SaveFileDialog.cs: Added missing attributes
17973         * ImageListStreamer.cs: Fixed code that caused warnings
17974         * LinkLabel.cs: Removed unreachable code
17975         * TreeView.cs: Fixed code that caused warnings
17976         * PropertyGridView.cs: Fixed code that caused warnings
17977         * GridColumnStylesCollection.cs: Added missing attributes
17978         * GridTableStylesCollection: Added missing attribute
17979         * PropertyManager: Added .ctor
17980         * SecurityIDType: Added
17981         * DataObject.cs: Implemented class
17982         * LinkArea.cs: Added missing attribute
17984 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
17986         * RadioButton.cs: call base method to allow to fire OnClick event
17987         * UpDownBase.cs: OnMouseUp call base method
17988         * CheckedListBox.cs: call base method before returning
17989         * TrackBar.cs: call base method before returning
17990         
17992 2005-05-10  Peter Bartok  <pbartok@novell.com>
17994         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
17995           for messages
17997 2005-05-10  Peter Bartok  <pbartok@novell.com>
17999         * DataFormats.cs: Implemented
18000         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
18001           XplatUIX11.cs: Added Clipboard APIs
18002         * XplatUIWin32.cs: Implemented Clipboard APIs
18003         * FolderBrowserDialog.cs: Added missing event, attributes
18005 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
18007         * CheckBox.cs: call base method to allow to fire OnClick event
18009 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
18011         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
18013 2005-05-06  Peter Bartok  <pbartok@novell.com>
18015         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
18016         * Screen.cs: Implemented
18017         * HelpNavigator.cs: Added
18018         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
18019           property
18020         * HelpProvider.cs: Implemented all we can do until we have a CHM
18021           help library (which means that "What's This" does work now)
18023 2005-05-06  Jackson Harper  <jackson@ximian.com>
18025         * XplatUIX11.cs: Fix waking up the main loop.
18026                 
18027 2005-05-05  Peter Bartok  <pbartok@novell.com>
18029         * XplatUI.cs: Updated revision
18030         * Form.cs: Removed enless loop
18031         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
18032         * Label.cs (OnPaint): Added call to base.OnPaint()
18033         * ToolTip.cs: Made ToolTipWindow reusable for other controls
18034         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
18035         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
18036         * AxHost.cs: Added
18037         * ButtonBase.cs: Moved base.OnPaint() call to end of method
18038         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
18039           to ToolTip.ToolTipWindow for drawing and size methods; this allows
18040           reuse of ToolTipWindow by other controls
18041         * SizeGrip.cs: Moved base.OnPaint() call to end of method
18042         * XplatUIX11.cs: Now clipping drawing area (experimental)
18043         * PictureBox.cs: Moved base.OnPaint() call to end of method
18044         * Theme.cs: Fixed ToolTip abstracts to match new format
18045         * ErrorProvider.cs: Implemented
18047 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
18049         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
18050         * LinkLabel.cs:
18051                 - Adds cursors
18052                 - Handles focus
18053                 - Implements LinkBehavior
18054                 - Fixes many issues
18056 2005-05-03  Jackson Harper  <jackson@ximian.com>
18058         * ListView.cs: Calculate the scrollbar positioning on resize and
18059         paint, so they get put in the correct place.
18061 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
18063         * ColorDialogs.cs: The small color panels are now handled by
18064           SmallColorControl. This fixes drawing of the focus rectangle
18065           and adds a 3D border.
18067 2005-05-03  Peter Bartok  <pbartok@novell.com>
18069         * Control.cs: Modified version of Jonathan Chamber's fix for
18070           double-buffering
18072 2005-05-03  Jackson Harper  <jackson@ximian.com>
18074         * ListView.cs: Remove redraw variable. Control now handles whether
18075         or not a redraw needs to be done, and will only raise the paint
18076         event if redrawing is needed.
18078 2005-05-03  Jackson Harper  <jackson@ximian.com>
18080         * Splitter.cs: No decorations for the splitter form. Cache the
18081         hatch brush.
18083 2005-05-03  Jackson Harper  <jackson@ximian.com>
18085         * TreeView.cs: Use dashed lines to connect nodes. Use the
18086         ControlPaint method for drawing the focus rect instead of doing
18087         that in treeview.
18089 2005-05-02  Peter Bartok  <pbartok@novell.com>
18091         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
18093 2005-04-29  Jackson Harper  <jackson@ximian.com>
18095         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
18096         entire image buffer. Just clear the clipping rectangle.
18098 2005-04-29  Jackson Harper  <jackson@ximian.com>
18100         * ThemeWin32Classic.cs: Don't draw list view items that are
18101         outside the clipping rectangle.
18103 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
18105         * ListBox.cs: added horizontal item scroll
18107 2005-04-29  Jackson Harper  <jackson@ximian.com>
18109         * ThemeWin32Classic.cs: Remove some old debug code that was
18110         causing flicker with the new double buffering code.
18112 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
18114         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
18115         behave like combobox and comboboxlist (still not sure if this is
18116         correct though).
18118 2005-04-28  Jackson Harper  <jackson@ximian.com>
18120         * ThemeWin32Classic.cs: Don't fill the middle of progress
18121         bars. This fills areas outside of the clip bounds that don't need
18122         to be filled.
18124 2005-04-28  Jackson Harper  <jackson@ximian.com>
18126         * Control.cs: Don't expose functionality to touch the image buffers.
18127         * ProgressBar.cs:
18128         * ListView.cs: We do not need to (and no longer can) manipulate
18129         the image buffers directly. All of this is handled by Control.
18131 2005-04-28  Peter Bartok  <pbartok@novell.com>
18133         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
18134           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
18135           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
18137 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
18139         * Combobox:
18140                 - Adjust control's height for non-simple comboboxes (bug fix)
18141                 - Remove dead code
18142         * MenuAPI.cs: remove unused var
18143         * ScrollBar.cs: remove unsed var
18144                  
18145         * ListBox.cs: unselect items when clearing
18147 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
18149         * ListControl.cs: honors OnPositionChanged and default Selected Item
18150         * ListBox.cs: unselect items when clearing
18152 2005-04-27  Jackson Harper  <jackson@ximian.com>
18154         * X11Keyboard.cs: Initialize a default keyboard and give a warning
18155         if a "correct" keyboard is not found. This will make us not crash,
18156         but might give some users bad keyboard layouts...seems to be the
18157         same thing rewind does.
18159 2005-04-27  Jackson Harper  <jackson@ximian.com>
18161         * BindingManagerBase.cs: Attach the current/position changed
18162         handlers to their respective events.
18164 2005-04-27  Jackson Harper  <jackson@ximian.com>
18166         * Control.cs: Make sure that the first WM_PAINT does a full draw,
18167         not just a blit.
18168         * ThemeWin32Classic.cs: Don't fill the background for picture
18169         boxes. This could overright user drawing.
18170         * ComboBox.cs: Just fill the clipping rect not the entire client
18171         rect when drawing the background. This prevents pieces of the
18172         image buffer from getting overwritten and is theoretically faster.
18174 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
18176         * ComboBox.cs: Databinding support fixes, fire missing events
18177         * ListControl.cs: implement missing methods and properties, fixes
18178         * ThemeWin32Classic.cs: Databiding support on Drawing
18179         * CheckedListBox.cs: Databinding support fixes, fire missing events
18180         * ListBox.cs: Databinding support fixes, fire missing events
18181         
18182 2005-04-25  Peter Bartok  <pbartok@novell.com>
18184         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
18186 2005-04-25  Jackson Harper  <jackson@ximian.com>
18188         * TreeView.cs: Use the horizontal scrollbars height not width when
18189         determining how much of the client area is available.
18191 2005-04-25  Jackson Harper  <jackson@ximian.com>
18193         * Control.cs: Double buffering is handled differently now. As per
18194         the spec, the extra buffer is created in the WM_PAINT message and
18195         passed down to the control's drawing code.
18196         * GroupBox.cs:
18197         * Label.cs:
18198         * CheckBox.cs:
18199         * ProgressBar.cs:
18200         * RadioButton.cs:
18201         * ColorDialog.cs:
18202         * ComboBox.cs:
18203         * PropertyGridView.cs:
18204         * UpDownBase.cs:
18205         * MessageBox.cs:
18206         * MenuAPI.cs:
18207         * ListView.cs:
18208         * ButtonBase.cs:
18209         * SizeGrip.cs:
18210         * ScrollBar.cs:
18211         * ListBox.cs:
18212         * TrackBar.cs:
18213         * ToolBar.cs:
18214         * PictureBox.cs:
18215         * DateTimePicker.cs:
18216         * StatusBar.cs:
18217         * TreeView.cs: Update to new double buffering system.
18218         * MonthCalendar.cs: Uncomment block, as Capture is now
18219         working. Update to new double buffering
18220         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
18221         * PaintEventArgs.cs: New internal method allows us to set the
18222         graphics object. This is used for double buffering.
18223         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
18224         rectangle. The internal paint_area var has been removed from
18225         StatusBar. The clipping rect should be used instead.
18226         * Theme.cs: Give the PictureBox drawing method a clipping rect.
18227         * TabPage.cs: The RefreshTabs method was removed, so just call the
18228         tab controls Refresh method now.
18229         * TabControl.cs: Update to new double buffering. Make sure the
18230         handle is created before sizing the tab pages, otherwise we will
18231         get stuck in a loop.
18233 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
18235         * LinkLabel.cs: Fix typo, bug #74719; patch
18236           from Borja Sanchez Zamorano
18238 2005-04-22  Jackson Harper  <jackson@ximian.com>
18240         * TreeNode.cs: Implement Handle stuff.
18241         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
18243 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
18245         * DataGridTextBoxColumn.cs: call base constructors, fixes
18246         * GridColumnStylesCollection.cs: missing events, methods, and functionality
18247         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
18248         * DataGridTableStyle.cs: implements create default column styles
18249         * DataGridBoolColumn.cs: which types can handle
18250         * DataGrid.cs: missing methods, fixes, new functionality
18251         * DataGridColumnStyle.cs: fixes
18253 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
18254         * FolderBrowserDialog.cs:
18255         - Use a thread to fill the TreeView
18256         - Adjusted some sizes
18258 2005-04-19  Peter Bartok  <pbartok@novell.com>
18260         * LinkLabel.cs: (Re-)create the pieces when setting the Text
18261           property. Fixes #74360.
18263 2005-04-19  Jackson Harper  <jackson@ximian.com>
18265         * XEventQueue.cs: Lock when getting the lockqueue size.
18266         * PictureBox.cs: Call base OnPaint
18267         
18268 2005-04-19  Peter Bartok  <pbartok@novell.com>
18270         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
18271           messages were no longer being processed (this broke BeginInvoke)
18273           
18274 2005-04-18  Jackson Harper  <jackson@ximian.com>
18276         * TreeView.cs: buglet that caused node images to get drawn
18277         regardless of whether or not they were in the clipping rectangle.
18279 2005-04-18  Jackson Harper  <jackson@ximian.com>
18281         * CurrencyManager.cs: There are four rules for GetItemProperties:
18282         - If the type is an array use the element type of the array
18283         - If the type is a typed list, use the type
18284         - If the list contains an Item property that is not an object, use
18285         that property
18286         - use the first element of the list if there are any elements in
18287         the list.
18288         
18289 2005-04-17  Jackson Harper  <jackson@ximian.oom>
18291         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
18292         click. This handles offsets for scrolling properly and reduces
18293         memory. Also fixed GetNode to not offset now that TopNode works
18294         properly.
18295         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
18296         
18297 2005-04-17  Jackson Harper  <jackson@ximian.com>
18299         * CursorConverter.cs: Initial implementation.
18301 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
18303         * ListControl.cs: work towards complex data binding support on ListControl
18304         * CurrencyManager.cs: work towards complex data binding support on ListControl
18305         * ListBox.cs: work towards complex data binding support on ListControl
18308 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
18310         * GridTableStylesCollection.cs: fixes name and constructor
18311         * DataGridTableStyle.cs: fixes
18312         * DataGridBoolColumn.cs: fixes names and constructors
18313         * DataGrid.cs: define methods and properties. Some init implementations
18314         * DataGridCell.cs: define methods and properties. Some init implementations
18315         * GridTablesFactory.cs: Define methods and properties
18317 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
18319         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
18320         graphics port changes.  We still want the coordinates in global screen
18321         coordinates.
18323 2005-04-14  Jackson Harper  <jackson@ximian.com>
18325         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
18326         check plus minus or checkbox clicks unless those features are enabled.
18328 2005-04-14  Jackson Harper  <jackson@ximian.com>
18330         * TreeView.cs: Add methods for setting the top and bottom visible
18331         nodes. TreeNode::EnsureVisible uses these methods.
18332         * TreeNode.cs: Implement EnsureVisible
18334 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
18336         * Form.cs: Pospone menu assignation if the window has not been created yet
18337         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
18338         size and position
18340 2005-04-12  Jackson Harper  <jackson@ximian.com>
18342         * TreeView.cs: Set the TopNode properly when scrolling
18343         occurs. This has the added benifit of reducing the amount of
18344         walking that needs to be done when drawing. Also removed an old
18345         misleading TODO.
18346         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
18347         
18348 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
18350         * Timer.cs: fixes interval setting when the timer is already enabled
18351         
18352 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
18354         * FolderBrowserDialog.cs: First approach
18356 2005-04-09  Peter Bartok  <pbartok@novell.com>
18358         * FolderBrowserDialog: Added
18360 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
18362         * LinkLabel.cs: move drawing code into the theme
18363         * ThemeWin32Classic.cs: drawing code and painting background bugfix
18364         * Theme.cs: define DrawLinkLabel method
18366 2005-04-05  Jackson Harper  <jackson@ximian.com>
18368         * BindingContext.cs: Use weak references so these bad actors don't
18369         stay alive longer then they need to.
18371 2005-04-05  Jackson Harper  <jackson@ximian.com>
18373         * ListControl.cs: Basic implementation of complex databinding.
18374         * ComboBox.cs:
18375         * ListBox.cs: Add calls to ListControl databinding methods.
18377 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
18379         * FileDialog.cs:
18380           - Don't change PopupButtonState to Normal when the
18381             PopupButton gets pressed several times.
18382           - Renamed ButtonPanel to PopupButtonPanel
18384 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
18386         * ColorDialog.cs: Use cached objects instead of creating them
18387         * LinkLabel.cs: Use cached objects instead of creating them
18388         * Splitter.cs: Use cached objects instead of creating them
18389         * FontDialog.cs: Use cached objects instead of creating them
18390         * PropertyGridView.cs: Use cached objects instead of creating them
18391         * MessageBox.cs: Use cached objects instead of creating them
18392         * FileDialog.cs: Use cached objects instead of creating them
18393         * ThemeWin32Classic.cs: Use cached objects instead of creating them
18394         * TreeView.cs: Use cached objects instead of creating them
18395         
18396 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
18398         * Control.cs: use Equals to compare the font since no == op
18399         * ScrollBar.cs: use Equals to compare the font since no == op
18401 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
18403         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
18405 2005-04-01  Jackson Harper  <jackson@ximian.com>
18407         * Binding.cs: Implement IsBinding.
18408         * BindingManagerBase.cs:
18409         * PropertyManager.cs:
18410         * CurrencyManager.cs: Add IsSuspended property.
18412 2005-04-01  Jackson Harper  <jackson@ximian.com>
18414         * Binding.cs: Had some IsAssignableFrom calls backwards.
18416 2005-04-01  Jackson Harper  <jackson@ximian.com>
18418         * Binding.cs: Handle null data members when pulling data.
18419         * PropertyManager.cs: Handle the data member being a property that
18420         does not exist.
18422 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
18424         * DataGridTextBoxColumn.cs: fixes signature
18425         * DataGrid.cs: calls right constructor
18427 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
18429         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
18430         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
18431         * GridTableStylesCollection.cs: implements GridTableStylesCollection
18432         * DataGridTableStyle.cs: implements DataGridTableStyle
18433         * DataGridBoolColumn.cs: implements DataGridBoolColumn
18434         * DataGridTextBox.cs: implements DataGridTextBox
18435         * DataGridColumnStyle.cs: implements DataGridColumnStyle
18437 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
18439         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
18441 2005-03-29  Peter Bartok  <pbartok@novell.com>
18443         * Application.cs:
18444           - Properly implemented CompanyName property
18445           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
18446             returns a path that includes CompanyName, ProductName and
18447             Version (fixes bug #70330)
18449 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
18451         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
18452           fixes bug #72588.
18454 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
18456         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
18457         
18458           - Added ReadOnly CheckBox
18459           - Further refactoring: moved some code from Open-/SaveFileDialog
18460             to FileDialog
18462 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
18464         * OpenFileDialog.cs: Fixed CheckFileExists
18465         * FileDialog.cs:
18466           Moved FileView and DirComboBox outside FileDialog class.
18467           They can now be used outside FileDialog
18469 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
18471         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
18472         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
18474 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
18476         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
18477           - Added missing CreatePrompt property in SaveDialog
18478           - Overall SaveDialog handling should be better now
18479           - Added non standard ShowHiddenFiles property
18480           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
18481           - Added InitialDirectory and RestoreDirectory support
18483 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
18485         * FileDialog.cs: Made dirComboBox usable
18487 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
18489         * FileDialog.cs: Added Filter support (case sensitiv)
18491 2005-03-24  Jackson Harper  <jackson@ximian.com>
18493         * TabControl.cs: Need a couple more pixels for the lines.
18495 2005-03-23  Jackson Harper  <jackson@ximian.com>
18497         * TabControl.cs: Give the tab page focus when it is selected.
18499 2005-03-23  Jackson Harper  <jackson@ximian.com>
18501         * TabControl.cs: Account for the drawing of tabs borders when
18502         invalidating. If the slider was clicked dont do click detection on
18503         the tabs.
18505 2005-03-23  Jackson Harper  <jackson@ximian.com>
18507         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
18509 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
18511         * CategoryGridEntry.cs: Added
18512         * GridItem.cs: Added helper properties
18513         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
18514         * GridEntry.cs: Updated code for collection
18515         * PropertyGrid.cs: Cleaned up some formatting
18516         * PropertyGridView.cs: Added drop down functionality for enums.
18517         * GridItemCollection.cs: Added enumerator logic
18518         * PropertyGridEntry.cs: Added
18520 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
18522         * FileDialog.cs:
18523           - Removed unnecessary commented code
18524           - Fixed handling for entering the filename manually in the combobox
18526 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
18528         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
18530 2005-03-18  Peter Bartok  <pbartok@novell.com>
18532         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
18533           them being touching the border
18535 2005-03-18  Peter Bartok  <pbartok@novell.com>
18537         * TextControl.cs: Quick hack to center text better
18539 2005-03-18  Peter Bartok  <pbartok@novell.com>
18541         * ControlPaint.cs:
18542           - Don't throw NotImplemented exceptions, just print a notice once
18543             instead (requested by Miguel). This makes running existing SWF
18544             apps a bit easier
18545         * Control.cs:
18546           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
18547           - Added context menu trigger on right click
18548         * Panel.cs: Trigger invalidate on resize
18549         * StatusBar.cs:
18550           - Removed old double-buffer drawing
18551           - Added ResizeRedraw style to force proper update of statusbar
18552         * ListView.cs:
18553           - Removed debug output
18554         * ThemeWin32Classic.cs:
18555           - Fixed drawing of status bar, now draws Text property if there
18556             are no defined panels
18558 2005-03-18  Jackson Harper  <jackson@ximian.com>
18560         * ImageList.cs: When the image stream is set pull all the images
18561         from it.
18562         * ImageListStreamer.cs: Implement reading image list streams.
18564 2005-03-18  Peter Bartok  <pbartok@novell.com>
18566         * ThemeWin32Classic.cs (DrawPictureBox):
18567           - Fixed calculations for centered drawing
18568           - Fixed drawing for normal mode, not scaling the image on normal
18570 2005-03-18  Peter Bartok  <pbartok@novell.com>
18572         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
18573           textbox
18574         * FileDialog.cs:
18575           - Made Open/Save button the accept button for FileDialog
18576           - Tied the cancel button to the IButtonControl cancel button
18577           - Save/Open now properly builds the pathname
18578           - Now handles user-entered text
18579           - Preventing crash on right-click if no item is selected
18580           - Fixed Text property, now uses contents of textbox
18581           - Fixed SelectedText property, now just returns the text part that
18582             is selected in the text box
18584 2005-03-18  Jackson Harper  <jackson@ximian.com>
18586         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
18587         rect, make sure to de-adjust the interior rect after drawing the
18588         tab text.
18590 2005-03-18  Peter Bartok  <pbartok@novell.com>
18592         * MenuAPI.cs: Remove menu *before* executing selected action to
18593           prevent the menu from 'hanging around'
18594           
18595 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
18597         * XplatUIOSX.cs: Implemented WorkingArea property
18599 2005-03-17  Peter Bartok  <pbartok@novell.com>
18601         * XplatUIX11.cs: Fixed menu coord calculations
18602         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
18603           for calculating offsets
18605 2005-03-17  Peter Bartok  <pbartok@novell.com>
18607         * Hwnd.cs: Do not consider menu presence for default client
18608           rectangle location/size
18609         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
18610           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
18611           translation functions
18612         * FileDialog.cs: Fixed (what I presume is a) typo
18614 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
18616         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
18617           X access (avoids X-Async errors)
18619 2005-03-16  Jackson Harper  <jackson@ximian.com>
18621         * TabControl.cs: Raise the SelectedIndexChanged event.
18623 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
18625         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
18626           - Removed vertical ToolBar and replaced it with a custom panel
18627             (desktop and home button already work)
18628           - Added Help button (some controls get resized or relocated then)
18629           - Draw correct text depending on Open or Save.
18630           - Fixed some typos...
18632 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
18634         * ScrollBar.cs:
18635           - Only change Maximum and Minimum when need it (bug fix)
18637 2005-03-15  Peter Bartok  <pbartok@novell.com>
18639         * Form.cs: Use Handle for icon, to trigger creation if
18640           the window does not yet exist
18641         * Control.cs:
18642           - CanSelect: Slight performance improvement
18643           - Focus(): Preventing possible recursion
18644           - Invalidate(): Removed ControlStyle based clear flag setting
18645           - WM_PAINT: fixed logic for calling OnPaintBackground
18646           - WM_ERASEBKGND: Fixed logic, added call to new driver method
18647             EraseWindowBackground if the control doesn't paint background
18648         * XplatUIWin32.cs:
18649           - Moved EraseWindowBackground() method to internal methods
18650           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
18651             is sent via SendMessage on BeginPaint call on Win32
18652         * XplatUIX11.cs:
18653           - Added EraseWindowBackground() method
18654           - No longer sends WM_ERASEBKGND on .Expose, but on call to
18655             PaintEventStart, which more closely matches Win32 behaviour
18656           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
18657           - Fixed SetFocus() to properly deal with client and whole windows
18658         * Hwnd.cs: Added ErasePending property
18659         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
18660         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
18662 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
18664         * XplatUIOSX.cs:
18665           - Fix hard loop when timers exist.
18666           - Fix bugs with middle and right click for 3 button mice.
18668 2005-03-11  Peter Bartok  <pbartok@novell.com>
18670         * XplatUIX11.cs:
18671           - get_WorkingArea: Need to call X directly, GetWindowPos only
18672             returns cached data now
18673           - Added sanity check to GetWindowPos hwnd usage
18675 2005-03-11  Jackson Harper  <jackson@ximian.com>
18677         * BindingManagerBase.cs: This method isn't used anymore as
18678         PullData now updates the data in the control.
18680 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
18682         * Form.cs: fixes menu drawing on X11
18683         * MenuAPI.cs:  fixes menu drawing on X11
18685 2005-03-11  Peter Bartok  <pbartok@novell.com>
18687         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
18688           from Jonathan Gilbert; should fix bug #73606
18689         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
18690           in Screen coordinates. Thanks, Jordi.
18691         * Form.cs: Added missing attribute
18693 2005-03-11  Peter Bartok  <pbartok@novell.com>
18695         * Form.cs:
18696           - Rudimentary Mdi support
18697           - Removed outdated FormParent code
18698           - Implemented lots of missing properties and methods, still missing
18699             transparency support
18700           - Added missing attributes
18701           - Implemented support for MaximumBounds
18702           - Added firing of various events
18703         * XplatUI.cs: Added SetIcon() method
18704         * XplatUIDriver.cs: Added SetIcon() abstract
18705         * XplatUIOSX.cs: Stubbed out SetIcon() method
18706         * XplatUIX11.cs:
18707           - Implemented SetIcon() support
18708           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
18709           - Switched to unix line endings
18710         * XplatUIWin32.cs:
18711           - Made POINT internal so for can access it as part of MINMAX
18712           - Implemented SetIcon() support
18713           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
18714             native Mdi support again, might have to go managed)
18715         * Control.cs: Now fires the StyleChanged event
18716         * MdiClient.cs: Added; still mostly empty
18718 2005-03-10  Peter Bartok  <pbartok@novell.com>
18720         * SaveFileDialog.cs: Added emtpy file
18722 2005-03-08  Peter Bartok  <pbartok@novell.com>
18724         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
18725           in turn triggers OnCreateContro) when creating a handle for the
18726           first time.
18727         * TextControl.cs: Fixed endless loop in certain cases when
18728           replacing the current selection
18730 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
18732         * ScrollBar.cs:
18733           - Honors NewValue changes in Scroll events allowing apps to change it
18734           - Adds First and Last Scroll events
18735           - Fixes Thumb events
18737 2005-03-07  Peter Bartok  <pbartok@novell.com>
18739         * Hwnd.cs: Added DefaultClientRectangle property
18740         * XplatUI.cs: Now using the X11 driver Where() method, which provides
18741           more detailed debug information
18742         * XplatUIX11.cs:
18743           - Fixed size-change feedback loop, where we would pull an old size
18744             off the queue and mistakenly change our window's size to an
18745             earlier value
18746           - Now compressing ConfigureNotify events, to reduce looping and
18747             redraw issues
18748         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
18749           is called
18751 2005-03-07  Jackson Harper  <jackson@ximian.com>
18753         * Binding.cs: Push data pushes from data -> property. Check if the
18754         property is readonly when attempting to set it.
18756 2005-03-07  Jackson Harper  <jackson@ximian.com>
18758         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
18759         instead of IsSubclassOf. Pulling data now sets the value on the
18760         control.
18761         * PropertyManager.cs:
18762         * CurrencyManager.cs: Just need to pull data when updating now,
18763         because PullData will set the value on the control.
18765 2005-03-04  Jackson Harper  <jackson@ximian.com>
18767         * Binding.cs: Implement data type parsing and converting on pulled
18768         data. TODO: Are there more ways the data can be converted?
18770 2005-03-04  Jackson Harper  <jackson@ximian.com>
18772         * Binding.cs: Support <Property>IsNull checks. Also bind to the
18773         controls Validating method so we can repull the data when the
18774         control loses focus.
18776 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
18778         * ColumnHeader.cs:
18779           - Fixes null string format
18780           
18781         * ListView.cs:
18782           - Adds enum type checks
18783           - Fixes redrawing and recalc need after changing some properties
18784           - Fixes on focus_item set after the event
18785           - Fixes adding columns after the control has been created
18786           
18787         * ThemeWin32Classic.cs:
18788           - Fixes CheckBox focus rectangle
18789           - Fixes ColumnHeader drawing
18792 2005-03-03  Jackson Harper  <jackson@ximian.com>
18794         * Binding.cs: Bind to <Property>Changed events so we can detect
18795         when properties are changed and update the data.
18797 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
18799         * ImageList.cs:
18800           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
18801           - Fixes ImageList constructor with ImageList container
18802           - Fixes image scaling (wrong parameters at DrawImage)
18804 2005-02-02  Jackson Harper  <jackson@ximian.com>
18806         * Binding.cs: Make property searches case-insensitive. Eliminate
18807         some duplicated code.
18809 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
18811         * ComboBox.cs:
18812                 - Handle focus event
18813                 - Fix scrollbar events
18814                 - Discard highlighted item if remove it
18815                 - Fixes SelectedItem with strings
18817 2005-03-01  Peter Bartok  <pbartok@novell.com>
18819         * Control.cs:
18820           - Fixed Visible property, now follows (once again) parent chain
18821             to return false if any control in the chain is visible=false
18822           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
18823           - Fixed several places where is_visible instead of Visible was used
18824           - Implemented FIXME related to focus selection when setting focused
18825             control to be invisible
18827         * XplatUIWin32.cs: Now using proper method to find out if window is
18828           visible. Thanks to Jordi for pointing it out
18830 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
18832         * ComboBox.cs: show/hide scrollbar instead of creating it
18834 2005-02-27  Jackson Harper  <jackson@ximian.com>
18836         * CurrencyManager.cs: Add PositionChanged stuff.
18838 2005-02-27  Peter Bartok  <pbartok@novell.com>
18840         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
18841         * XplatUIOSX.cs: Added GetMenuOrigin() stub
18842         * XplatUIWin32.cs: Implemented GetMenuOrigin()
18843         * XplatUIX11.cs:
18844           - Implemented GetMenuDC()
18845           - Implemented GetMenuOrigin()
18846           - Implemented ReleaseMenuDC()
18847           - Implemented generation of WM_NCPAINT message
18848           - Implemented generation and handling of WM_NCCALCSIZE message
18849         * Form.cs: Added debug helper message for Jordi's menu work
18850         * Hwnd.cs:
18851           - Modified ClientRect property; added setter, fixed getter to handle
18852             setting of ClientRect
18853           - Added MenuOrigin property
18855 2005-02-26  Peter Bartok  <pbartok@novell.com>
18857         * XplatUIX11.cs:
18858           - Destroys the caret if a window that's being destroyed contains it
18859           - Ignores expose events coming from the X11 queue for windows that
18860             already are destroyed
18861           - Now uses the proper variable for handling DestroyNotify, before we
18862             marked the wrong window as destroyed
18863           - Improved/added some debug output
18865 2005-02-26  Peter Bartok  <pbartok@novell.com>
18867         * X11Keyboard.cs: Fixes to work on 64bit systems
18869 2005-02-26  Peter Bartok  <pbartok@novell.com>
18871         * Control.cs:
18872           - Now calling OnHandleDestroyed from DestroyHandle()
18873             instead of Dispose()
18874           - Removed bogus call to controls.Remove() from DestroyHandle()
18876 2005-02-26  Peter Bartok  <pbartok@novell.com>
18878         * Control.cs: Properly destroy child windows when our handle is
18879           destroyed
18881 2005-02-25  Peter Bartok  <pbartok@novell.com>
18883         * XplatUI.cs:
18884           - Added 'DriverDebug' define to allow tracing XplatUI API calls
18885           - Alphabetized Static Methods and Subclasses
18887         * XplatUIX11.cs:
18888           - Added XException class to allow custom handling of X11 exceptions
18889           - Created custom X11 error handler, tied into XException class
18890           - Added support for MONO_XEXCEPTIONS env var to allow the user
18891             to either throw an exception on X errors or continue running
18892             after displaying the error
18893           - Added handling of DestroyNotify message
18894           - Added handler for CreateNotify message (still disabled)
18895           - Improved (tried to at least) Where method to provide file and lineno
18896         * X11Structs.cs:
18897           - Added XErrorHandler delegate
18898           - Added XRequest enumeration (to suppor translation of errors)
18900 2005-02-25  Jackson Harper  <jackson@ximian.com>
18902         * PropertyManager.cs: Implement editing features
18903         * CurrencyManager.cs:
18904         * Binding.cs: First attempt at UpdateIsBinding
18905         * BindingManagerBase.cs: Call UpdateIsBinding before
18906         pushing/pulling data.
18908 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
18910         * MenuAPI.cs: Respect disabled items
18911         * ThemeWin32Classic.cs
18912                 - Caches ImageAttributes creation for DrawImageDisabled
18913                 - Fixes vertical menu line drawing
18914                 - Draws disabled arrows in disable menu items
18916 2005-02-24  Peter Bartok  <pbartok@novell.com>
18918         * Hwnd.cs:
18919           - Added UserData property to allow associating arbitrary objects
18920             with the handle
18921           - Fixed leak; now removing Hwnd references from static windows array
18922         * XplatUIWin32.cs:
18923           - Fixed Graphics leak in PaintEventEnd
18924           - Removed usage of HandleData, switched over to Hwnd class
18925         * HandleData.cs: Removed, obsoleted by Hwnd.cs
18927 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
18929         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
18930         * ScrollBar.cs: Fixes bug
18931         * TrackBar.cs: removes death code, clipping, mimize refreshes,
18932          keyboard navigation enhancements
18934 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
18936         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
18937         * GroupBox.cs: Add control styles
18938         * Label.cs: Add control styles
18939         * UpDownBase.cs: Add control styles
18940         * ListBox.cs: Add control styles
18941         * XplatUIWin32.cs: Fixes wrong parameter order
18944 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
18946         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
18948 2005-02-23  Jackson Harper  <jackson@ximian.com>
18950         * PropertyManager.cs: Implement property binding. This doesn't
18951         seem to work yet though as (I think) there are some bugs in
18952         System.ComponentModel.PropertyDescriptor.
18953         * BindingContext.cs: Use new PropertyManager constructor.
18955 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
18957         * ProgressBar.cs: use clip region in ProgressBar
18958         * ThemeWin32Classic.cs: use clip region in ProgressBar
18960 2004-02-22  Jackson Harper  <jackson@ximian.com>
18962         * BindingsCollection.cs: Remove some debug code.
18964 2005-02-22  Jackson Harper  <jackson@ximian.com>
18966         * BindingContext.cs:
18967         * ControlBindingsCollection.cs:
18968         * CurrencyManager.cs:
18969         * Binding.cs:
18970         * BindingManagerBase.cs: Initial implementation
18971         * BindingsCollection.cs: Add an internal contains method that the
18972         BindingManagerBase uses to ensure bindings aren't added twice to
18973         the collection.
18974         * PropertyManager.cs: Stubbed out.
18975         * Control.cs:
18976         * ContainerControl.cs: Hook up databinding
18977         
18978 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
18980         * XplatUIOSX.cs:
18981           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
18982           Fixed Invalidate/Update chain.
18983           Fixed tons of other minor bugs (this is almost a complete rewrite).
18985 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
18987         * ComboBox.cs: do subcontrol creation when the control is created
18989 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
18991         * Label.cs: fixes image drawing (image and imagelist)
18992         * ThemeWin32Classic.cs: cache brushes
18993         
18994 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
18996         * Form.cs: Move menu drawing code to Theme class
18997         * ComboBox.cs: Move ComboBox drawing code to Theme class
18998         * MenuItem.cs: Move menu drawing code to Theme class
18999         * MenuAPI.cs: Move menu drawing code to Theme class
19000         * ThemeWin32Classic.cs: New methods
19001         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
19002         * ListBox.cs: Move Listbox drawing code to Theme class
19003         * Theme.cs: New methods
19005 2005-02-20  Peter Bartok  <pbartok@novell.com>
19007         * Control.cs:
19008           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
19009             only process mnemonics on those)
19010           - Fixed event sequence for key handling; first calling
19011             ProcessKeyEventArgs now
19012         * TextBoxBase.cs:
19013           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
19014             for processing non-character keys
19015           - Fixed WM_CHAR to generate proper event sequence before processing
19016         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
19017           generation
19019 2005-02-19  Peter Bartok  <pbartok@novell.com>
19021         * UserControl.cs: Added TextChanged event; added attributes
19022         * SizeGrip.cs: Implemented resizing and optional display of grip
19023         * Form.cs: Fixed attribute
19024         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
19025           Changed meaning of ScrollWindow bool argument; instead of the
19026           clear attribute (which will be true usually anyway), it gives the
19027           option of moving child controls as well.
19028         * XplatUIX11.cs:
19029           - Changed to match new ScrollWindow argument
19030           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
19031             now handles the implicit parent window a WM puts around us
19032         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
19033           to work)
19034         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
19035         * TreeView.cs: Adjusted to new ScrollWindow arguments
19037 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
19039         * Form.cs: Menu integration with non-client area
19040         * MenuItem.cs: Menu integration with non-client area
19041         * MenuAPI.cs: Menu integration with non-client area
19043 2005-02-18  Peter Bartok  <pbartok@novell.com>
19045         * MethodInvoker.cs: Added
19046         * MdiLayout.cs: Added
19047         * SendKeys.cs: Started implementation
19048         * ErrorIconAlignment.cs: Added
19050 2005-02-18  Peter Bartok  <pbartok@novell.com>
19052         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
19053         * Form.cs: Added handling for Menu-related Non-client messages
19055 2005-02-17  Peter Bartok  <pbartok@novell.com>
19057         * UpDownBase.cs: Fixed typo, compilation errors
19058         * DomainUpDown.cs: Fixed attribute value
19060 2005-02-16  Miguel de Icaza  <miguel@novell.com>
19062         * UpDownBase.cs: Attach entry events.
19063         Propagate events.
19064         Add ForeColor property, Focused, InterceptArrowKeys (interception
19065         does not work yet).
19067 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
19069         * Form.cs:
19070                 - Redraw non client are on Setmenu
19071                 - Calc proper menu starting point
19073 2005-02-17  Peter Bartok  <pbartok@novell.com>
19075         * Application.cs: Fixed message_filter check
19077 2005-02-17  Peter Bartok  <pbartok@novell.com>
19079         * Application.cs: Now calls registered message filters
19080         * DockStyle.cs: Fixed attribute
19081         * Form.cs: Fixed attribute
19082         * Menu.cs: Fixed attribute
19083         * ToolTip.cs: Fixed attribute
19084         * TreeNode.cs: Added missing attributes and arranged in regions
19085         * PropertyGrid.cs: Fixed signatures
19086         * TreeNodeCollection.cs: Added attributes
19087         * Splitter.cs: Added missing attributes; arranged into regions
19088         * TabPage.cs: Added missing attributes; arranged into regions
19089         * TextBoxBase.cs: Added missing attributes
19090         * TextBox.cs: Added missing attributes
19091         * ArrangeDirection.cs: Added missing attributes
19092         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
19093         * ToolBarButton.cs: Fixed attributes
19094         * AnchorStyles.cs: Fixed attribute
19095         * TrackBar.cs: Fixed attributes
19096         * TabControl.cs: Added missing attributes and arranged into regions
19097         * ToolBar.cs: Fixed attribute
19098         * StatusBar.cs: Fixed signature, organized into regions and added
19099           attributes
19100         * StatusBarPanel.cs: Fixed attributes
19101         * ContentsResizedEventArgs.cs: Implemented
19102         * ContentsResizedEventHandler.cs: Implemented
19103         * DateBoldEventArgs.cs: Implemented
19104         * DateBoldEventHandler.cs: Implemented
19105         * UpDownEventArgs.cs: Implemented
19106         * UpDownEventHandler.cs: Implemented
19107         
19108 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
19110         * Form.cs: first Menu NC refactoring
19111         * MenuAPI.cs: first Menu NC refactoring
19112         
19113 2005-02-16  Peter Bartok  <pbartok@novell.com>
19115         * ImeMode.cs: Added missing attributes
19116         * Menu.cs: Fixed attribute
19117         * GroupBox.cs: Fixed attribute
19118         * Label.cs: Fixed attribute
19119         * ColorDialog.cs (RunDialog): Removed TODO attribute
19120         * ComboBox.cs: Fixed attributes
19121         * ListControl.cs: Added missing attributes
19122         * PropertyGrid.cs: Fixed attributes
19123         * Control.cs: Fixed attributes
19124         * ListViewItem.cs: Added TypeConverter attribute
19125         * NotifyIcon.cs: Fixed attributes
19126         * ListView.cs: Fixed attributes
19127         * ButtonBase.cs: Fixed attribute
19128         * ImageList.cs: Added missing attributes
19129         * ContainerControl.cs: Fixed signature
19130         * CheckedListBox.cs: Fixed attribute; added missing attributes
19131         * Panel.cs: Fixed attributes
19132         * PropertyTabChangedEventArgs.cs: Added missing attribute
19133         * PropertyValueChangedEventArgs.cs: Added missing attribute
19134         * Binding.cs: Fixed attribute
19135         * ListViewItemConverter: Implemented ListViewSubItemConverter class
19136         * ListBox.cs: Fixed attribute; added missing attributes;
19137         * ScrollableControl.cs: Added missing attributes
19138         * PictureBox.cs: Added missing attributes; implemented missing property
19139         * DateTimePicker.cs: Added missing attributes
19140         * Theme.cs (ToolWindowCaptionHeight): Fixed type
19141         * MonthCalendar.cs: Fixed attributes
19142         * StatusBarPanel.cs: Added missing attributes
19143         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
19145 2005-02-16  Peter Bartok  <pbartok@novell.com>
19147         * TextBoxBase.cs: The previous method to enforce height yet remember
19148           the requested high was less than ideal, this is an attempt to do
19149           it better.
19150         * Control.cs: Added comment about possible problem
19151         * Copyright: Updated format
19152         * GridItemType.cs: Fixed swapped values
19154 2005-02-15  Jackson Harper  <jackson@ximian.com>
19156         * BaseCollection.cs: Use property so we never access an
19157         uninitialized list. Also initialize the list in the property.
19159 2005-02-15  Peter Bartok  <pbartok@novell.com>
19161         * GroupBox.cs (ProcessMnemonic): Implemented
19162         * Label.cs (ProcessMnemonic): Implemented
19163         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
19164           hotkeys
19166 2005-02-15  Peter Bartok  <pbartok@novell.com>
19168         * RadioButton.cs (ProcessMnemonic): Implemented
19169         * CheckBox.cs (ProcessMnemonic): Implemented
19170         * Control.cs:
19171           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
19172             handling
19173           - Added internal method to allow calling ProcessMnemonic from other
19174             controls
19175         * ContainerControl.cs:
19176           - Started support for handling validation chain handling
19177           - Implemented ProcessMnemonic support
19178           - Added Select() call to Active, to make sure the active control
19179             receives focus
19180         * Form.cs: Setting toplevel flag for Forms (this was lost in the
19181           FormParent rewrite)
19182         * ThemeWin32Classic.cs:
19183           - DrawCheckBox(): Fixed stringformat to show hotkeys
19184           - DrawRadioButton(): Fixed stringformat to show hotkeys
19185         * CommonDialog.cs: Removed WndProc override, not needed
19187 2005-02-14  Peter Bartok  <pbartok@novell.com>
19189         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
19190           missed those in the rewrite
19192 2005-02-14  Miguel de Icaza  <miguel@novell.com>
19194         * NumericUpDown.cs (Increment, ToString): Add.
19195         (DecimalPlaces): implement.
19196         
19197         Add attributes.
19198         
19199         * UpDownBase.cs: Add the designer attributes.
19201 2005-02-13  Peter Bartok  <pbartok@novell.com>
19203         * Panel.cs: Removed border_style, now in Control
19204         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
19205           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
19207 2005-02-13  Peter Bartok  <pbartok@novell.com>
19209         * MouseButtons.cs: Added missing attributes
19210         * XplatUIStructs.cs: Added enumeration for title styles
19211         * LeftRightAlignment.cs: Added missing attributes
19212         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
19213           it compatible with Graphics.FromHwnd()
19214         * SelectedGridItemChangedEventArgs.cs: Fixed property type
19215         * Keys.cs: Added missing attributes
19216         * SelectionRange.cs: Added missing attributes
19217         * SelectionRangeConverter.cs: Added
19218         * XplatUI.cs:
19219           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
19220             ReleaseMenuDC methods
19221           - Renamed ReleaseWindow to UngrabWindow
19222           - Added proper startup notice to allow version identification
19223         * Form.cs:
19224           - Added missing attributes
19225           - Removed FormParent concept
19226         * Label.cs: Removed border_style field, now in Control
19227         * RadioButton.cs: Now properly selects RadioButton when focus is
19228           received
19229         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
19230         * Control.cs:
19231           - Added missing attributes
19232           - Added borderstyle handling
19233           - Removed FormParent concept support
19234           - Fixed calls to XplatUI to match changed APIs
19235           - Fixed bug that would case us to use disposed Graphics objects
19236           - Removed unneeded internal methods
19237           - PerformLayout(): Fixed to handle DockStyle.Fill properly
19238           - SelectNextControl(): Fixed to properly check common parents
19239         * TextBoxBase.cs: Removed border_style field (now in Control)
19240         * MessageBox.cs:
19241           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
19242             fixed calculations for form size
19243           - Added support for localized strings and icons
19244           - Improved form size calculations, added border
19245         * ListView.cs: Removed border_style field (now in Control)
19246         * X11Structs.cs: Moved several structs from X11 driver here
19247         * X11Keyboard.cs: Changed debug message
19248         * Application.cs: Removed FormParent concept support
19249         * CommonDialog.cs:
19250           - Resetting end_modal flag
19251           - Removed FormParent concept support
19252         * NativeWindow.cs: Removed FormParent concept support
19253         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
19254           Client area and Non-Client whole window to allow support for WM_NC
19255           messages
19256         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
19257           prevent using it until it supports Hwnd as per Geoff Norton's request
19258         * ToolBar.cs: Fixed drawing, was not doing proper drawing
19259         * PictureBox.cs: Removed border_style field, now in Control
19260         * XplatUIWin32.cs: Added new driver methods
19262 2005-02-12  Peter Bartok  <pbartok@novell.com>
19264         * OpacityConverter.cs: Implemented
19265         * Hwnd.cs: Internal class to support drivers that need to emulate
19266           client area/non-client area window behaviour
19268 2005-02-11  Peter Bartok  <pbartok@novell.com>
19270         * KeysConverter.cs: Implemented
19272 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
19274         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
19275         * LinkLabel: Added missing attributes
19276         * MainMenu.cs: fixes ToString
19277         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
19278         * ListBox.cs: fixes event position
19279         * TrackBar.cs: adds missing attributes and events
19280         
19281 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
19283         * MenuItem.cs: Use SystemInformation and bug fixes
19284         * MenuAPI.cs: Use SystemInformation and bug fixes
19286 2005-02-09  Jackson Harper  <jackson@ximian.com>
19288         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
19289         their keystate otherwise things like VK_MENU get stuck "on".
19291 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
19293         * ListBox.cs: Fixes AddRange bug
19294         
19295 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
19297         * ProgressBar.cs
19298                 - Add missing attributes
19299                 - Add missing method
19300                 
19301         * CheckedListBox.cs: Added missing attributes
19302                 - Add missing attributes
19303                 - Remove extra method
19304         
19305         * ComboBox.cs: Added missing attributes
19306         * VScrollBar.cs: Added missing attributes
19307         * ScrollBar.cs:  Added missing attributes
19308         * ListBox.cs: Fixes signature, add missing consts
19309         * LinkArea.cs:   Added missing attributes
19310         
19312 2005-02-08  Peter Bartok  <pbartok@novell.com>
19314         * Menu.cs: Added missing attributes
19315         * MainMenu.cs: Added missing attributes
19316         * GroupBox.cs: Added missing attributes
19317         * Label.cs: Added missing attributes
19318         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
19319         * ColorDialog.cs:
19320           - Added Instance and Options properties
19321           - Added missing attributes
19322         * Cursor.cs: Made Serializable
19323         * NotifyIcon: Added missing attributes
19324         * MenuItem.cs: Added missing attributes
19325         * TextBoxBase.cs: Implemented AppendText() and Select() methods
19326         * Panel.cs: Added Missing attributes
19327         * MonthCalendar.cs: Fixed CreateParams
19329 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
19330         
19331         * LinkLabel.cs:
19332                 - Fixes signature
19333                 - Fixes issues with links
19334                 - Adds the class attributes
19336 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
19337         
19338         * ComboBox.cs:
19339                 - Fixes button when no items available in dropdown
19340                 - Fixes repainting problems
19341                 - Adds the class attributes
19342                 
19343 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
19345         * XplatUIOSX.cs: Detect the menu bar and title bar height from
19346         the current theme.  Cache these on startup.
19348 2005-02-07  Jackson Harper  <jackson@ximian.com>
19350         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
19351         the scrollbar buttons when they are depressed.
19353 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
19355         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
19356         Get the display size from the main displayid.  We currently dont
19357         support multiple display configurations.
19359 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
19361         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
19363 2005-02-07  Miguel de Icaza  <miguel@novell.com>
19365         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
19367 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
19369         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
19371 2005-02-04  Jackson Harper  <jackson@ximian.com>
19373         * ThemeWin32Classic.cs: Respect the clipping rect when
19374         drawing. Only fill the intersection of clips and rects so there
19375         isn't a lot of large fills.
19376         * ScrollBar.cs: Pass the correct clipping rect to the theme
19377         engine. Remove some debug code.
19379 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
19380         
19381         * DateTimePicker.cs:
19382                 - Fixed crash on DateTime.Parse, use Constructor instead
19384 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
19385         
19386         * MenuItem.cs:
19387         * MenuAPI.cs:
19388                 - Owner draw support (MeasureItem and DrawItem)
19390 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
19391         
19392         *  Menu.cs:
19393                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
19394                 - Fixes MenuItems.Add range
19395         * MenuItem.cs:
19396                 - MergeMenu and Clone and CloneMenu functions
19398 2005-02-03  Jackson Harper  <jackson@ximian.com>
19400         * ScrollBar.cs: Make abstract
19401         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
19402         is abstract.
19404 2005-02-03  Jackson Harper  <jackson@ximian.com>
19406         * ScrollBar.cs: First part of my scrollbar fixups. This removes
19407         all the unneeded refreshes and uses invalidates with properly
19408         computed rects.
19410 2005-02-03  Peter Bartok  <pbartok@novell.com>
19412         * ComponentModel.cs: Added
19413         * IDataGridEditingService.cs: Added
19414         * Timer.cs: Added missing attributes
19415         * ToolTip.cs: Added missing attributes
19417 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
19419         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
19421 2005-02-03  Peter Bartok  <pbartok@novell.com>
19423         * ListBox.cs: Added missing attributes
19425 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
19426         
19427         * ListBox.cs:
19428                 - Fixes font height after font change
19429                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
19430                 
19431 2005-02-02  Peter Bartok  <pbartok@novell.com>
19433         * HandleData.cs: Introduced static methods to allow class
19434           to be more self-contained and track it's own HandleData objects
19435         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
19436           HandleData to use new static methods
19438 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
19440         * Combobox.cs:
19441                 - Fixes default size and PreferredHeight
19442                 - Missing events
19443                 - ObjectCollection.Insert implementation
19444                 
19445         * ListControl.cs
19446                 - Fixes signature
19447         * ListBox.cs:
19448                 - Several fixes
19449                 - ObjectCollection.Insert implementation
19450                 - No selection after clean
19451                 - Small fixes
19453 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
19455         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
19457 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
19459         * Combobox.cs:
19460                 - Caches ItemHeight calculation for OwnerDrawVariable
19461                 - Handles dropdown properly
19462                 - Fixes several minor bugs
19464 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
19466         * ListBox.cs:
19467                 - Fixes 71946 and 71950
19468                 - Fixes changing Multicolumn on the fly
19469                 - Fixes keyboard navigation on Multicolumn listboxes
19471 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
19472         
19473         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
19474         crash reporter log.
19476 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
19478         * XplatUIOSX.cs: Allow applications to actually exit.
19480 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
19482         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
19483         their parent at creation time rather than lazily later.  Fixes a major
19484         regression we were experiencing.
19486 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
19488         * ThemeWin32Classic.cs: more date time picker painting fixes
19489         * DateTimePicker.cs: more monthcalendar drop down fixes
19490         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
19492 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
19494         * ScrollBar.cs:
19495                 - When moving the thumb going outside the control should stop the moving
19496                 - Adds the firing of missing events
19497                 - Fixes no button show if Size is not specified
19498                 - End / Home keys for keyboard navigation
19500 2005-01-30  Peter Bartok  <pbartok@novell.com>
19502         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
19503           sanity check to prevent theoretical loop
19504         * XplatUIWin32.cs (SetVisible): Removed debug output
19505         * XplatUIX11.cs (SystrayChange): Added sanity check
19506         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
19507         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
19508           behaviour, valid until the X11 client window rewrite is done
19509         * TextBox.cs (ctor): Setting proper default foreground and background
19510           colors
19512 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
19514         * Theme: Added DrawDateTimePicker to interface
19515         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
19516         * DateTimePicker.cs: Created (still needs keys and painting code)
19517         * DateTimePickerFormat.cs: added
19518         * MonthCalendar.cs: fixed CreateParams for popup window mode
19519           
19520 2005-01-29  Peter Bartok  <pbartok@novell.com>
19522         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
19523           this should also the calculations for ligher/darker
19524         * Theme.cs: Fixed defaults for ScrollBar widths/heights
19526 2005-01-29  Peter Bartok  <pbartok@novell.com>
19528         * ArrangeDirection.cs: Added
19529         * ArrangeStartingPositon.cs: Added
19530         * SystemInformation.cs: Implemented
19531         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
19532           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
19533           used by SystemInformation class
19534         * X11Strucs.cs: Added XSizeHints structure
19535         * MenuAPI.cs:
19536           - Fixed CreateParams to make sure the menu window is always visible
19537           - TrackPopupMenu: Added check to make sure we don't draw the
19538             menu offscreen
19540 2005-01-29  Peter Bartok  <pbartok@novell.com>
19542         * HandleData.cs: Added method for altering invalid area
19543         * TextBoxBase.cs: Implemented TextLength
19545 2005-01-28  Peter Bartok  <pbartok@novell.com>
19547         * XplatUIX11.cs: Improvement over last patch, not sending
19548           the WM_PAINT directly anymore, instead we scroll any pending
19549           exposed areas and let the system pick out the WM_PAINT later
19551 2005-01-28  Peter Bartok  <pbartok@novell.com>
19553         * SWF.csproj: Deleted, no longer used. Instead,
19554           Managed.Windows.Forms/SWF.csproj should be used
19555         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
19556           directly, to avoid a potential race condition with the next
19557           scroll
19559 2005-01-28  Peter Bartok  <pbartok@novell.com>
19561         * XplatUI.cs: Made class internal
19563 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
19565         * CheckedListBox.cs:
19566                 - Draw focus
19567                 - Fixed Drawing
19568                 - Missing methods and events
19570 2005-01-27  Peter Bartok  <pbartok@novell.com>
19572         * Application.cs (Run): Don't use form if we don't have one
19574 2005-01-27  Peter Bartok  <pbartok@novell.com>
19576         * TextBoxBase.cs (get_Lines): Fixed index off by one error
19578 2005-01-27  Peter Bartok  <pbartok@novell.com>
19580         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
19581         * GridItem.cs: Added; Patch by Jonathan S. Chambers
19582         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
19583         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
19584         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
19585         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
19586         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
19587         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
19588         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
19589         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
19590         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
19591         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
19593 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
19595         * Combobox.cs:
19596                 - Draw focus on Simple Combobox
19597                 - Fixes drawing issues
19598                 - fixes 71834
19600 2005-01-27  Peter Bartok  <pbartok@novell.com>
19602         * Form.cs:
19603           - Place window in default location, instead of hardcoded 0/0
19604           - Send initial LocationChanged event
19605         * Control.cs:
19606           - UpdateBounds after creation to find out where the WM placed us
19607           - Make sure that if the ParentForm changes location the Form
19608             is notified
19609         * XplatUIX11.cs: XGetGeometry will not return the coords relative
19610             to the root, but to whatever the WM placed around us.
19611             Translate to root coordinates before returning toplevel
19612             coordinates
19613         * XplatUIWin32.cs: Removed debug output
19614         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
19615           flag to GetWindowPos, to allow translation of coordinates on X11
19617 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
19619         * ListBox.cs: connect LostFocus Event
19621 2005-01-27  Peter Bartok  <pbartok@novell.com>
19623         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
19624           XplatUIX11.cs: Extended the Systray API
19625         * Form.cs: Removed debug output
19626         * Application.cs: Fixed focus assignment, always need to call
19627           XplatUI.Activate() since Form.Activate() has rules that may
19628           prevent activation
19629         * NotifyIcon.cs: Should be complete now
19630         * ToolTip.cs: Worked around possible timer bug
19632 2005-01-27  Jackson Harper  <jackson@ximian.com>
19634         * TabControl.cs:
19635         - Only invalidate the effected tabs when the
19636         selected index changes. This reduces drawing and gets rid of some
19637         flicker.
19638         - Only refresh if the tabs need to be shifted, otherwise only
19639         invalidate the slider button.
19640         - On windows the tabs are not filled to right if the slider is
19641         visible.
19642         
19643 2005-01-27  Jackson Harper  <jackson@ximian.com>
19645         * TabControl.cs: Only refresh on mouseup if we are showing the
19646         slider. Also only invalidate the button whose state has changed.
19648 2005-01-26  Peter Bartok  <pbartok@novell.com>
19650         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
19651         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
19652           and SystrayRemove() methods
19653         * XplatUIOSX.cs: Stubbed Systray methods
19654         * XplatUIX11.cs:
19655           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
19656             methods
19657           - Fixed broken XChangeProperty calls (marshalling messed up things)
19658         * X11Structs.cs: Added enums and structs required for Size hinting
19659         * NotifyIcon.cs: Added & implemented
19661 2005-01-26  Jackson Harper  <jackson@ximian.com>
19663         * TabControl.cs: Space vertically layed out tabs properly.
19665 2005-01-26  Peter Bartok  <pbartok@novell.com>
19667         * Form.cs (CreateClientParams): Always set the location to 0,0
19668           since we're a child window.
19670         * Control.cs (SetVisibleCore): Always explicitly setting the location
19671           of a toplevel window, apparently X11 doesn't like to move windows
19672           while they're not mapped.
19674 2005-01-26  Jackson Harper  <jackson@ximian.com>
19676         * TabControl.cs: Implement FillToRight size mode with vertically
19677         rendered tabs.
19679 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
19681         * ControlPaint.cs, ThemeWin32Classic.cs
19682                 - Fixes DrawFocusRectangle
19684 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
19686         * MenuAPI.cs:
19687                 - MenuBar tracking only starts when item is first clicked
19688                 - Fixes menu hidding for multiple subitems
19689                 - Unselect item in MenuBar when item Executed
19690                 - Fixes bug 71495
19692 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
19694         * ListControl.cs:
19695                 - IsInputKey for ListBox
19696         * ListBox.cs:
19697                 - Focus item
19698                 - Shift and Control item selection
19699                 - Implement SelectionMode.MultiExtended
19700                 - Fixes RightToLeft
19701         * ComboBox.cs:
19702                 - IsInputKey implemented
19703                 - Do not generate OnTextChangedEdit on internal txt changes
19704                 
19705 2005-01-23  Peter Bartok  <pbartok@novell.com>
19707         * AccessibleObject.cs: Partially implemented Select()
19708         * MonthCalendar.cs: Added missing attributes and events
19709         * Form.cs: Fixed CreateParams behaviour, now controls derived from
19710           form can properly override CreateParams.
19711         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
19712           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
19713           Control performs Invalidate & Update
19714         * NativeWindow (CreateHandle): Added special handling for Form
19715           and Form.FormParent classes to allow overriding of From.CreateParams
19716         * Control.cs:
19717           - ControlNativeWindow: Renamed 'control' variable to more intuitive
19718             name 'owner'
19719           - ControlNativeWindow: Added Owner property
19720           - Removed usage of Refresh() on property changes, changed into
19721             Invalidate(), we need to wait until the queue is processed for
19722             updates, direct calls might cause problems if not all vars for
19723             Paint are initialized
19724           - Added call to UpdateStyles() when creating the window, to set any
19725             styles that CreateWindow might have ignored.
19726           - Added support for Form CreateParent overrides to UpdateStyles()
19727         * MessageBox.cs: Removed no longer needed FormParent override stuff,
19728           CreateParams are now properly overridable
19729         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
19730           CreateParams are now properly overridable
19732 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
19734         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
19735         OnTextBoxChanged.
19737         Capture LostFocus and OnTextBoxChanged.  The later introduces a
19738         recursive invocation that I have not figured out yet.
19740         Reset the timer when not using (it was accumulating).
19743         (OnTextBoxChanged): Set UserEdit to true here to track whether the
19744         user has made changes that require validation.
19746         Reset changing to avoid loops.
19748 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
19750         * NumericUpDown.cs: Display value at startup.
19752         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
19753         ValidateEditText.
19755         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
19756         filled in.  Added some basic parsing of text.
19758         Still missing the OnXXX method overrides, and figuring out the
19759         events that must be emitted.
19761         * UpDownBase.cs: Handle UserEdit on the Text property.
19762         
19763 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
19765         * ComboBox.cs:
19766           - Fixes IntegralHeight
19767           - ToString method
19769 2005-01-21  Jackson Harper  <jackson@ximian.com>
19771         * TabControl.cs: Set the SelectedIndex property when SelectedTab
19772         is set so that the page visibility is updated and the tabs are
19773         sized correctly.
19775 2005-01-21  Jackson Harper  <jackson@ximian.com>
19777         * TabControl.cs: Use cliping rectangle for blitting. Give the
19778         theme the clipping rect so we can do clipping while
19779         drawing. Remove some debug code.
19781 2005-01-21  Jackson Harper  <jackson@ximian.com>
19783         * TabPage.cs: Add a new method so tab pages can force the tab
19784         control to recalculate the tab page sizes.
19785         * TabControl.cs: UpdateOwner needs to make the tab control recalc
19786         sizes.
19788 2005-01-20  Jackson Harper  <jackson@ximian.com>
19790         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
19792 2005-01-20  Jackson Harper  <jackson@ximian.com>
19794         * TreeView.cs: Set the bounds for nodes properly. They were
19795         getting screwed up when checkboxes were not enabled, but images
19796         were.
19798 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
19800         * ListBox.cs:
19801                 - Owner draw support
19802                 - Fixes
19803                 
19804 2005-01-20  Jackson Harper  <jackson@ximian.com>
19806         * XplatUIStructs.cs: More misc keys
19807         * X11Keyboard.cs: Ignore some control keys.
19809 2005-01-20  Jackson Harper  <jackson@ximian.com>
19811         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
19812         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
19814 2005-01-19  Peter Bartok  <pbartok@novell.com>
19816         * Control.cs: Un-selecting the control when it is loosing focus
19818 2005-01-19  Jackson Harper  <jackson@ximian.com>
19820         * TreeView.cs: Hook up to the text controls leave event so we can
19821         end editing when the users clicks outside the text box.
19822         
19823 2005-01-19  Jackson Harper  <jackson@ximian.com>
19825         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
19826         get set in the conversion array.
19828 2005-01-19  Peter Bartok  <pbartok@novell.com>
19830         * Application.cs (ModalRun): Added a call to CreateControl to ensure
19831           focus is properly set
19832         * Button.cs:
19833           - Added missing attributes
19834           - removed styles, those are already set in the base class
19835         * ButtonBase.cs:
19836           - Added missing attributes
19837           - Added clip window styles
19838         * CheckBox.cs: Added missing attributes
19839         * CommonDialog.cs:
19840           - FormParentWindow.CreateParams: Added required clip styles
19841         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
19842           also filters modifier keys
19843         * MessageBox.cs:
19844           - Added assignment of Accept and Cancel button to enable Enter
19845             and Esc keys in MessageBox dialogs
19846           - FormParentWindow.CreateParams: Added required clip styles
19847         * RadioButton.cs: Added missing attributes
19848         * TextControl.cs: No longer draws selection if control does not
19849           have focus
19850         * TextBoxBase.cs:
19851           - Now draws simple rectangle around test area to make it obvious
19852             there's a control. This is a hack until we properly support borders
19853           - A few simple fixes to support selections better, now erases selected
19854             text when typing, and resets selection when using movement keys
19856 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
19858         * UpDownBase.cs: Added some new properties.
19860         * DomainUpDown.cs: Implement a lot to get my test working.
19862 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
19864         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
19866 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
19868         * OSXStructs (WindowAttributes): Fixed csc complaints
19870 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
19872         * XplayUIOSX.cs:
19873           OSXStructs.cs: Initial refactor to move enums and consts into
19874           OSXStructs and use them in the driver for greater readability.
19876 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
19878         * XplatUIOSX.cs: Initial support for Standard Cursors.
19879         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
19881 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
19883         * ComboBox.cs: ability to change style when the ctrl is already
19884         created, missing methods and events, bug fixes, signature fixes
19886 2005-01-19  Peter Bartok  <pbartok@novell.com>
19888         * Cursors.cs (ctor): Added ctor to fix signature
19890 2005-01-18  Peter Bartok  <pbartok@novell.com>
19892         * Button.cs: Implemented DoubleClick event
19893         * ButtonBase.cs:
19894           - Fixed keyboard handling to behave like MS, where the press of
19895             Spacebar is equivalent to a mousedown, and the key release is
19896             equivalent to mouseup. Now a spacebar push will give the same
19897             visual feedback like a mouse click.
19898           - Added missing attributes
19899           - Added ImeModeChanged event
19900           - Added support for generating DoubleClick event for derived classes
19901         * CheckBox.cs:
19902           - Implemented DoubleClick event
19903           - Added missing attributes
19904         * CommonDialog.cs: Added missing attribute
19905         * ContextMenu.cs: Added missing attributes
19906         * RadioButton.cs:
19907           - AutoChecked buttons do not allow to be unselected when clicked
19908             (otherwise we might end up with no selected buttons in a group)
19909           - Added missing attributes
19910           - Implemented DoubleClickEvent
19911         * ThreadExceptionDialog.cs: Enabled TextBox code
19913 2005-01-18  Peter Bartok  <pbartok@novell.com>
19915         * Form.cs: Removed debug output
19916         * Button.cs: Added support for DoubleClick method
19918 2005-01-18  Peter Bartok  <pbartok@novell.com>
19920         * Form.cs:
19921           - Added method to parent window that allows triggering size
19922             calculations when a menu is added/removed
19923           - set_Menu: Cleaned up mess from early days of Form and Control,
19924             now properly triggers a recalc when a menu is added/removed
19925           - Added case to select form itself as focused form if no child
19926             controls exist
19927           - Added PerformLayout call when showing dialog, to ensure properly
19928             placed controls
19929         * Control.cs:
19930           - Select(): Made internal so Form can access it
19931           - Focus(): Only call Xplat layer if required (avoids loop), and sets
19932             status
19933         * Application.cs (Run): Removed hack and calls PerformLayout instead
19934           to trigger calculation when Form becomes visible
19936 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
19938         * ComboBox.cs: fixes for ownerdraw
19940 2005-01-18  Peter Bartok  <pbartok@novell.com>
19942         * TextControl.cs:
19943           - Sentinel is no longer static, each Document gets it's own, this
19944             avoids locking or alternatively overwrite problems when more
19945             than one text control is used simultaneously.
19946           - Switched to use Hilight and HilightText brushes for text selection
19948         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
19950 2005-01-18  Peter Bartok  <pbartok@novell.com>
19952         * Control.cs:
19953           - Hooked up the following events:
19954                 o ControlAdded
19955                 o ControlRemoved
19956                 o HandleDestroyed
19957                 o ImeModeChanged
19958                 o ParentChanged
19959                 o TabStopChanged
19960                 o Invalidated
19961                 o SystemColorsChanged
19962                 o ParentFontChanged
19963                 o Move
19964           - Removed debug output
19965           - Added a call to the current theme's ResetDefaults when a color change
19966             is detected
19967         * Form.cs: Now setting the proper ImeMode
19968         * Theme.cs: Defined a method to force recreation of cached resources
19969           and rereading of system defaults (ResetDefaults())
19970         * ThemeWin32Classic.cs: Added ResetDefaults() stub
19972 2005-01-17  Peter Bartok  <pbartok@novell.com>
19974         * Control.cs: Added missing attributes
19976 2005-01-17  Jackson Harper  <jackson@ximian.com>
19978         * TreeNode.cs: Implement editing. Add missing properties selected
19979         and visible.
19980         * TreeView.cs: Implement node editing. Also some fixes to use
19981         Invalidate (invalid area) instead of Refresh when selecting.
19983 2005-01-17  Peter Bartok  <pbartok@novell.com>
19985         * Control.cs:
19986           - Implemented InvokeGotFocus() method
19987           - Implemented InvokeLostFocus() method
19988           - Implemented InvokePaint() method
19989           - Implemented InvokePaintBackground() method
19990           - Implemented InvokeClick() method
19991           - Implemented FindForm() method
19992           - Implemented RectangleToClient() method
19993           - Implemented ClientToRectangle() method
19994           - Implemented ResetBackColor() method
19995           - Implemented ResetCursor() method
19996           - Implemented ResetFont() method
19997           - Implemented ResteForeColor() method
19998           - Implemented ResetImeMode() method
19999           - Implemented ResetLeftToRight() method
20000           - Implemented ResetText() method
20001           - Implemented Scale() methods
20002           - Implemented ScaleCore() method
20003           - Implemented Update() method
20004           - Removed unused variables
20005           - Stubbed AccessibilityNotifyClients and
20006             ControlAccessibleObject.NotifyClients() methods (dunno what to do
20007             with those yet)
20008           - Now setting proper default for RightToLeft property
20009           - Fixed bug in SetClientSizeCore that would cause windows to get
20010             really big
20011           - Now sending Click/DoubleClick events
20012           - Now selecting controls when left mouse button is clicked on
20013             selectable control
20014         * AccessibleEvents.cs: Added
20015         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
20016         * XplatUIOSX.cs: Stubbed UpdateWindow() method
20017         * XplatUIWin32.cs: Implemented UpdateWindow() method
20018         * XplatUIX11.cs: Implemented UpdateWindow() method
20019         * Form.cs: Removed stray semicolon causing CS0162 warning
20020         * ThemeWin32Classic.cs: Fixed unused variable warnings
20021         * ScrollableControl.cs: Now calls base method for ScaleCore
20022         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
20023           style to avoid interference with internal click handler (which is
20024           different than standard Control click handling)
20025         * RadioButton.cs:
20026           - Now unchecks all sibling radio buttons when control is
20027             selected (Fixes #68756)
20028           - Removed internal tabstop variable, using the one inherited from
20029             Control
20031 2005-01-17  Jackson Harper  <jackson@ximian.com>
20033         * NavigateEventArgs.cs: Fix base type.
20034         * LinkLabel.cs: Sig fix
20035         
20036 2005-01-17  Jackson Harper  <jackson@ximian.com>
20038         * TreeView.cs: Only invalidate the effected nodes bounds when
20039         selecting nodes.
20041 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
20043         * XplatUIWin32.cs: fixes Win32 marshaling
20044         * XplatUIX11.cs: fixes method signature
20046 2005-01-17  Peter Bartok  <pbartok@novell.com>
20048         * XplatUIX11.cs: Clean up resources when we no longer need them
20050 2005-01-17  Peter Bartok  <pbartok@novell.com>
20052         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
20053           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
20054           and DestroyCursor() methods.
20055         * Cursor.cs: Partially implemented, now supports standard cursors;
20056           still contains some debug code
20057         * Cursors.cs: Implemented class
20058         * Control.cs:
20059           - WndProc(): Added handling of WM_SETCURSOR message, setting the
20060             appropriate cursor
20061           - Implemented Cursor property
20062           - Replaced break; with return; more straightforwar and possibly
20063             faster
20064           - Now properly setting the result for WM_HELP
20065         * X11Structs.cs: Added CursorFontShape enum
20066         * XplatUIStructs.cs:
20067           - Added StdCursor enum (to support DefineStdCursor() method)
20068           - Added HitTest enum (to support sending WM_SETCURSOR message)
20069         * XplatUIX11.cs:
20070           - Now sends the WM_SETCURSOR message
20071           - Implemented new cursor methods
20072         * XplatUIOSX.cs: Stubbed new cursor methods
20073         * XplatUIWin32.cs:
20074           - Implemented new cursor methods
20075           - Added GetSystemMetrics function and associated enumeration
20077 2005-01-15  Peter Bartok  <pbartok@novell.com>
20079         * Control.cs:
20080           - WndProc(): Now handles EnableNotifyMessage
20081           - SelectNextControl(): Fixed bug where if no child or sibling
20082             controls exist we looped endlessly
20084 2005-01-14  Jackson Harper  <jackson@ximian.com>
20086         * TreeView.cs: Recalculate the tab pages when a new one is added
20087         so that the proper bounding rects are created.
20089 2005-01-14  Jackson Harper  <jackson@ximian.com>
20091         * TreeView.cs: Draw a gray box instead of a grip in the lower
20092         right hand corner when there are both horizontal and vertical
20093         scroll bars.
20095 2005-01-14  Jackson Harper  <jackson@ximian.com>
20097         * Control.cs: When erasing backgrounds use FromHwnd instead of
20098         FromHdc when there is a NULL wparam. This occurs on the X driver.
20099         * XplatUIX11.cs: Set the wparam to NULL.
20101 2005-01-13  Jackson Harper  <jackson@ximian.com>
20103         * PictureBox.cs: Implement missing methods (except ToString, need
20104         to test that on windows) and events. When visibility is changed we
20105         need to redraw the image because the buffers are killed. When size
20106         is changed refresh if the sizemode needs it.
20108 2005-01-13  Peter Bartok  <pbartok@novell.com>
20110         * Control.cs (SelectNextControl): Was using wrong method to select
20111           a control
20113 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
20115         * ComboBox.cs: fixes dropstyle
20117 2005-01-13  Peter Bartok  <pbartok@novell.com>
20119         * Form.cs:
20120           - Implemented Select() override
20121           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
20122           - Now sets keyboard focus on startup
20123         * Control.cs (SelectNextControl): Now properly handles directed=true
20124         * TextBoxBase.cs:
20125           - WndProc: Now passes tab key on to base if AcceptTabChar=false
20126           - Added (really bad) focus rectangle (mostly for testing)
20127         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
20128           to enforce redraw on focus changes
20129         * ContainerControl.cs:
20130           - Fixed detection of Shift-Tab key presses
20131           - Fixed traversal with arrow keys
20132         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
20133           gonna keep this or if it's complete yet
20134         
20135 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
20137         * ComboBox.cs: missing properties, fixes
20139 2005-01-13  Peter Bartok  <pbartok@novell.com>
20141         * Panel.cs (ctor): Setting Selectable window style to off
20142         * Splitter.cs (ctor): Setting Selectable window style to off
20143         * GroupBox.cs (ctor): Setting Selectable window style to off
20144         * Label.cs (ctor): Setting Selectable window style to off
20146 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
20148         * UpDownBase.cs (InitTimer): If the timer has been already
20149         created, enable it.
20151         Use a TextBox instead of a Label.
20153 2005-01-12  Jackson Harper  <jackson@ximian.com>
20155         * TreeView.cs: Refresh the tree after sorting the nodes. Always
20156         draw the connecting node lines (when ShowLines is true).
20157         * TreeNode.cs: The nodes index can now be updated. This is used
20158         when a node collection is sorted.
20159         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
20160         insert or an existing unsorted node collection can be sorted.
20161         
20162 2005-01-12  Peter Bartok  <pbartok@novell.com>
20164         * ContainerControl.cs: Implemented ProcessDialogKeys()
20166 2005-01-12  Peter Bartok  <pbartok@novell.com>
20168         * Control.cs:
20169           - Implemented SelectNextControl() method
20170           - Several focus related bug fixes
20171           - Fixed Docking calculations to match MS documentation and
20172             behaviour
20174 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
20176         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
20177         bug fixes
20179 2005-01-12  Peter Bartok  <pbartok@novell.com>
20181         * Control.cs:
20182           - Fixed broken Contains() method
20183           - Implemented GetNextControl() method. Finally. This is the pre-
20184             requisite for focus handling.
20186 2005-01-12  Peter Bartok  <pbartok@novell.com>
20188         * OSXStrucs.cs: Added
20190 2005-01-12  Peter Bartok  <pbartok@novell.com>
20192         * XplatUIWin32.cs:
20193           - Removed PeekMessageFlags
20194           - Implemented SetWindowStyle() method
20195         * XplatUIStructs.cs: Added PeekMessageFlags
20196         * X11Structs: Added missing border_width field to XWindowChanges struct
20197         * XplatUIX11.cs:
20198           - PeekMessage: Now throws exception if flags which are not yet
20199             supported are passed
20200           - Implemented SetWindowStyle() method
20201           - Fixed SetZOrder to handle AfterHwnd properly
20202         * XplatUI.cs: Added SetWindowStyle() method
20203         * XplatUIDriver.cs: Added SetWindowStyle() abstract
20204         * Control.cs:
20205           - Implemented UpdateStyles() method
20206           - Implemented UpdateZOrder() method
20207         * XplatUIOSX.cs: Added SetWindowStyle() stub
20209 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
20211         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
20212         button mouse).
20215 2005-01-11  Jackson Harper  <jackson@ximian.com>
20217         * TreeView.cs: Still need to draw lines to siblings even if out of
20218         the current node is out of the clip.
20220 2005-01-11  Jackson Harper  <jackson@ximian.com>
20222         * TreeView.cs: When setting the hbar/vbar/grip position use
20223         SetBounds so that perform layout is only called once. Also suspend
20224         and resume layout so layout is only done once for all controls.
20225         - Removed some debug fluff
20226         * SizeGrip.cs: Call base implmentation in overriding methods.
20227         - When visibility is changed the drawing buffers are killed so we
20228         need to redraw.
20230 2005-01-11  Jackson Harper  <jackson@ximian.com>
20232         * TreeView.cs: Calculate the open node count while drawing. This
20233         saves us an entire tree traversal for every paint operation. Use
20234         a member var for the open node count so less vars are passed around.
20236 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
20238         * MonthCalendar.cs:
20239         - fixed selection to use mousemove, not mouse polling on timer
20240         * ThemeWin32Classic.cs
20241         - removed redundant unused variable "no_more_content"
20242         
20243 2005-01-11  Peter Bartok  <pbartok@novell.com>
20245         * XplatUIX11.cs (DoEvents): Needs to return when no more events
20246           are pending, so it now calls PeekMessage instead of GetMessage;
20247           implemented a incomplete version of PeekMessage
20248         
20249 2005-01-11  Peter Bartok  <pbartok@novell.com>
20251         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
20252           I18n issues
20253         * TextBoxBase.cs: Added sending of TextChanged event
20255 2005-01-10  Jackson Harper  <jackson@ximian.com>
20257         * TreeView.cs: Try not to draw outside the clipping rectangle on
20258         each node element.
20260 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
20262         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
20264 2005-01-10  Jackson Harper  <jackson@ximian.com>
20266         * TreeView.cs:
20267         - Implement fast scrolling. Now only the newly
20268         exposed nodes are drawn and the old image is moved using the
20269         XplatUI::ScrollWindow method.
20270         - Factor in height of nodes when calculating whether or not the
20271         node is in the clipping rect.
20273 2005-01-10  Jackson Harper  <jackson@ximian.com>
20275         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
20277 2005-01-10  Peter Bartok  <pbartok@novell.com>
20279         * Application.cs: Added temporary hack to resolve all our resize
20280           required issues on startup. This will get fixed properly at
20281           some point in the future
20283 2005-01-10  Jackson Harper  <jackson@ximian.com>
20285         * SizeGrip.cs: New internal class that is used as a sizing
20286         grip control...hence the name.
20288 2005-01-10  Peter Bartok  <pbartok@novell.com>
20290         * Control.cs: Implemented proper TabIndex handling, now assigning
20291           a tabindex when a control is added to a container
20292         * GroupBox.cs (ctor): Now sets the Container style bit, required
20293           for Control.GetNextControl()
20295 2005-01-09  Jackson Harper  <jackson@ximian.com>
20297         * TextBoxBase.cs: Clear window when scrolling (fixes build).
20299 2005-01-09  Peter Bartok <pbartok@novell.com>
20301         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
20302           XplatUIX11.cs: Added ability to control ScrollWindow expose and
20303           an overload for ScrollWindow to allow only scrolling a rectangle
20305 2005-01-09  Peter Bartok <pbartok@novell.com>
20307         * Form.cs:
20308           - Implemented SetDesktopBounds method
20309           - Implemented SetDesktopLocation method
20311 2005-01-08  Jackson Harper  <jackson@ximian.com>
20313         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
20314         the node count has changed, this removes to VScroll::Refresh calls
20315         when drawing.
20317 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
20319         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
20321 2005-01-07  Jackson Harper  <jackson@ximian.com>
20323         * TreeNode.cs: Just update the single node when it is
20324         checked. Don't refresh after toggling, the Expand/Collapse already
20325         handles this.
20326         * TreeView.cs: Respect clipping a little more when drawing. Try
20327         not to redraw things that don't need to be redrawn. Just hide the
20328         scrollbars when they are no longer needed instead of removing
20329         them, so they don't have to be created again and again.
20330         
20331 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
20333         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
20334         coordinates to window space to place the caret properly, FIXED.
20335         Implement GetWindowState & SetWindowState
20337 2005-01-06  Peter Bartok <pbartok@novell.com>
20339         * Form.cs:
20340           - Implemented ClientSize property
20341           - Implemented DesktopBounds property
20342           - Implemented DesktopLocation property
20343           - Implemented IsRestrictedWindow property
20344           - Implemented Size property
20345           - Implemented TopLevel property
20346           - Implemented FormWindowState property
20347         * Control.cs:
20348           - Implemented GetTopLevel() method
20349           - Implemented SetTopLevel() method
20350         * X11Structs.cs (Atom):
20351           - Added AnyPropertyType definition
20352           - Added MapState definiton and updated XWindowAttribute struct
20353         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
20354         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
20355         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
20356         * XplatUIWin32.cs:
20357           - Implemented GetWindowState() and SetWindowState() methods
20358           - Fixed Win32GetWindowLong return type
20359         * XplatUIX11.cs:
20360           - Introduced central function for sending NET_WM messages
20361           - Implemented GetWindowState() and SetWindowState() methods
20362         * TextBoxBase.cs (set_Lines):
20363           - Now uses Foreground color for text added via Text property (Duh!)
20364           - Added code to remember programmatically requested size (fixes
20365             behaviour when Multiline is set after Size)
20366           - Added AutoSize logic
20368 2005-01-06  Jackson Harper  <jackson@ximian.com>
20370         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
20372 2005-01-06  Jackson Harper  <jackson@ximian.com>
20374         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
20375         set to less then 0.
20377 2005-01-06  Jackson Harper  <jackson@ximian.com>
20379         * ScrollableControl.cs: Lazy init the scrollbars.
20380         
20381 2005-01-06  Jackson Harper  <jackson@ximian.com>
20383         * Theme.cs: Speed up getting pens and solid brushes, by using
20384         their ARGB as a hash instead of tostring and not calling Contains.
20386 2005-01-06  Peter Bartok <pbartok@novell.com>
20388         * Form.cs:
20389           - Implemented OnActivated and OnDeactivate event trigger
20390           - Implemented Activate() method
20391           - Fixed ShowDialog() to activate the form that was active before
20392             the dialog was shown
20393         * XplatUIX11.cs:
20394           - Added global active_window var that tracks the currently active
20395             X11 window
20396           - Now always grabs Property changes from the root window to always
20397             catch changes on the active window property
20398           - Added code to PropertyNotify handler to send Active/Inactive
20399             messages when state changes. This puts X11 and Win32 en par on
20400             WM_ACTIVATE notifications (except for double notifications when
20401             the user clicks away from our modal window to another one of our
20402             windows)
20404 2005-01-05  Jackson Harper  <jackson@ximian.com>
20406         * ImageList.cs: Implment ctor
20408 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
20410         * XplatUIOSX.cs: Implement Activate/SetTopmost
20412 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
20414         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
20416 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
20418         * XplatUIOSX.cs: Implement GetActive/SetFocus.
20420 2005-01-05  Peter Bartok <pbartok@novell.com>
20422         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
20423           XplatUIOSX.cs: Added GetActive method to return the currently
20424           active window for the application (or null, if none is active)
20425         * Form.cs:
20426           - Implemented ActiveForm
20427           - Commented out owner assignment for modal dialogs (causes problems
20428             on Win32, since the owner will be disabled)
20429           - Reworked some Active/Focus handling (still incomplete)
20430         * CommonDialog.cs: Commented out owner assignment for modal dialogs
20431           (causes problems on Win32, since the owner will be disabled)
20432         * IWin32Window: Added ComVisible attribute
20434 2005-01-05  Peter Bartok <pbartok@novell.com>
20436         * ToolTip.cs (WndProc): Enable setting focus now that we have the
20437           required XplatUI functions.
20439 2005-01-05  Peter Bartok <pbartok@novell.com>
20441         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
20442           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
20443           to implement focus and activation handling; still incomplete and
20444           with debug output
20446 2005-01-04  Peter Bartok <pbartok@novell.com>
20448         * TextBoxBase.cs: Changed access level for Document property to
20449           match switch to internal for TextControl
20451 2005-01-04  Peter Bartok <pbartok@novell.com>
20453         * AccessibleObject: Added ComVisible attribute
20455 2005-01-04  Jackson Harper  <jackson@ximian.com>
20457         * X11Keyboard.cs: Remove unneeded var.
20459 2005-01-04  Jackson Harper  <jackson@ximian.com>
20461         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
20462         but PAINT.
20463         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
20464         ClientMessage. This makes apps exit cleanly (more often).
20465         
20466 2005-01-04  Jackson Harper  <jackson@ximian.com>
20468         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
20469         handling focus, return correct colors and fonts,
20470         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
20471         handle selection, horizontal scrolling, and mouse interaction.
20473 2005-01-04  Peter Bartok <pbartok@novell.com>
20475         * ICommandExecutor.cs: Added
20476         * IDataGridColumnStyleEditingNotificationService.cs: Added
20477         * IFeatureSupport.cs: Added
20478         * IFileReaderService.cs: Added
20479         * IDataObject.cs: Added ComVisible attribute
20480         * AmbientProperties.cs: Added
20481         * BaseCollection.cs: Added missing attributes
20482         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
20483         * BaseCollection.cs: Added missing attributes
20484         * Binding.cs: Added TypeConverter attribute
20485         * BindingContext.cs: Added DefaultEvent attribute
20486         * BindingsCollection.cs: Added DefaultEvent attribute
20487         * Button.cs: Added DefaultValue attribute
20488         * DragEventArgs.cs: Added ComVisible attribute
20489         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
20490         * KeyEventArgs.cs: Added ComVisible attribute
20491         * KeyPressEventArgs.cs: Added ComVisible attribute
20492         * MouseEventArgs.cs: Added ComVisible attribute
20493         * NavigateEventArgs.cs: Added
20494         * NavigateEventHandler.cs: Added
20495         * FeatureSupport.cs: Added
20496         * OSFeature.cs: Added
20497         * Theme.cs: Added abstract Version property to support OSFeature
20498         * ThemeWin32Classic.cs: Added Version property to
20499           support OSFeature.Themes
20500         * ProgressBar.cs: Removed OnPaintBackground override, not required since
20501           the proper styles to avoid background drawing are set, also doesn't
20502           match MS signature
20503         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
20504         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
20505         * ScrollEventArgs.cs: Added ComVisible attribute
20506         * SplitterEventArgs.cs: Added ComVisible attribute
20507         * AccessibleSelection.cs: Added Flags attribute
20508         * Appearance.cs: Added ComVisible attribute
20509         * Border3DSide.cs: Added ComVisible attribute
20510         * Border3DStyle.cs: Added ComVisible attribute
20511         * BorderStyle.cs: Added ComVisible attribute
20512         * DragAction.cs: Added ComVisible attribute
20513         * ErrorBlinkStyle.cs: Added
20514         * ScrollEventType.cs: Added ComVisible attribute
20515         * AnchorStyles.cs: Added Editor attribute
20516         * DockStyle.cs: Added Editor attribute
20517         * HorizontalAlignment.cs: Added ComVisible attribute
20518         * HelpEventArgs.cs: Added ComVisible attribute
20519         * PaintEventArgs.cs: Added IDisposable
20521 2005-01-04  Peter Bartok <pbartok@novell.com>
20523         * TextControl.cs: Switched Line, LineTag and Document classes to
20524           internal
20526 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
20528         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
20529         Simple mode, fixes, IntegralHeight, etc.
20531 2005-01-04  Peter Bartok <pbartok@novell.com>
20533         * TextBoxBase.cs: Using proper font variable now
20535 2005-01-04  Peter Bartok <pbartok@novell.com>
20537         * Form.cs (ShowDialog): Set parent to owner, if provided
20538         * GroupBox.cs: Removed unused vars
20539         * TextControl.cs:
20540           - Added GetHashCode() for Document and LineTag classes
20541           - Removed unused variables
20542           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
20543             to allow translation between continuous char position and line/pos
20544         * CheckBox.cs: Removed vars that are provided by base class
20545         * RadioButton.cs: Removed vars that are provided by base class, added
20546           new keyword where required
20547         * LinkLabel.cs: Added new keyword where required
20548         * Control.cs (WndProc): Removed unused variable
20549         * TextBoxBase.cs:
20550           - Finished SelectionLength property
20551           - Implemented SelectionStart property
20552           - Implemented Text property
20553           - Removed unused vars
20554         * MessageBox.cs: Added new keyword where required
20555         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
20556           WndProc signature
20557         * MenuAPI.cs: Added new keyword where required
20558         * ButtonBase.cs: Removed vars that are provided by base class, added
20559           new keyword where required
20560         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
20561           argument to double, to allow compiling with csc 2.0 (Atsushi ran
20562           into this)
20563         * Application.cs (Run): Now triggers the ThreadExit event
20564         * CommonDialog.cs: Added new keyword where required; now properly sets
20565           parent (owner) for dialog
20566         * XplatUIX11.cs: Commented out unused vars
20567         * StatusBar.cs: Fixed signature for Text property
20568         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
20570 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
20572         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
20573         TrackBar.cs, MonthCalendar.cs: remove unused vars
20575 2005-01-03  Jackson Harper  <jackson@ximian.com>
20577         * ThemeWin32Classic.cs:
20578         * X11Keyboard.cs: Remove unused vars.
20580 2005-01-03  Peter Bartok  <pbartok@novell.com>
20582         * TextBox.cs:
20583           - set_Text: Tied into TextControl
20584           - set_TextAlignment: Tied into TextControl
20585         * TextControl.cs:
20586           - Added alignment properties and implemented alignment handling
20587             and drawing (still has a bug, not generating proper expose events)
20588           - Added new Line() constructor to allow passing the line alignment
20589           - Fixed selection setting, properly handling end<start now
20590           - Added aligment considerations to RecalculateDocument()
20591         * TextBoxBase.cs:
20592           - Now properly enforces control height for single line controls
20593           - Added support for CharacterCasing
20594           - Added IsInputKey override
20595           - Fixed Keys.Enter logic
20596           - Added SetBoundsCore override
20597           - Fixed mouse selection handling
20599 2005-01-03  Jackson Harper  <jackson@ximian.com>
20601         * TreeView.cs:
20602           - Collapse and uncheck all nodes when CheckBoxes is disabled.
20603           - Checkboxes are always aligned to the bottom of the node,
20604           regardless of item height.
20605           - Use the node bounds to draw the text so we can center it when
20606           the item height is greater then the font height.
20607           - Node::Bounds are only the text part of the node.
20608         * TreeNode.cs: New method to combine collapsing and unchecking all
20609           nodes recursively.
20611 2005-01-02  Jackson Harper  <jackson@ximian.com>
20613         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
20614         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
20615         tree when a check is changed. TODO: Only refresh the checked node.
20617 2004-12-30  Jackson Harper  <jackson@ximian.com>
20619         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
20620         * TreeNode.cs: When collapsing make sure to never collapse the
20621         root node.
20623 2004-12-29  Jackson Harper  <jackson@ximian.com>
20625         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
20626         
20627 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
20629         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
20631 2004-12-28  Peter Bartok  <pbartok@novell.com>
20633         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
20634           not yet assigned
20636 2004-12-28  Peter Bartok  <pbartok@novell.com>
20638         * Control.cs (WndProc): Added WM_HELP handler, now generates
20639           HelpRequested event
20640         * Form.cs: Added HelpButton property and required support code
20641         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
20643 2004-12-28  Peter Bartok  <pbartok@novell.com>
20645         * CommonDialog.cs:
20646           - Made DialogForm.owner variable internal
20647           - Added check to ensure owner form is set before setting
20648             owner properties in CreateParams
20650 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
20652         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
20653           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
20654           GetCursorPos.  Fix major visibility issues.  Rework the windowing
20655           system to support borderless/titleless windows (implements menus).
20656           Fix GetWindowPos.  Implement initial background color support for
20657           views.
20659 2004-12-28  Peter Bartok  <pbartok@novell.com>
20661         * Form.cs (get_CreateParams): Make sure we have an owner before using
20662           the owner variable. Implement proper default if no owner exists
20664 2004-12-28  Peter Bartok  <pbartok@novell.com>
20666         * In preparation for making Managed.Windows.Forms the default build target
20667           for System.Windows.Forms, the following stubbed files were added.
20668           Dialogs are currently being implemented by contributors and are only
20669           short-term place holders.
20670         * ColorDialog.cs: Initial check-in (minmal stub)
20671         * DataGrid.cs: Initial check-in (minimal stub)
20672         * DataGridLineStyle.cs: Initial check-in (minimal stub)
20673         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
20674         * DataGridTableStyle.cs: Initial check-in (minimal stub)
20675         * FontDialog.cs: Initial check-in (minimal stub)
20676         * FileDialog.cs: Initial check-in (minimal stub)
20677         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
20678         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
20679         * OpenFileDialog: Initial check-in (minimal stub)
20680         * IComponentEditorPageSite.cs: Initial check-in
20681         * Splitter.cs: Initial check-in (for Jackson)
20682         * SplitterEventArgs.cs: Initial check-in (for Jackson)
20683         * SplitterEventHandler.cs: Initial check-in (for Jackson)
20684         * TextBox.cs: Initial check-in; still needs some wiring to
20685           TextControl backend
20686         * Form.cs: Implemented ControlBox property
20687         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
20688         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
20689         * TextControl.cs: Added selection functionality; added todo header
20690         * TextBoxBase.cs:
20691           - Implemented Lines property
20692           - Implemented TextHeight property
20693           - Implemented SelectedText property
20694           - Implemented SelectionLength property
20695           - Implemented SelectAll method
20696           - Implemented ToString method
20697           - Removed and cleaned up some debug code
20698           - Implemented (still buggy) mouse text selection
20700 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
20702         * ComboBox.cs: Complete DropDownList implementation, fixes.
20704 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
20706         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
20707         * ComboBoxStyle.cs: ComboBoxStyle enum
20708         * ComboBox.cs: Initial work on ComboBox control
20710 2004-12-21  Peter Bartok  <pbartok@novell.com>
20712         * Control.cs (ctor, CreateParams): Moved setting of is_visible
20713           forward so that anything that creates a window gets the default,
20714           also no longer uses Visible property in CreateParams to avoid
20715           walking up the parent chain and possibly get the wrong visible
20716           status. Fixed IsVisible to no longer walk up to the parent.
20718 2004-12-21  Peter Bartok  <pbartok@novell.com>
20720         * Form.cs (ShowDialog): Unset modality for the proper window
20722 2004-12-20  Peter Bartok  <pbartok@novell.com>
20724         * CommonDialog.cs: Initial check-in
20726 2004-12-20  Peter Bartok  <pbartok@novell.com>
20728         * Control.cs (Visible): Now uses the parent window instead of the
20729           client area window for the property
20731         * Form.cs
20732           - ShowDialog(): Now uses the proper window for modality
20733           - The default visibility state for the form parent is now false. This
20734             will prevent the user from seeing all the changes to the form and
20735             its controls before the application hits Application.Run()
20736           - Removed some stale commented out code
20738         * NativeWindow.cs:
20739           - Added FindWindow() method to have a method to check for existence
20740             of a window handle
20741           - Added ability to override default exception handling (for example
20742             when debugging with VS.Net; to do this the ExternalExceptionHandler
20743             define must be set
20744           - Removed some useless debug output
20746         * XplatUIX11.cs:
20747           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
20748             not working as expected
20749           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
20750             property to allow switching back to the modal window if focus is
20751             given to another one of our windows (Application Modal)
20752           - Now only sets override_redirect if we create a window
20753             without WS_CAPTION
20754           - Moved EventMask selection before mapping of newly created window
20755             so we can catch the map event as well
20756           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
20757           - Added various Atom related DllImports
20758           - Implemented Exit() method
20759           - .ctor() : No longer shows window if WS_VISIBLE is not defined
20760             in the CreateParams
20762         * MessageBox.cs: Now properly deals with the FormParent window by
20763           providing an override the FormParent CreateParams property to
20764           set as POPUP instead of OVERLAPPED window.
20766 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
20768         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
20769         Minor code cleanup.
20771 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
20772         
20773         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
20775 2004-12-18  Peter Bartok  <pbartok@novell.com>
20777         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
20778           implementing SetModal() method
20780 2004-12-18  Peter Bartok  <pbartok@novell.com>
20782         * X11Structs.cs (XGCValues): Fixed type of function element
20783         * XplatUI.cs: Added ScrollWindow() method
20784         * XplatUIDriver.cs: Added ScrollWindow() abstract
20785         * XplatUIWin32.cs: Implemented ScrollWindow() method
20786         * XplatUIX11.cs: Implemented ScrollWindow() method
20787         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
20789 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
20791         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
20792         Some more keyboard support (INCOMPLETE)
20794 2004-12-17  Peter Bartok  <pbartok@novell.com>
20796         * TextControl.cs:
20797         - Added color attribute to line tags.
20798         - Added color argument to all functions dealing with tags
20799         - Added color argument support to various functions
20800         - Fixed miss-calculation of baseline/shift in certain circumstances
20802         * TextBoxBase.cs: Added new color option to test code
20804 2004-12-17  Jackson Harper  <jackson@ximian.com>
20806         * TreeNode.cs:
20807         * MonthCalendar.cs: Signature fixes
20809 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
20811         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
20812         keyboard event moved it.  Create a new graphics context for each paint resolves this
20814 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
20816         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
20817         Make caret exist and go blink blink.  Initial keyboard support.
20818         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
20819         works.
20821 2004-12-17  Jackson Harper  <jackson@ximian.com>
20823         * XplatUIStructs.cs: Updated set of virtual keycodes.
20824         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
20826 2004-12-17  Jackson Harper  <jackson@ximian.com>
20828         * XplatUIX11.cs: Prune old keyboard code.
20830 2004-12-17  Jackson Harper  <jackson@ximian.com>
20832         * XplatUIX11.cs: When generating mouse wparams get the modifier
20833         keys from the ModifierKeys property.
20835 2004-12-17  Jackson Harper  <jackson@ximian.com>
20837         * X11Keyboard.cs: Send up/down input when generating
20838         messages. Remove some unused vars.
20840 2004-12-17  Jackson Harper  <jackson@ximian.com>
20842         * TabControl.cs:
20843         * TreeView.cs: get rid of warnings.
20845 2004-12-17  Jackson Harper  <jackson@ximian.com>
20847         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
20849 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
20851         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
20852           CheckedListBox.cs: Implementation
20854 2004-12-17  Peter Bartok  <pbartok@novell.com>
20856         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
20858 2004-12-16  Peter Bartok  <pbartok@novell.com>
20860         * TextControl.cs:
20861           - InsertCharAtCaret(): Fixed start pos fixup
20862           - CaretLine_get: No longer derives the line from the tag, the tag
20863             could be stale if lines in the document have been added or deleted
20864           - RebalanceAfterDelete(): Fixed bug in balancing code
20865           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
20866           - Line.Streamline(): Now can also elminate leading empty tags
20867           - DumpTree(): Added a few more tests and prevented exception on
20868             uninitialized data
20869           - Added Debug section for Combining lines
20870           - Delete(): Now copies all remaining properties of a line
20871           
20872         * TextBoxBase.cs:
20873           - Left mousebutton now sets the caret (and middle button still acts
20874             as formatting tester, which must go away soon)
20875           - Added Debug section for Deleting/Combining lines
20876           - Fixed calculations for UpdateView after Combining lines
20878 2004-12-16  Peter Bartok  <pbartok@novell.com>
20880         * TextControl.cs: Now properly aligns text on a baseline, using the
20881           new XplatUI.GetFontMetrics() method. Simplified several calculations
20882         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
20883           defined
20885 2004-12-16  Peter Bartok  <pbartok@novell.com>
20887         * XplatUI.cs: Added GetFontMetrics() method
20888         * XplatUIDriver.cs: Added GetFontMetrics() abstract
20889         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
20890           into libgdiplus, our private GetFontMetrics function
20891         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
20892         * XplatUIWin32.cs: Implemented GetFontMetrics() method
20894 2004-12-16  Jackson Harper  <jackson@ximain.com>
20896         * XplatUIStruct.cs: Add enum for dead keys
20897         * X11Keyboard.cs: Map and unmap dead keys.
20899 2004-12-16  Jackson Harper  <jackson@ximian.com>
20901         * X11Keyboard.cs: Detect and use the num lock mask.
20903 2004-12-16  Peter Bartok  <pbartok@novell.com>
20905         * Control.cs (CreateGraphics): Added check to make sure the
20906           handle of the window exists before calling Graphics.FromHwnd()
20908 2004-12-16  Peter Bartok  <pbartok@novell.com>
20910         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
20911           contains a lot of code that's not supposed to be there for the
20912           real thing, but required for developing/testing the textbox
20913           backend.
20915 2004-12-16  Peter Bartok  <pbartok@novell.com>
20917         * TextControl.cs:
20918         - Fixed Streamline method
20919         - Added FindTag method to Line
20920         - Added DumpTree method for debugging
20921         - Added DecrementLines() method for deleting lines
20922         - Fixed UpdateView to update the cursor to end-of-line on single-line
20923           updates
20924         - Added PositionCaret() method
20925         - Fixed MoveCaret(LineDown) to move into the last line, too
20926         - Added InsertChar overload
20927         - Fixed InsertChar tag offset calculations
20928         - Added DeleteChar() method
20929         - Added Combine() method for folding lines
20930         - Fixed Delete() method, no longer allocates wasted Line object and
20931           now copies all properties when swapping nodes
20932         - Delete() method now updates document line counter
20934 2004-12-15  Jackson Harper  <jackson@ximian.com>
20936         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
20937         * X11Keyboard.cs: Expose the currently selected modifier keys
20938         through a property.
20940 2004-12-15  Peter Bartok  <pbartok@novell.com>
20942         * TextControl.cs: Initial check-in. Still incomplete
20944 2004-12-15  Jackson Harper  <jackson@ximian.com>
20946         * TreeNode.cs:
20947         * TreeView.cs: Fix build on csc (second time today ;-))
20949 2004-12-15  Jackson Harper  <jackson@ximian.com>
20951         * TreeView.cs: Store the treenodes plus/minus box bounds when it
20952         is calculated and use this for click testing.
20953         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
20955 2004-12-15  Jackson Harper  <jackson@ximian.com>
20957         * TreeView.cs: Pass the nodes image index to the image list when
20958         drawing that image.
20960 2004-12-15  Jackson Harper  <jackson@ximian.com>
20962         * X11Keyboard.cs: Set messages hwnd.
20963         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
20964         post_message calls.
20966 2004-12-15  Jackson Harper  <jackson@ximian.com>
20968         * X11Keyboard.cs: Fix to compile with csc.
20969         
20970 2004-12-15  Jackson Harper  <jackson@ximian.com>
20972         * X11Structs.cs: Add key mask values
20973         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
20974         * X11Keyboard.cs: New file - Extrapolates and interpolates key
20975         down/up foo into WM_CHAR foo
20976         * KeyboardLayouts.cs: Common keyboard layouts
20977         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
20978         post messages into the main queue.
20980 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
20982         * Button.cs: implement ProcessMnemonic
20983         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
20984           brushes everytime
20985         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
20986         * ButtonBase.cs: Show HotkeyPrefix (not the &)
20988 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
20989         
20990         * MonthCalendar.cs: Implemented click-hold for next/previous month
20991           and date selection
20992           
20993 2004-12-11  Peter Bartok  <pbartok@novell.com>
20995         * X11Structs.cs:
20996           - Added XKeyboardState (moved from XplatUIX11.cs)
20997           - Added XCreateGC related enums and structures
20998           - Added GXFunction for XSetFunction
21000         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
21002         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
21003           CaretVisible() calls
21005         * ToolTip.cs: Added code to prevent stealing focus from app windows
21007         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
21008           DestroyCaret, SetCaretPos and CaretVisible)
21010         * XplatUIX11.cs:
21011           - Added implementation for caret functions
21012           - Moved hover variables into a struct, to make it a bit easier
21013             on the eyes and to debug
21014           - Removed XKeyboardState (moved to XplatUIX11.cs)
21015           - Moved Keyboard properties into the properties region
21017         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
21018           call to get a graphics context for our control
21020         * XplatUIOSX.cs: Added empty overrides for the new caret functions
21022         * TreeView.cs: Fixed bug. No matter what color was set it would always
21023           return SystemColors.Window
21025         * XplatUIWin32.cs: Implemented caret overrides
21027 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
21029         * ListBox.cs: fire events, implement missing methods and properties,
21030         sorting.
21032 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
21034         * MonthCalendar.cs: invalidation bug fixing
21035         * ThemeWin32Classic.cs: paint fixing
21037 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
21039         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
21040         prepare the CGContextRef there now.
21042 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
21044         * MonthCalendar.cs:
21045           - optimisationL only invalidate areas that have changed
21046         * ThemeWin32Classic.cs:
21047           - only paint parts that intersect with clip_area
21049 2004-12-09  Peter Bartok  <pbartok@novell.com>
21051         * Application.cs: Undid changes from r37004 which cause problems
21052         on X11
21054 2004-12-09  Ravindra  <rkumar@novell.com>
21056         * ToolBar.cs: Added support for displaying ContextMenu
21057         attached to a button on ToolBar.
21058         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
21059         property.
21061 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
21063         * Label.cs: autosize works in text change and removes unnecessary
21064         invalidate
21066 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
21068         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
21069         remove warnings
21071 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
21073         * XplatUIOSX.cs: Added mouse move/click/grab support
21074         Remove some debugging WriteLines not needed anymore.
21075         Add window resizing/positioning.
21076         Fix visibility on reparenting.
21078 2004-12-08  Peter Bartok  <pbartok@novell.com>
21080         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
21082 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
21084         * XplatUIOSX.cs: Initial checkin
21085         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
21087 2004-12-03  Ravindra <rkumar@novell.com>
21089         * ListView.cs: Added some keybindings and fixed scrolling.
21090         ScrollBars listen to ValueChanged event instead of Scroll
21091         Event. This would let us take care of all changes being
21092         done in the scrollbars' values programmatically or manually.
21093         * ListView.cs (CanMultiselect): Added a check for shift key.
21094         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
21095         * ListViewItem.cs (Clone): Fixed. We need to make a copy
21096         of ListViewSubItemCollection as well.
21098 2004-12-06  Peter Bartok <pbartok@novell.com>
21100         * Control.cs (Parent): Added check and exception to prevent
21101         circular parenting
21103 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
21105         * ListBox.cs: implemented clipping, selection single and multiple,
21106         bug fixing
21108 2004-12-03  Ravindra <rkumar@novell.com>
21110         * ListView.cs (ListView_KeyDown):
21111         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
21112         when CTRL key is pressed.
21113         * ListViewItem.cs (Selected): Fixed setting the property.
21115 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
21117         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
21119         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
21120         MinimizeBox, ShowInTaskbar, TopMost properties.
21122         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
21123         will be implemented).
21125 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
21127         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
21129         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
21130         tests.
21131         
21132         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
21133         
21134         * TreeView.cs: BackColor is Colors.Window.
21136 2004-12-01  Jackson Harper  <jackson@ximian.com>
21138         * TreeView.cs: When resizing the tree if the user is making it
21139         smaller we don't get expose events, so we need to handle adding
21140         the horizontal scrollbar in the size changed handler as well as
21141         the expose handler.
21143 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
21145         * DrawItemState.cs: fixes wrong enum values
21147 2004-12-01  Jackson Harper  <jackson@ximian.com>
21149         * TreeView.cs: Resize the hbar as well as the vbar on resize.
21151 2004-12-01  Jackson Harper  <jackson@ximian.com>
21153         * NodeLabelEditEventArgs.cs:
21154         * NodeLabelEditEventHandler.cs:
21155         * OpenTreeNodeEnumerator.cs:
21156         * TreeNode.cs:
21157         * TreeNodeCollection.cs:
21158         * TreeView.cs:
21159         * TreeViewAction.cs:
21160         * TreeViewCancelEventArgs.cs:
21161         * TreeViewCancelEventHandler.cs:
21162         * TreeViewEventArgs.cs:
21163         * TreeViewEventHandler.cs: Initial implementation.
21165 2004-12-01  Ravindra <rkumar@novell.com>
21167         * ListView.cs (CalculateListView): Fixed scrolling related
21168         calculations. Also, removed some debug statements from other
21169         places.
21170         * ListViewItem.cs: Changed access to 'selected' instance variable
21171         from private to internal.
21172         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
21174 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
21176         * ThemeWin32Classic.cs: remove cache of brush and pens for
21177         specific controls and use the global system, fixes scrollbutton
21178         bugs (for small sizes, disabled, etc)
21179         
21180         * ScrollBar.cs: does not show the thumb for very small controls
21181         (as MS) and allow smaller buttons that the regular size
21183 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
21185         * UpDownBase.cs: Add abstract methods for the interface.
21186         Add new virtual methods (need to be hooked up to TextEntry when it
21187         exists).
21188         Add override methods for most features.
21189         Computes the size, forces the height of the text entry.
21191         * NumericUpDown.cs: Put here the current testing code.
21193         * Set eol-style property on all files that do not have mixed line
21194         endings, to minimize the future problems.  There are still a few
21195         files with mixed endings, and someone should choose whether they
21196         want to move it or not.
21198 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
21200         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
21201         System.Colors
21202         
21203 2004-11-30  Ravindra <rkumar@novell.com>
21205         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
21206         drawing and replaced use of SystemColors by theme colors.
21207         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
21208         * ListView.cs (ListViewItemCollection.Add): Throw exception when
21209         same ListViewItem is being added more than once.
21211 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
21213         * MonthCalendar.cs:
21214           - ControlStyles love to make the control not flicker
21215           
21216 2004-11-30  Peter Bartok  <pbartok@novell.com>
21218         * CharacterCasing.cs: Added
21220 2004-11-29  Peter Bartok  <pbartok@novell.com>
21222         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
21223           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
21224           I am removing these files as they conflict with already completed
21225           work. While it is fantastic to get contributions to MWF, I
21226           respectfully ask that everyone please coordinate their contributions
21227           through mono-winforms-list or #mono-winforms at this time. We're
21228           explicitly avoiding stubbing and don't want controls that don't have
21229           their basic functionality implemented in svn. Please also see
21230           http://www.mono-project.com/contributing/winforms.html
21233 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
21235         * Application.cs (ModalRun): Don't hang after exit.
21237         * Theme.cs: New TreeViewDefaultSize property.
21239         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
21240         with less hardcoded SystemColors constant.
21241         Implemented TreeViewDefaultSize.
21243         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
21244         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
21247 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
21249         * MonthCalendar.cs:
21250           - Fix NextMonthDate and PrevMonthDate click moving calendar
21252 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
21254         * MonthCalendar.cs:
21255           - Fix usage of ScrollChange Property when scrolling months
21257 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
21259         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
21260          - Fixes menu destroying
21261          - Support adding and removing items on already created menus
21263 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
21265         * MonthCalendar.cs:
21266           - Re-worked all bolded dates handling to match win32
21267         * ThemeWin32Classic.cs:
21268           - Fixed rendering with bolded dates
21270 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
21272         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
21273         - Horizontal scroolbar
21274         - Multicolumn
21275         - Fixes
21278 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
21280         * MonthCalendar.cs:
21281           - Fix Usage of MaxSelectionCount from SelectionRange
21282           - Fixed Shift + Cursor Selection
21283           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
21284           - Fixed normal cursor selection to be compat with win32
21285           - Fixed Shift + Mouse Click selection
21287 2004-11-24  Peter Bartok <pbartok@novell.com>
21289         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
21290         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
21291         * XplatUIX11.cs:
21292           - CreatedKeyBoardMsg now updates keystate with Alt key
21293           - Added workaround for timer crash to CheckTimers, Jackson will
21294             develop a proper fix and check in later
21295           - Implemented DispatchMessage
21296           - Removed calling the native window proc from GetMessage (call
21297             now moved to DispatchMessage)
21299         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
21300           the keydata (Fixes bug #69831)
21302         * XplatUIWin32.cs:
21303           - (DispatchMessage): Switched to return IntPtr
21304           - Added DllImport for SetFocus
21306 2004-11-24  Ravindra <rkumar@novell.com>
21308         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
21309         background drawing.
21310         * ListViewItem.cs: Fixed various properties, calculations
21311         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
21312         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
21313         and some internal properties. Fixed MouseDown handler and Paint
21314         method.
21316 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
21318         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
21320 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
21322         * ContainerControl.cs: correct accidental check in of local changes
21324 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
21326         * ThemeWin32Classic.cs:
21327                 - Fixed Drawing Last month in grid (sometimes not showing)
21328         * MonthCalendar.cs:
21329                 - Fixed title width calculation bug (makeing title small)
21331 2004-11-23  Peter Bartok <pbartok@novell.com>
21333         * XplatUIX11.cs:
21334           - Added generation of WM_MOUSEHOVER event
21335           - Added missing assignment of async_method atom
21336           - Fixed WM_ERASEBKGND; now only redraws the exposed area
21338 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
21340         * ThemeWin32Classic.cs:
21341                 - Fixed Drawing of today circle when showtodaycircle not set
21342                 - fixed drawing of first and last month in the grid (gay dates)
21343         * MonthCalendar.cs:
21344                 - Fixed Drawing of today circle
21345                 - Fixed drawing of grady dates
21346                 - Fixed HitTest for today link when ShowToday set to false
21347                 - Fixed DefaultSize to obey ShowToday
21349 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
21351         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
21352         * System.Windows.Forms/Theme.cs
21353         * MonthCalendar.cs: added for MonthCalendar
21354         * SelectionRange.cs: added for MonthCalendar
21355         * Day.cs: added for MonthCalendar: added for MonthCalendar
21356         * DateRangeEventArgs.cs: added for MonthCalendar
21357         * DateRangeEventHandler.cs: added for MonthCalendar
21359 2004-11-22  Ravindra <rkumar@novell.com>
21361         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
21362         property.
21364 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
21366         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
21367         event handler.
21368         
21369         * NumericUpDown.cs: Added new implementation.
21370         * UpDownBase.cs: Added new implementation.
21372         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
21373         implementations.
21374         
21375         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
21376         implementations.
21378         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
21379         methods.
21381 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
21383         * Timer.cs  (Dispose): Should call the base dispose when
21384         overriding.
21386 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
21388         * ScrollBar.cs: updates thumb position when max, min or increment
21389         is changed
21391 2004-11-21  Ravindra <rkumar@novell.com>
21393         * ListView.cs: Implemented item selection, activation and
21394         column header style. Fixed properties to do a redraw, if
21395         required. Added support for MouseHover, DoubleClick, KeyDown
21396         and KeyUp event handling and some minor fixes.
21397         * ListViewItem.cs: Fixed constructor.
21398         * ThemeWin32Classic.cs: Improved drawing for ListView.
21400 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
21402         * ThemeWin32Classic.cs: initial listbox drawing code
21403         * DrawMode.cs: new enumerator
21404         * ListControl.cs: stubbed class
21405         * ListBox.cs: initial implementation
21406         * Theme.cs: new methods definitions
21407         * SelectionMode.cs: new enumerator
21409 2004-11-17  Peter Bartok  <pbartok@novell.com>
21411         * XplatUIWin32.cs: Added double-click events to the class style
21412         * Control.cs (WndProc):
21413           - Added handling of click-count to MouseDown/ MouseUp events.
21414           - Added handling of middle and right mouse buttons
21415           - Removed old debug code
21417 2004-11-17  Jackson Harper  <jackson@ximian.com>
21419         * XplatUIX11.cs: Use the new Mono.Unix namespace.
21421 2004-11-17  Ravindra <rkumar@novell.com>
21423         * ListView.cs: Added event handling for MouseMove/Up/Down.
21424         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
21425         * ThemeWin32Classic.cs: We need to clear the graphics context and
21426         draw column header in a proper state.
21429 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
21431         *  Menu.cs: fixes signature
21433 2004-11-16  Peter Bartok  <pbartok@novell.com>
21435         * XplatUIX11.cs (GetMessage): Implemented generation of
21436           double click mouse messages
21438 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
21440         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
21441         not by menu
21443 2004-11-11  Peter Bartok  <pbartok@novell.com>
21445         * HandleData.cs: Added Visible property
21446         * XplatUIX11.cs (IsVisible): Now uses Visible property from
21447           HandleData
21448         * XplatUIX11.cs: Removed old debug leftovers
21449         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
21450         * Control.cs (WndProc): Removed old debug leftovers,
21451           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
21452           needed WM_SIZE handling
21454 2004-11-11  Jackson Harper  <jackson@ximian.com>
21456         * OwnerDrawPropertyBag.cs:
21457         * TreeViewImageIndexConverter.cs: Initial implementation
21459 2004-11-10  Jackson Harper  <jackson@ximian.com>
21461         * ThemeWin32Classic.cs:
21462         * TabControl.cs: instead of moving tabs by the slider pos just
21463         start drawing at the tab that is offset by the slider. This way
21464         scrolling always moves by exactly one tab.
21466 2004-11-10  Jackson Harper  <jackson@ximian.com>
21468         * TabControl.cs: You can only scroll left when the slider has
21469         already ben moved right.
21470         
21471 2004-11-10  Jackson Harper  <jackson@ximian.com>
21473         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
21474         the clip area.
21475         
21476 2004-11-10  Jackson Harper  <jackson@ximian.com>
21478         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
21479         clip area.
21480         
21481 2004-11-09  Jackson Harper  <jackson@ximian.com>
21483         * TabControl.cs (CalcXPos): New helper method so we can determine
21484         the proper place to start drawing vertical tabs.
21485         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
21486         
21487 2004-11-09  Jackson Harper  <jackson@ximian.com>
21489         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
21490         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
21491         and Bottom, left and right are illegal values for this and
21492         multiline is enabled when the alignment is set to left or right.
21493         (DrawTab): Each alignment block should draw the text itself now
21494         because Left requires special love. Also add rendering for Left
21495         aligned tabs.
21496         
21497 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
21499         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
21500         does not destroy the windows, removes debugging messages
21502 2004-11-09  jba  <jba-mono@optusnet.com.au>
21504         * ThemeWin32Classic.cs
21505         (DrawButtonBase): Fix verticle text rect clipping in windows
21506         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
21507         rendering and incorrect text rect clipping
21508         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
21509         rendering and incorrect text rect clipping
21510         
21511 2004-11-08  Jackson Harper  <jackson@ximian.com>
21513         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
21514         bottom when they are bottom aligned so the bottoms of the tabs get
21515         displayed.
21516         * TabControl.cs (DropRow): Move rows up instead of down when the
21517         tab control is bottom aligned.
21519 2004-11-08 13:59  pbartok
21521         * XplatUIX11.cs:
21522           - Added handling for various window styles
21523           - Added handling for popup windows
21524           - Added SetTopmost handling
21526 2004-11-08 13:55  pbartok
21528         * XplatUIWin32.cs:
21529           - Added argument to SetTopmost method
21530           - Fixed broken ClientToScreen function
21532 2004-11-08 13:53  pbartok
21534         * XplatUIStructs.cs:
21535           - Added missing WS_EX styles
21537 2004-11-08 13:53  pbartok
21539         * XplatUI.cs, XplatUIDriver.cs:
21540           - Added argument to SetTopmost
21542 2004-11-08 13:52  pbartok
21544         * X11Structs.cs:
21545           - Added XSetWindowAttributes structure
21546           - Improved XWindowAttributes structure
21547           - Added SetWindowValuemask enum
21548           - Added window creation arguments enum
21549           - Added gravity enum
21550           - Added Motif hints structure
21551           - Added various Motif flags and enums
21552           - Added PropertyMode enum for property functions
21554 2004-11-08 13:50  pbartok
21556         * Form.cs:
21557           - Fixed arguments for updated SetTopmost method
21559 2004-11-08 13:49  pbartok
21561         * ToolTip.cs:
21562           - Fixed arguments for updated SetTopmost function
21563           - Fixed usage of PointToClient
21565 2004-11-08 13:44  pbartok
21567         * MenuAPI.cs:
21568           - Added Clipping of children and siblings
21570 2004-11-08 13:41  pbartok
21572         * MainMenu.cs:
21573           - Removed SetMenuBarWindow call. We do this in Form.cs
21575 2004-11-08 13:40  jackson
21577         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
21578           scrolling jimmi in the correct location with bottom aligned tabs
21580 2004-11-08 13:36  pbartok
21582         * ContainerControl.cs:
21583           - Implemented BindingContext
21584           - Implemented ParentForm
21586 2004-11-08 12:46  jackson
21588         * TabControl.cs: Put bottom rendered tabs in the right location
21590 2004-11-08 07:15  jordi
21592         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
21593           removes dead code
21595 2004-11-05 17:30  jackson
21597         * TabControl.cs: When selected tabs are expanded make sure they
21598           don't go beyond the edges of the tab control
21600 2004-11-05 14:57  jackson
21602         * TabControl.cs: Reset show_slider so if the control is resized to
21603           a size where it is no longer needed it's not displayed anymore
21605 2004-11-05 13:16  jackson
21607         * TabControl.cs: Make tab pages non visible when added to the
21608           control
21610 2004-11-05 12:42  jackson
21612         * TabControl.cs: Implement SizeMode.FillToRight
21614 2004-11-05 12:16  jackson
21616         * Control.cs: Do not call CreateHandle if the handle is already
21617           created
21619 2004-11-05 11:46  jackson
21621         * TabControl.cs: Remove superflous call to CalcTabRows
21623 2004-11-05 09:07  jackson
21625         * XplatUIX11.cs: Update for Mono.Posix changes
21627 2004-11-05 07:00  ravindra
21629         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
21630           scrolling.
21632 2004-11-04 22:47  jba
21634         * ThemeWin32Classic.cs:
21635           - Fix Button rendering for FlatStyle = Flat or Popup
21636           - Fix RadioButton and CheckBox rendering when Appearance = Button
21637             (normal and flatstyle).
21638           - Correct outer rectangle color when drawing focus rectangle
21639           - Adjust button bounds to be 1 px smaller when focused
21640           - Make button not draw sunken 3d border when pushed (windows compat)
21641           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
21642           - Offset the text in RadioButton and Checkbox when being rendered as
21643           a button.
21644           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
21645           radiobuttons
21646           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
21647           - Fixed disabled text rendering for normally rendered radiobuttons
21649 2004-11-04 10:26  jackson
21651         * TabControl.cs: Recalculate tab rows when resizing
21653 2004-11-04 07:47  jordi
21655         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
21656           collection completion, drawing issues, missing features
21658 2004-11-04 05:03  ravindra
21660         * ScrollBar.cs:
21661                 - We need to recalculate the Thumb area when
21662                 LargeChange/maximum/minimum values are changed.
21663           - We set the 'pos' in UpdatePos() method to minimum, if it's less
21664                 than minimum. This is required to handle the case if large_change is
21665                 more than max, and use LargeChange property instead of large_change
21666                 variable.
21667           - We return max+1 when large_change is more than max, like MS does.
21669 2004-11-04 04:29  ravindra
21671         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
21672                 - Changed default value signatures (prefixed all with ListView).
21673                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
21674                 ListView.
21675           - Fixed calculations for ListViewItem and implemented Clone()
21676           method.
21678 2004-11-04 04:26  ravindra
21680         * Theme.cs, ThemeWin32Classic.cs:
21681                 - Changed default ListView values signatures (prefixed all with
21682                 ListView).
21683           - Fixed default size values for VScrollBar and HScrollBar.
21684                 - Fixed DrawListViewItem method.
21686 2004-11-04 04:05  ravindra
21688         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
21690 2004-11-04 04:04  ravindra
21692         * ImageList.cs: Implemented the missing overload for Draw method.
21694 2004-11-03 19:29  jackson
21696         * TabControl.cs: Handle dropping rows on selection properly
21698 2004-11-03 11:59  jackson
21700         * TabControl.cs: remove debug code
21702 2004-11-03 11:52  jackson
21704         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
21705           the scrolly widgerywoo
21707 2004-11-02 13:52  jackson
21709         * TabControl.cs: Resize the tab pages and tabs when the tab control
21710           is resized
21712 2004-11-02 13:40  jackson
21714         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
21715           selected tab to the bottom
21717 2004-11-02 13:39  jackson
21719         * TabPage.cs: Store the tab pages row
21721 2004-11-02 12:33  jordi
21723         * MenuItem.cs: fixes handle creation
21725 2004-11-02 11:42  jackson
21727         * TabControl.cs: signature fix
21729 2004-11-02 08:56  jackson
21731         * TabControl.cs: Calculate whether the tab is on an edge properly.
21732           Remove top secret debugging code
21734 2004-11-01 19:57  jackson
21736         * TabControl.cs: Add click handling, and proper sizing
21738 2004-11-01 19:47  jackson
21740         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
21741           tab controls
21743 2004-11-01 19:39  jackson
21745         * TabPage.cs: add internal property to store the bounds of a tab
21746           page
21748 2004-10-30 04:23  ravindra
21750         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
21751           values.
21753 2004-10-30 04:21  ravindra
21755         * ListView.cs, ListViewItem.cs: Added support for scrolling and
21756           fixed calculations.
21758 2004-10-30 03:06  pbartok
21760         * XplatUIX11.cs:
21761           - Removed extension of DllImported libs
21763 2004-10-29 09:55  jordi
21765         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
21766           navigation, itemcollection completion, menu fixes
21768 2004-10-27 22:58  pbartok
21770         * XplatUIX11.cs:
21771           - Now throws a nice error message when no X display could be opened
21773 2004-10-26 13:51  jordi
21775         * ListView.cs: removes warning
21777 2004-10-26 03:55  ravindra
21779         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
21780           ThemeWin32Classic.cs: Some formatting for my last checkins.
21782 2004-10-26 03:36  ravindra
21784         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
21785           control and default values.
21787 2004-10-26 03:35  ravindra
21789         * Theme.cs: Added some default values for ListView control.
21791 2004-10-26 03:33  ravindra
21793         * ToolBar.cs: ToolBar should use the user specified button size, if
21794           there is any. Added a size_specified flag for the same.
21796 2004-10-26 03:33  ravindra
21798         * ColumnHeader.cs: Added some internal members and calculations for
21799           ColumnHeader.
21801 2004-10-26 03:32  ravindra
21803         * ListViewItem.cs: Calculations for ListViewItem.
21805 2004-10-26 03:31  ravindra
21807         * ListView.cs: Added some internal members and calculations for
21808           ListView.
21810 2004-10-22 13:31  jordi
21812         * MenuAPI.cs: speedup menus drawing
21814 2004-10-22 13:16  jackson
21816         * XplatUIX11.cs: Make sure to update exposed regions when adding an
21817           expose event
21819 2004-10-22 11:49  jackson
21821         * Control.cs: oops
21823 2004-10-22 11:41  jackson
21825         * Control.cs: Check to see if the window should have its background
21826           repainted by X when drawing.
21828 2004-10-22 11:31  jackson
21830         * XplatUIX11.cs: When invalidating areas only use XClearArea if
21831           clear is true, this way we do not get flicker from X repainting the
21832           background
21834 2004-10-22 11:28  jackson
21836         * XEventQueue.cs: Queue properly
21838 2004-10-21 09:38  jackson
21840         * XEventQueue.cs: Fix access modifier
21842 2004-10-21 09:36  jackson
21844         * XEventQueue.cs: Don't loose messages
21846 2004-10-21 09:22  jackson
21848         * XEventQueue.cs: Don't loose messages
21850 2004-10-20 04:15  jordi
21852         * BootMode.cs: enum need it by SystemInfo
21854 2004-10-19 21:58  pbartok
21856         * XplatUIWin32.cs:
21857           - Small sanity check
21859 2004-10-19 21:56  pbartok
21861         * Form.cs:
21862           - Added private FormParentWindow class which acts as the container
21863             for our form and as the non-client area where menus are drawn
21864           - Added/Moved required tie-ins to Jordi's menus
21865           - Fixed/Implemented the FormStartPosition functionality
21867 2004-10-19 21:52  pbartok
21869         * Control.cs:
21870           - Removed unneeded locals
21871           - Added code to all size and location properties to understand and
21872             deal with the parent container of Form
21874 2004-10-19 21:33  pbartok
21876         * Application.cs:
21877           - Fixed to deal with new Form subclasses for menus
21879 2004-10-19 17:48  jackson
21881         * XEventQueue.cs: commit correct version of file
21883 2004-10-19 16:50  jackson
21885         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
21887 2004-10-19 16:15  jordi
21889         * MenuAPI.cs: MenuBarCalcSize returns the height
21891 2004-10-19 08:31  pbartok
21893         * Control.cs:
21894           - Added missing call to PreProcessMessage before calling OnXXXKey
21895           methods
21897 2004-10-19 00:04  ravindra
21899         * ToolTip.cs: Fixed constructor.
21901 2004-10-18 09:31  jordi
21903         * MenuAPI.cs: menuitems in menubars do not have shortcuts
21905 2004-10-18 09:26  jordi
21907         * MenuItem.cs: fixes MenuItem class signature
21909 2004-10-18 08:56  jordi
21911         * MenuAPI.cs: prevents windows from showing in the taskbar
21913 2004-10-18 00:28  ravindra
21915         * ToolTip.cs: Suppressed a warning message.
21917 2004-10-18 00:27  ravindra
21919         * Control.cs: Default value of visible property must be true.
21921 2004-10-17 23:19  pbartok
21923         * ToolTip.cs:
21924           - Complete implementation
21926 2004-10-17 23:19  pbartok
21928         * XplatUIX11.cs:
21929           - Added EnableWindow method
21930           - Added SetModal stub
21931           - Added generation of WM_ACTIVATE message (still needs testing)
21932           - Added SetTopMost stub
21933           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
21935 2004-10-17 23:17  pbartok
21937         * XplatUIWin32.cs:
21938           - Removed VirtualKeys to XplatUIStructs
21939           - Implemented SetTopMost method
21940           - Implemented EnableWindow method
21941           - Bugfix in ScreenToClient()
21942           - Bugfixes in ClientToScreen()
21944 2004-10-17 22:51  pbartok
21946         * XplatUIStructs.cs:
21947           - Added WS_EX styles to WindowStyles enumeration
21949 2004-10-17 22:50  pbartok
21951         * XplatUI.cs, XplatUIDriver.cs:
21952           - Added method for enabling/disabling windows
21953           - Added method for setting window modality
21954           - Added method for setting topmost window
21956 2004-10-17 22:49  pbartok
21958         * ThemeWin32Classic.cs:
21959           - Added ToolTip drawing code
21961 2004-10-17 22:49  pbartok
21963         * Theme.cs:
21964           - Added ToolTip abstracts
21966 2004-10-17 22:47  pbartok
21968         * Form.cs:
21969           - Fixed Form.ControlCollection to handle owner relations
21970           - Added Owner/OwnedForms handling
21971           - Implemented Z-Ordering for owned forms
21972           - Removed unneeded private overload of ShowDialog
21973           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
21974             so I hope)
21975           - Fixed Close(), had wrong default
21976           - Added firing of OnLoad event
21977           - Added some commented out debug code for Ownership handling
21979 2004-10-17 22:16  pbartok
21981         * Control.cs:
21982           - Fixed/implemented flat list of controls
21984 2004-10-17 22:14  pbartok
21986         * Application.cs:
21987           - Added code to simulate modal dialogs on Win32
21989 2004-10-17 16:11  jordi
21991         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
21992           mouse event
21994 2004-10-17 13:39  jordi
21996         * MenuAPI.cs: menu drawing fixes
21998 2004-10-15 09:10  ravindra
22000         * StructFormat.cs: General Enum.
22002 2004-10-15 09:09  ravindra
22004         * SizeGripStyle.cs: Enum for Form.
22006 2004-10-15 09:08  ravindra
22008         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
22009           in Theme for ListView.
22011 2004-10-15 09:06  ravindra
22013         * ColumnHeader.cs: Flushing some formatting changes.
22015 2004-10-15 09:05  ravindra
22017         * ListViewItem.cs: Implemented GetBounds method and fixed coding
22018           style.
22020 2004-10-15 09:03  ravindra
22022         * ListView.cs: Implemented Paint method and fixed coding style.
22024 2004-10-15 07:34  jordi
22026         * MenuAPI.cs: fix for X11
22028 2004-10-15 07:32  ravindra
22030         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
22031                 - Renamed Paint() method to Draw() for clarity. Also, moved
22032                 DrawImage() to OnPaint().
22034 2004-10-15 07:25  ravindra
22036         * CheckBox.cs, RadioButton.cs:
22037                 - Removed Redraw (), we get it from ButtonBase.
22038                 - Implemented Paint (), to do class specific painting.
22040 2004-10-15 07:16  ravindra
22042         * ButtonBase.cs:
22043                 - Redraw () is not virtual now.
22044                 - Added an internal virtual method Paint (), so that
22045                 derived classes can do their painting on their own.
22046                 - Modified OnPaint () to call Paint ().
22048 2004-10-15 06:43  jordi
22050         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
22051           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
22053 2004-10-15 00:30  ravindra
22055         * MessageBox.cs:
22056                 - MessageBox on windows does not have min/max buttons.
22057                 This change in CreateParams fixes this on Windows. We
22058                 still need to implement this windowstyle behavior in
22059                 our X11 driver.
22061 2004-10-14 05:14  ravindra
22063         * ToolBar.cs:
22064                 - Changed Redraw () to do a Refresh () always.
22065                 - Fixed the MouseMove event handling when mouse is pressed,
22066                 ie drag event handling.
22067                 - Replaced the usage of ToolBarButton.Pressed property to
22068                 ToolBarButton.pressed internal variable.
22070 2004-10-14 05:10  ravindra
22072         * ToolBarButton.cs:
22073                 - Added an internal member 'inside' to handle mouse move
22074                 with mouse pressed ie mouse drag event.
22075                 - Changed 'Pressed' property to return true only when
22076                 'inside' and 'pressed' are both true.
22077                 - Some coding style love.
22079 2004-10-14 00:17  ravindra
22081         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
22082           public method.
22084 2004-10-14 00:15  ravindra
22086         * ButtonBase.cs: Redraw () related improvements.
22088 2004-10-14 00:14  ravindra
22090         * MessageBox.cs: Moved InitFormSize () out of Paint method and
22091           removed unnecessary calls to Button.Show () method.
22093 2004-10-13 17:50  pbartok
22095         * XplatUIX11.cs:
22096           - Formatting fix
22097           - Removed destroying of window until we solve the problem of X
22098             destroying the window before us on shutdown
22100 2004-10-13 16:32  pbartok
22102         * ButtonBase.cs:
22103           - Now Redraws on MouseUp for FlatStyle Flat and Popup
22105 2004-10-13 14:18  pbartok
22107         * XplatUIX11.cs:
22108           - Added code to destroy the X window
22110 2004-10-13 14:18  pbartok
22112         * XplatUIWin32.cs:
22113           - Added code to destroy a window
22115 2004-10-13 14:12  pbartok
22117         * ButtonBase.cs:
22118           - Added the Redraw on Resize that got dropped in the last rev
22120 2004-10-13 09:06  pbartok
22122         * ThemeWin32Classic.cs:
22123           - Path from John BouAntoun:
22124             * Fix check rendering (centre correctly for normal style, offset
22125               correctly for FlatStyle).
22126             * Fix border color usage (use backcolor) for FlatStyle.Popup
22127             * Use checkbox.Capture instead of checkbox.is_pressed when
22128               rendering flatstyle states.
22130 2004-10-12 21:48  pbartok
22132         * ThemeWin32Classic.cs:
22133           - Removed all occurences of SystemColors and replaced them with the
22134             matching theme color
22136 2004-10-12 21:41  pbartok
22138         * ThemeWin32Classic.cs:
22139           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
22140             him using the function for flatstyle drawing
22141           - Changed functions to use the new version of CPDrawBorder3D
22143 2004-10-12 21:15  pbartok
22145         * ControlPaint.cs:
22146           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
22147             match MS documentation. They need to return defined colors if the
22148             passed color matches the configured control color. Thanks to John
22149             BouAntoun for pointing this out.
22151 2004-10-12 20:57  pbartok
22153         * Control.cs:
22154           - Fix from John BouAntoun: Raise ForeColorChanged event when text
22155             color is changed
22157 2004-10-12 20:46  pbartok
22159         * CheckBox.cs:
22160           - Fix from John BouAntoun: Now properly sets the Appearance property
22162 2004-10-12 20:45  pbartok
22164         * ThemeWin32Classic.cs:
22165           - Fixes from John BouAntoun: now handles forecolors and backcolors
22166             for flatstyle rendered controls much better; It also fixes normal
22167             checkbox rendering when pushed or disabled.
22169 2004-10-08 02:50  jordi
22171         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
22172           work
22174 2004-10-07 08:56  jordi
22176         * ThemeWin32Classic.cs: Removes deletion of cached brushes
22178 2004-10-06 03:59  jordi
22180         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
22181           XplatUIWin32.cs: removes warnings from compilation
22183 2004-10-05 12:23  jackson
22185         * RadioButton.cs: Fix ctor
22187 2004-10-05 11:10  pbartok
22189         * MessageBox.cs:
22190           - Partial implementation by Benjamin Dasnois
22192 2004-10-05 10:15  jackson
22194         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
22195           by John BouAntoun
22197 2004-10-05 03:07  ravindra
22199         * ToolBar.cs:
22200                 - Removed a private method, Draw ().
22201                 - Fixed the ButtonDropDown event handling.
22202                 - Fixed MouseMove event handling.
22204 2004-10-05 03:04  ravindra
22206         * ThemeWin32Classic.cs:
22207                 - Added DrawListView method and ListViewDefaultSize property.
22208                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
22209                 - Changed DOS style CRLF to Unix format (dos2unix).
22211 2004-10-05 03:03  ravindra
22213         * Theme.cs:
22214                 - Added DrawListView method and ListViewDefaultSize property.
22216 2004-10-05 02:42  ravindra
22218         * ToolBarButton.cs: Added an internal member dd_pressed to handle
22219           clicks on DropDown arrow.
22221 2004-10-04 22:56  jackson
22223         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
22224           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
22225           Control handle the buffers, derived classes should not have to
22226           CreateBuffers themselves.
22228 2004-10-04 21:20  jackson
22230         * StatusBar.cs: The control handles resizing the buffers now.
22232 2004-10-04 21:18  jackson
22234         * Control.cs: When resizing the buffers should be invalidated. This
22235           should be handled in Control not in derived classes.
22237 2004-10-04 14:45  jackson
22239         * TabPage.cs: oops
22241 2004-10-04 02:14  pbartok
22243         * LeftRightAlignment.cs:
22244           - Initial check-in
22246 2004-10-04 01:09  jordi
22248         * ThemeWin32Classic.cs: fixes right button position causing right
22249           button not showing on horizontal scrollbars
22251 2004-10-02 13:12  pbartok
22253         * XplatUIX11.cs:
22254           - Simplified the Invalidate method by using an X call instead of
22255             generating the expose ourselves
22256           - Added an expose when the window background is changed
22257           - Implemented ClientToScreen method
22259 2004-10-02 13:08  pbartok
22261         * XplatUIWin32.cs:
22262           - Added Win32EnableWindow method (test for implementing modal
22263           dialogs)
22264           - Added ClientToScreen method and imports
22266 2004-10-02 13:07  pbartok
22268         * XplatUI.cs, XplatUIDriver.cs:
22269           - Added ClientToScreen coordinate translation method
22271 2004-10-02 13:06  pbartok
22273         * KeyPressEventArgs.cs:
22274           - Fixed access level for constructor
22276 2004-10-02 13:06  pbartok
22278         * NativeWindow.cs:
22279           - Changed access level for the window_collection hash table
22281 2004-10-02 13:05  pbartok
22283         * Form.cs:
22284           - Added KeyPreview property
22285           - Added Menu property (still incomplete, pending Jordi's menu work)
22286           - Implemented ProcessCmdKey
22287           - Implemented ProcessDialogKey
22288           - Implemented ProcessKeyPreview
22290 2004-10-02 13:02  pbartok
22292         * Control.cs:
22293           - Added private method to get the Control object from the window
22294           handle
22295           - Implemented ContextMenu property
22296           - Implemented PointToScreen
22297           - Implemented PreProcessMessage
22298           - Implemented IsInputChar
22299           - Implemented IsInputKey
22300           - Implemented ProcessCmdKey
22301           - Completed ProcessKeyEventArgs
22302           - Fixed message loop to call the proper chain of functions on key
22303           events
22304           - Implemented ProcessDialogChar
22305           - Implemented ProcessDialogKey
22306           - Implemented ProcessKeyMessage
22307           - Implemented ProcessKeyPreview
22308           - Added RaiseDragEvent stub (MS internal method)
22309           - Added RaiseKeyEvent stub (MS internal method)
22310           - Added RaiseMouseEvent stub (MS Internal method)
22311           - Added RaisePaintEvent stub (MS Internal method)
22312           - Added ResetMouseEventArgs stub (MS Internal method)
22313           - Implemented RtlTranslateAlignment
22314           - Implemented RtlTranslateContent
22315           - Implemented RtlTranslateHorizontal
22316           - Implemented RtlTranslateLeftRight
22317           - Added generation of KeyPress event
22319 2004-10-02 05:57  ravindra
22321         * ListViewItem.cs: Added attributes.
22323 2004-10-02 05:32  ravindra
22325         * ListView.cs: Added attributes.
22327 2004-10-01 11:53  jackson
22329         * Form.cs: Implement the Close method so work on MessageBox can
22330           continue.
22332 2004-09-30 14:06  pbartok
22334         * XplatUIX11.cs:
22335           - Bug fixes
22337 2004-09-30 11:34  jackson
22339         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
22341 2004-09-30 07:26  ravindra
22343         * ListViewItemConverter.cs: Converter for ListViewItem.
22345 2004-09-30 07:26  ravindra
22347         * SortOrder.cs: Enum for ListView control.
22349 2004-09-30 07:25  ravindra
22351         * ColumnHeader.cs: Supporting class for ListView control.
22353 2004-09-30 07:24  ravindra
22355         * ListView.cs, ListViewItem.cs: Initial implementation.
22357 2004-09-30 07:20  ravindra
22359         * ItemActivation.cs: Enum for ListView Control.
22361 2004-09-29 20:29  pbartok
22363         * XplatUIX11.cs:
22364           - Added lookup of pixel value for background color; tries to get a
22365             color 'close' to the requested color, it avoids having to create a
22366             colormap.  Depending on the display this could mean the used color
22367             is slightly off the desired color. Might have to change it to a more
22368             resource intensive colormap approach, but it will work as a
22369           workaround to avoid red screens.
22371 2004-09-29 14:27  jackson
22373         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
22375 2004-09-28 12:44  pbartok
22377         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
22378           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
22379           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
22380           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
22381           TrackBar.cs, VScrollBar.cs:
22382           - Streamlined Theme interfaces:
22383             * Each DrawXXX method for a control now is passed the object for
22384               the control to be drawn in order to allow accessing any state the
22385               theme might require
22387             * ControlPaint methods for the theme now have a CP prefix to avoid
22388               name clashes with the Draw methods for controls
22390             * Every control now retrieves it's DefaultSize from the current
22391             theme
22393 2004-09-28 12:17  jackson
22395         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
22396           drawing
22398 2004-09-24 14:57  jackson
22400         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
22401           Gives us a nice little performance boost.
22403 2004-09-24 12:02  jackson
22405         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
22406           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
22407           Control and supporting classes. Initial checkin
22409 2004-09-23 13:08  jackson
22411         * Form.cs: Temp build fixage
22413 2004-09-23 01:39  ravindra
22415         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
22416           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
22417           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
22418           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
22419           EventHandlers needed by ListView Control.
22421 2004-09-22 14:12  pbartok
22423         * ScrollableControl.cs:
22424           - Implemented DockPadding property
22425           - Implemented AutoScroll property
22426           - Implemented AutoScrollMargin property
22427           - Implemented AutoScrollMinSize property
22428           - Implemented AutoScrollPosition property
22429           - Implemented DisplayRectangle property (still incomplete)
22430           - Implemented CreateParams property
22431           - Implemented HScroll property
22432           - Implemented VScroll property
22433           - Implemented OnVisibleChanged property
22435 2004-09-22 14:09  pbartok
22437         * Form.cs:
22438           - Added Form.ControllCollection class
22439           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
22440             RemoveOwnedForm (still incomplete, missing on-top and common
22441             minimize/maximize behaviour)
22442           - Added StartPosition property (still incomplete, does not use when
22443             creating the form)
22444           - Added ShowDialog() methods (still incomplete, missing forcing the
22445             dialog modal)
22447 2004-09-22 14:05  pbartok
22449         * Application.cs:
22450           - Added message loop for modal dialogs
22452 2004-09-22 14:02  pbartok
22454         * GroupBox.cs:
22455           - Fixed wrong types for events
22457 2004-09-22 14:00  pbartok
22459         * Shortcut.cs, FormWindowState.cs:
22460           - Fixed wrong values
22462 2004-09-22 12:01  jackson
22464         * Control.cs: Text is never null
22466 2004-09-20 22:14  pbartok
22468         * XplatUIWin32.cs:
22469           - Fixed accessibility level for Idle handler
22471 2004-09-20 18:54  jackson
22473         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22474           XplatUIX11.cs: New message loop that uses poll so we don't get a
22475           busy loop
22477 2004-09-17 10:43  pbartok
22479         * ScrollBar.cs:
22480           - Fixed behaviour of arrow buttons. Now properly behaves like
22481             Buttons (and like Microsoft's scrollbar arrow buttons)
22483 2004-09-17 10:14  pbartok
22485         * ScrollBar.cs:
22486           - Added missing release of keyboard/mouse capture
22488 2004-09-17 06:18  jordi
22490         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
22491           Theme.cs: Very early menu support
22493 2004-09-16 17:45  pbartok
22495         * XplatUIWin32.cs:
22496           - Fixed sending a window to the front
22497           - Added overload for SetWindowPos to avoid casting
22499 2004-09-16 17:44  pbartok
22501         * Control.cs:
22502           - Added SendToBack and BringToFront methods
22504 2004-09-16 07:00  ravindra
22506         * Copyright: Added Novell URL.
22508 2004-09-16 07:00  ravindra
22510         * ToolBar.cs: Invalidate should be done before redrawing.
22512 2004-09-15 21:19  ravindra
22514         * ColumnHeaderStyle.cs: Enum for ListView Control.
22516 2004-09-15 21:18  ravindra
22518         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
22519           ListView Control.
22521 2004-09-13 18:26  jackson
22523         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
22524           properly
22526 2004-09-13 18:13  jackson
22528         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
22529           a second thread and post messages into the main threads message
22530           queue. This makes timing much more consistent. Both win2K and XP
22531           have a minimum timer value of 15 milliseconds, so we now do this
22532           too.
22534 2004-09-13 15:18  pbartok
22536         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22537           XplatUIX11.cs:
22538           - Added Z-Ordering methods
22540 2004-09-13 10:56  pbartok
22542         * Form.cs:
22543           - Fixed #region names
22544           - Moved properties and methods into their proper #regions
22546 2004-09-13 10:51  pbartok
22548         * Form.cs:
22549           - Added Accept and CancelButton properties
22550           - Added ProcessDialogKey() method
22552 2004-09-13 08:18  pbartok
22554         * IWindowTarget.cs:
22555           - Initial check-in
22557 2004-09-10 21:50  pbartok
22559         * Control.cs:
22560           - Added DoDragDrop() [incomplete]
22561           - Properly implemented 'Visible' handling
22562           - Added SetVisibleCore()
22563           - Implemented FindChildAtPoint()
22564           - Implemented GetContainerControl()
22565           - Implemented Hide()
22567 2004-09-10 19:28  pbartok
22569         * Control.cs:
22570           - Moved methods into their appropriate #regions
22571           - Reordered methods within regions alphabetically
22573 2004-09-10 18:57  pbartok
22575         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
22576           - Added method to retrieve text from window
22578 2004-09-10 18:56  pbartok
22580         * Control.cs:
22581           - Moved some internal functions into the internal region
22582           - Implemented FontHeight
22583           - Implemented RenderRightToLeft
22584           - Implemented ResizeRedraw
22585           - Implemented ShowFocusCues
22586           - Implemented ShowKeyboardCues
22587           - Implemented FromChildHandle
22588           - Implemented FromHandle
22589           - Implemented IsMnemonic
22590           - Implemented ReflectMessage
22591           - All public and protected Static Methods are now complete
22593 2004-09-10 16:54  pbartok
22595         * Control.cs:
22596           - Implemented remaining missing public instance properties
22597           - Alphabetized some out of order properties
22599 2004-09-10 05:51  ravindra
22601         * PictureBox.cs: Added a check for null image.
22603 2004-09-10 00:59  jordi
22605         * GroupBox.cs: remove cvs tag
22607 2004-09-09 05:25  ravindra
22609         * ToolBar.cs: Make redraw accessible from ToolBarButton.
22611 2004-09-09 05:23  ravindra
22613         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
22614           parent redraw.
22616 2004-09-09 02:28  pbartok
22618         * ThemeWin32Classic.cs:
22619           - Improve disabled string look
22621 2004-09-09 01:15  jordi
22623         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
22624           args and handler
22626 2004-09-08 23:56  ravindra
22628         * ItemBoundsPortion.cs: It's enum, not a class!
22630 2004-09-08 23:47  ravindra
22632         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
22633           Enums for Form.
22635 2004-09-08 21:13  ravindra
22637         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
22638           ListView control.
22640 2004-09-08 21:03  ravindra
22642         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
22643           avoid crash.
22645 2004-09-08 21:01  ravindra
22647         * ScrollableControl.cs: Removed unreachable code.
22649 2004-09-08 06:45  jordi
22651         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
22653 2004-09-08 01:00  jackson
22655         * XplatUIX11.cs: Only run the timers when updating the message
22656           queue. This effectively gives X messages a higher priority then
22657           timer messages. Timers still need love though
22659 2004-09-07 14:01  jackson
22661         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
22662           this for us and the handle is no longer valid.
22664 2004-09-07 13:59  jackson
22666         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
22667           loop that manages to not crash. TODO: Add poll and cleanup timers
22669 2004-09-07 11:12  jordi
22671         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
22673 2004-09-07 03:40  jordi
22675         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
22676           fixes, methods, multiple links
22678 2004-09-06 06:55  jordi
22680         * Control.cs: Caches ClientRectangle rectangle value
22682 2004-09-05 02:03  jordi
22684         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
22685           certain situations
22687 2004-09-04 11:10  jordi
22689         * Label.cs: Refresh when font changed
22691 2004-09-02 16:24  pbartok
22693         * Control.cs:
22694           - Added sanity check to creation of double buffer bitmap
22696 2004-09-02 16:24  pbartok
22698         * ButtonBase.cs:
22699           - Fixed selection of text color
22700           - Fixed handling of resize event; now properly recreates double
22701             buffering bitmap
22702           - Added missing assignment of TextAlignment
22703           - Added proper default for TextAlignment
22705 2004-09-02 14:26  pbartok
22707         * RadioButton.cs:
22708           - Added missing RadioButton.RadioButtonAccessibleObject class
22710 2004-09-02 14:26  pbartok
22712         * Control.cs:
22713           - Added missing Control.ControlAccessibleObject class
22714           - Started to implement Select()ion mechanisms, still very incomplete
22716 2004-09-02 14:25  pbartok
22718         * AccessibleObject.cs:
22719           - Added missing methods
22721 2004-09-02 14:23  pbartok
22723         * AccessibleNavigation.cs, AccessibleSelection.cs:
22724           - Initial check-in
22726 2004-09-02 10:32  jordi
22728         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
22729           pool for pens, brushes, and hatchbruses
22731 2004-09-01 15:30  jackson
22733         * StatusBar.cs: Fix typo
22735 2004-09-01 14:44  pbartok
22737         * RadioButton.cs:
22738           - Fixed state
22740 2004-09-01 14:39  pbartok
22742         * Button.cs, RadioButton.cs:
22743           - Functional initial check-in
22745 2004-09-01 14:01  pbartok
22747         * CheckBox.cs:
22748           - Added missing default
22749           - Added missing region mark
22751 2004-09-01 09:10  jordi
22753         * Label.cs: fixes method signatures, new methods, events, fixes
22754           autosize
22756 2004-09-01 07:19  jordi
22758         * Control.cs: Init string variables with an empty object
22760 2004-09-01 04:20  jordi
22762         * Control.cs: fires OnFontChanged event
22764 2004-08-31 20:07  pbartok
22766         * ButtonBase.cs:
22767           - Enabled display of strings
22769 2004-08-31 20:05  pbartok
22771         * Form.cs:
22772           - Added (partial) implementation of DialogResult; rest needs to be
22773             implemented when the modal loop code is done
22775 2004-08-31 19:55  pbartok
22777         * CheckBox.cs:
22778           - Fixed to match the removal of the needs_redraw concept
22780 2004-08-31 19:55  pbartok
22782         * ButtonBase.cs:
22783           - Removed the rather odd split between 'needs redraw' and redrawing
22784           - Now handles the events that require regeneration (ambient
22785             properties and size)
22787 2004-08-31 19:41  pbartok
22789         * Control.cs:
22790           - Added firing of BackColorChanged event
22791           - Added TopLevelControl property
22792           - Fixed handling of WM_ERASEBKGRND message
22794 2004-08-31 12:49  pbartok
22796         * ButtonBase.cs:
22797           - Removed debug
22798           - Minor fixes
22800 2004-08-31 12:48  pbartok
22802         * CheckBox.cs:
22803           - Finished (famous last words)
22805 2004-08-31 04:35  jordi
22807         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
22808           scrolling bugs, adds new methods
22810 2004-08-30 14:42  pbartok
22812         * CheckBox.cs:
22813           - Implemented CheckBox drawing code
22815 2004-08-30 14:42  pbartok
22817         * ButtonBase.cs:
22818           - Made Redraw() and CheckRedraw() virtual
22819           - Improved mouse up/down/move logic to properly track buttons
22821 2004-08-30 09:44  pbartok
22823         * CheckBox.cs:
22824           - Updated to fix broken build. Not complete yet.
22826 2004-08-30 09:28  pbartok
22828         * CheckState.cs:
22829           - Initial checkin
22831 2004-08-30 09:17  pbartok
22833         * Appearance.cs:
22834           - Initial check-in
22836 2004-08-27 16:12  ravindra
22838         * ToolBarButton.cs: Added TypeConverter attribute.
22840 2004-08-27 16:07  ravindra
22842         * ImageIndexConverter.cs: Implemented.
22844 2004-08-27 14:17  pbartok
22846         * Control.cs:
22847           - Removed unneeded stack vars
22848           - First attempt to fix sizing issues when layout is suspended
22850 2004-08-25 15:35  jordi
22852         * ScrollBar.cs: more fixes to scrollbar
22854 2004-08-25 14:04  ravindra
22856         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
22857           Added the missing divider code and grip for ToolBar Control.
22859 2004-08-25 13:20  pbartok
22861         * Control.cs:
22862           - Control now properly passes the ambient background color to child
22863             controls
22865 2004-08-25 13:20  jordi
22867         * ScrollBar.cs: small bug fix regarding bar position
22869 2004-08-25 12:33  pbartok
22871         * Timer.cs:
22872           - Now only calls SetTimer or KillTimer if the enabled state has
22873           changed
22875 2004-08-25 12:33  pbartok
22877         * XplatUIWin32.cs:
22878           - Fixed timer handling, now seems to work
22879           - Improved error message for window creation
22881 2004-08-25 12:32  pbartok
22883         * Control.cs:
22884           - Fixed generation of MouseUp message
22886 2004-08-25 12:29  jordi
22888         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
22889           and fixes for progressbar
22891 2004-08-24 18:43  ravindra
22893         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
22894           in ToolBar control.
22896 2004-08-24 17:15  pbartok
22898         * Panel.cs:
22899           - Added #region
22900           - Added missing events
22901           - Alphabetized
22903 2004-08-24 17:14  pbartok
22905         * StatusBar.cs, PictureBox.cs:
22906           - Now uses Control's CreateParams
22908 2004-08-24 16:36  pbartok
22910         * XplatUIX11.cs:
22911           - Fixed background color handling
22912           - Fixed sending of enter/leave events on a grab
22914 2004-08-24 16:35  pbartok
22916         * X11Structs.cs:
22917           - Refined definitions for CrossingEvent
22919 2004-08-24 12:37  jordi
22921         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
22922           formmating, methods signature, and adds missing events
22924 2004-08-24 12:24  jordi
22926         * Control.cs: fire OnEnabledChanged event
22928 2004-08-24 11:17  pbartok
22930         * XplatUIWin32.cs:
22931           - Implemented SetTimer() and KillTimer()
22933 2004-08-24 11:16  pbartok
22935         * XplatUIX11.cs:
22936           - Now uses Remove instead of Add to kill the timer
22938 2004-08-24 10:16  jackson
22940         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
22941           picture boxes in the theme now. Draw picture box borders and obey
22942           sizing modes
22944 2004-08-24 05:49  jackson
22946         * Timer.cs: Remove top secret debugging code
22948 2004-08-24 05:34  jackson
22950         * PictureBox.cs: Temp hack to make picture boxes draw their full
22951           image
22953 2004-08-24 05:29  jackson
22955         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22956           XplatUIX11.cs: Move timers to the driver level. On X they are
22957           queued by the driver and checked on idle.
22959 2004-08-24 01:07  jackson
22961         * XplatUIX11.cs: Use a queue for async messages instead of passing
22962           them as ClientMessages since that was totally broken. Also simply
22963           check for events and return an idle message if none are found. This
22964           gives us an idle handler, and prevents deadlocking when no messages
22965           are in the queue.
22967 2004-08-23 18:19  ravindra
22969         * XplatUIWin32.cs: Removed the unwanted destructor.
22971 2004-08-23 17:27  pbartok
22973         * ButtonBase.cs:
22974           - Finishing touches. Works now, just needs some optimizations.
22976 2004-08-23 16:53  jordi
22978         * ScrollBar.cs: small fix
22980 2004-08-23 16:45  pbartok
22982         * Application.cs:
22983           - Removed debug output
22984           - Simplifications
22986 2004-08-23 16:43  jordi
22988         * ScrollBar.cs: [no log message]
22990 2004-08-23 16:10  pbartok
22992         * Form.cs:
22993           - Fixed handling of WM_CLOSE message
22994           - Removed debug output
22996 2004-08-23 16:09  pbartok
22998         * Application.cs:
22999           - Added handling of Idle event
23000           - Added handling of form closing
23001           - Fixed reporting of MessageLoop property
23002           - Removed some unneeded code, should provide a bit of a speedup
23004 2004-08-23 15:22  pbartok
23006         * Control.cs:
23007           - Added InitLayout() method
23008           - Added code to properly perform layout when Anchor or Dock property
23009             is changed
23010           - Changed 'interpretation' of ResumeLayout. MS seems to have a
23011             LAMESPEC, tried to do it in a way that makes sense
23013 2004-08-23 14:10  jordi
23015         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
23016           properties and methods
23018 2004-08-23 13:55  pbartok
23020         * Control.cs:
23021           - Properly fixed Jordi's last fix
23022           - Now uses Cursor's Position property instead of calling XplatUI
23023           directly
23025 2004-08-23 13:44  jordi
23027         * PaintEventHandler.cs: Adding missing attribute
23029 2004-08-23 13:39  pbartok
23031         * Cursor.cs:
23032           - Implemented Position property
23034 2004-08-23 13:39  pbartok
23036         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
23037           - Added method to move mouse cursor
23039 2004-08-23 13:39  pbartok
23041         * XplatUIX11.cs:
23042           - Fixed setting of background color
23043           - Added method to move mouse cursor
23045 2004-08-23 13:16  jordi
23047         * Control.cs: avoids null exception
23049 2004-08-22 17:46  jackson
23051         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
23052           PictureBox
23054 2004-08-22 17:40  jackson
23056         * XplatUIX11.cs: Add some missing locks
23058 2004-08-22 15:10  pbartok
23060         * Control.cs, Form.cs:
23061           - Removed OverlappedWindow style from Control, instead it's default
23062             now is child
23063           - Made form windows OverlappedWindow by default
23065 2004-08-22 13:34  jackson
23067         * ScrollBar.cs: Update the position through the Value property so
23068           the OnValueChanged event is raised.
23070 2004-08-22 12:04  pbartok
23072         * SWF.csproj:
23073           - Added Cursor.cs and UserControl.cs
23075 2004-08-22 12:03  pbartok
23077         * Cursor.cs:
23078           - Started implementation, not usable yet
23080 2004-08-22 12:00  pbartok
23082         * UserControl.cs:
23083           - Implemented UserControl (complete)
23085 2004-08-21 19:20  ravindra
23087         * ToolBar.cs: Correcting the formatting mess of VS.NET.
23089 2004-08-21 18:49  ravindra
23091         * ToolBar.cs: Probably this completes the missing attributes in
23092           toolbar control.
23094 2004-08-21 18:03  ravindra
23096         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
23097           Fixed toolbar control signatures.
23099 2004-08-21 16:32  pbartok
23101         * LinkLabel.cs:
23102           - Signature Fixes
23104 2004-08-21 16:30  pbartok
23106         * Label.cs:
23107           - Signature fixes
23109 2004-08-21 16:19  pbartok
23111         * Control.cs, Label.cs:
23112           - Signature fixes
23114 2004-08-21 15:57  pbartok
23116         * ButtonBase.cs:
23117           - Added loads of debug output for development
23118           - Fixed typo in method name
23120 2004-08-21 15:52  pbartok
23122         * ToolBarButtonClickEventArgs.cs:
23123           - Added missing base class
23125 2004-08-21 14:53  pbartok
23127         * Control.cs:
23128           - Updated to match new GrabWindow signature
23130 2004-08-21 14:51  pbartok
23132         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
23133           - Added method to get default display size
23135 2004-08-21 14:23  pbartok
23137         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
23138           - Added method to query current grab state
23139           - Added argument to allow confining a grab to a window
23141 2004-08-21 14:22  pbartok
23143         * Keys.cs:
23144           - Added [Flags] attribute so that modifiers can be used in bitwise
23145           ops
23147 2004-08-21 14:21  pbartok
23149         * TrackBar.cs, ScrollBar.cs:
23150           - Replaced direct XplatUI calls with their Control counterpart
23152 2004-08-21 13:32  pbartok
23154         * Control.cs:
23155           - Implemented Created property
23157 2004-08-21 13:28  pbartok
23159         * Control.cs:
23160           - Implemented ContainsFocus
23162 2004-08-21 13:26  pbartok
23164         * Control.cs:
23165           - Implemented CausesValidation
23167 2004-08-21 13:21  pbartok
23169         * Control.cs:
23170           - Implemented CanFocus
23171           - Implemented CanSelect
23172           - Implemented Capture
23174 2004-08-21 12:35  pbartok
23176         * XplatUIWin32.cs:
23177           - Fixed bug with Async message handling
23178           - Implemented getting the ModifierKeys
23180 2004-08-21 12:32  jackson
23182         * AsyncMethodResult.cs: Make sure we have the mutex before we
23183           release it. Fixes BeginInvoke on windows
23185 2004-08-21 11:31  pbartok
23187         * XplatUIWin32.cs, XplatUIX11.cs:
23188           - Drivers now return proper mouse state
23190 2004-08-21 10:54  jackson
23192         * Control.cs: Implement EndInvoke
23194 2004-08-21 10:48  jackson
23196         * Timer.cs: Remove unneeded finalizer
23198 2004-08-20 19:52  ravindra
23200         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
23201           in mouse event handling in the ToolBar control.
23203 2004-08-20 19:50  ravindra
23205         * ImageList.cs: Changed draw method to use the arguments passed in
23206           to draw the image.
23208 2004-08-20 18:58  pbartok
23210         * XplatUIStructs.cs:
23211           - Added private message for async communication
23213 2004-08-20 17:38  ravindra
23215         * Control.cs: Made RightToLeft property virtual and removed a
23216           Console.WriteLine.
23218 2004-08-20 14:39  jordi
23220         * ThemeGtk.cs: use style_attach
23222 2004-08-20 14:39  pbartok
23224         * XplatUIWin32.cs:
23225           - Added jackson's Async code from X11 to Win32
23227 2004-08-20 14:09  pbartok
23229         * SWF.csproj:
23230           - Added all new files
23232 2004-08-20 14:09  pbartok
23234         * Control.cs:
23235           - Added call to set window background color
23237 2004-08-20 14:03  pbartok
23239         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
23240           - Added method for setting the window background
23242 2004-08-20 14:02  pbartok
23244         * XplatUIWin32.cs:
23245           - Added method for setting the background color
23246           - Added handling for erasing the window background
23248 2004-08-20 13:45  jordi
23250         * TrackBar.cs: fixes timer, new properties and methods
23252 2004-08-20 13:34  jackson
23254         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
23255           correct thread
23257 2004-08-20 13:22  jackson
23259         * Timer.cs: Timer Tick events are now handed through Controls Async
23260           mechanism so the callbacks are executed in the same thread as X
23262 2004-08-20 13:19  jackson
23264         * XplatUIDriver.cs: Expose functionality to send async messages
23265           through the driver
23267 2004-08-20 13:18  jackson
23269         * Control.cs: Implement Begininvoke
23271 2004-08-20 13:14  jackson
23273         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
23274           messages through the driver
23276 2004-08-20 13:12  jackson
23278         * XplatUIX11.cs: Lock before all X operations. Also added Async
23279           method functionality through XSendEvent
23281 2004-08-20 13:11  jackson
23283         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
23284           This will screw up on 64 bit systems)
23286 2004-08-20 13:10  jackson
23288         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
23289           Async messages through X/Win32
23291 2004-08-19 19:39  pbartok
23293         * XplatUIX11.cs:
23294           - Updated code to match new HandleData.DeviceContext type
23296 2004-08-19 19:38  pbartok
23298         * HandleData.cs:
23299           - Made DeviceContext a generic object to allow usage from various
23300           drivers
23301           - Added support for queueing Windows messages
23303 2004-08-19 19:37  pbartok
23305         * XplatUIWin32.cs:
23306           - Added generation of MouseEnter, MouseLeave and MouseHover events
23307           - Added cleanup on EndPaint
23309 2004-08-19 19:17  pbartok
23311         * Control.cs:
23312           - Added handling of WM_MOUSEHOVER
23313           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
23314           code
23316 2004-08-19 18:55  jordi
23318         * ThemeGtk.cs: fixes button order
23320 2004-08-19 18:12  jordi
23322         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
23324 2004-08-19 17:09  pbartok
23326         * Control.cs:
23327           - Added Right property
23328           - Added RightToLeft property
23330 2004-08-19 16:27  jordi
23332         * ThemeGtk.cs: experimental GTK theme support
23334 2004-08-19 16:26  jordi
23336         * ITheme.cs, Theme.cs: move themes from an interface to a class
23338 2004-08-19 16:25  jordi
23340         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
23341           theme enhancaments
23343 2004-08-19 16:04  pbartok
23345         * XplatUIX11.cs:
23346           - Added colormap basics
23347           - Added a way to re-initialize with a different display handle
23348           - Fixed setting of the window background color
23349           - Added various X11 imports related to colors and colormaps
23351 2004-08-19 15:51  pbartok
23353         * X11Structs.cs:
23354           - Removed packing hints (Paolo suggested this a while back)
23355           - fixed colormap type
23356           - Added default Atom types
23357           - Added Screen and color structs and enums
23359 2004-08-19 15:39  pbartok
23361         * ImageList.cs:
23362           - Added missing Draw() method
23363           - Added missing RecreateHandle event
23365 2004-08-19 15:30  pbartok
23367         * Form.cs:
23368           - Added handling of WM_CLOSE
23370 2004-08-18 13:16  jordi
23372         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
23373           a table
23375 2004-08-18 09:56  jordi
23377         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
23379 2004-08-17 15:31  ravindra
23381         * SWF.csproj: Updated project.
23383 2004-08-17 15:25  pbartok
23385         * Control.cs:
23386           - Drawing improvement; don't call UpdateBounds if we are not visible
23387             (or have been minimized)
23389 2004-08-17 15:24  pbartok
23391         * XplatUIWin32.cs:
23392           - Finished IsVisible
23393           - Added Win32GetWindowPlacement
23395 2004-08-17 15:08  jackson
23397         * Panel.cs: Initial checkin of the Panel
23399 2004-08-17 14:25  pbartok
23401         * Control.cs:
23402           - Fixed broken handling of default window sizes
23404 2004-08-17 13:29  jackson
23406         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
23407           has a large startup time.
23409 2004-08-17 10:25  jackson
23411         * HandleData.cs: union areas properly
23413 2004-08-17 10:12  jackson
23415         * HandleData.cs: union areas properly
23417 2004-08-16 20:00  ravindra
23419         * ToolBar.cs, ToolBarButton.cs: Added attributes.
23421 2004-08-16 18:48  ravindra
23423         * ToolBar.cs: Added attributes.
23425 2004-08-16 17:17  ravindra
23427         * SWF.csproj: Updated project.
23429 2004-08-16 17:16  jackson
23431         * XplatUIX11.cs: Check for more expose events before sending a
23432           WM_PAINT so they can all be grouped together. This makes dragging a
23433           window across another window redraw in a sane way.
23435 2004-08-16 15:47  pbartok
23437         * Control.cs:
23438           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
23439             support OnMouseEnter/Leave()
23440           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
23441             exposure handling
23443 2004-08-16 15:46  pbartok
23445         * XplatUIStructs.cs, XplatUIX11.cs:
23446           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
23447           OnMouseEnter/Leave()
23449 2004-08-16 15:34  jackson
23451         * XplatUIX11.cs: Group multiple expose events in HandleData, make
23452           sure messages get the message field set to WM_NULL if they are not
23453           handled.
23455 2004-08-16 15:24  jackson
23457         * HandleData.cs: HandleData is used for storing message information
23458           for window handles
23460 2004-08-15 17:23  ravindra
23462         * ColorDepth.cs: Added attribute.
23464 2004-08-15 17:23  ravindra
23466         * SWF.csproj: Updated project for ToolBar Control.
23468 2004-08-15 17:20  ravindra
23470         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
23471           control and also dos2unix format.
23473 2004-08-15 17:13  ravindra
23475         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
23476           ToolBarButtonClickEventArgs.cs,
23477           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
23478           ToolBarTextAlign.cs: First Implementation of ToolBar control.
23480 2004-08-15 15:31  pbartok
23482         * ButtonBase.cs:
23483           - First (mostly) working version
23485 2004-08-13 16:15  pbartok
23487         * Control.cs:
23488           - Fixed Anchor default
23490 2004-08-13 15:43  pbartok
23492         * Control.cs:
23493           - Changed GetCursorPos signature
23495 2004-08-13 15:42  pbartok
23497         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
23498           - Changed signature for GetCursorPos
23500 2004-08-13 15:25  pbartok
23502         * XplatUIX11.cs:
23503           - Cleanup
23504           - Fixed resizing/exposure handling
23506 2004-08-13 15:22  jordi
23508         * ThemeWin32Classic.cs: removes redundant code and fixes issues
23509           with tickposition
23511 2004-08-13 14:55  jordi
23513         * TrackBar.cs: change from wndproc to events
23515 2004-08-13 13:00  jordi
23517         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
23518           XplatUIX11.cs: implements PointToClient (ScreenToClient)
23520 2004-08-13 12:53  pbartok
23522         * XplatUIWin32.cs:
23523           - Changed GetWindowPos to also provide client area size
23524           - Fixed broken prototypes for several win32 functions
23526 2004-08-13 12:53  pbartok
23528         * XplatUI.cs, XplatUIDriver.cs:
23529           - Changed GetWindowPos to also provide client area size
23531 2004-08-13 12:52  pbartok
23533         * XplatUIX11.cs:
23534           - Added generation of WM_POSCHANGED
23535           - Changed GetWindowPos to also provide client area size
23537 2004-08-13 12:52  pbartok
23539         * Control.cs:
23540           - Added Dispose() and destructor
23541           - Fixed resizing and bounds calculation
23542           - Fixed Layout
23543           - Added memory savings for invisible windows
23545 2004-08-13 12:46  jordi
23547         * TrackBar.cs: adds timer and grap window
23549 2004-08-13 10:25  jackson
23551         * Timer.cs: SWF Timer
23553 2004-08-12 16:59  pbartok
23555         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
23556           - Implemented method to get current mouse position
23558 2004-08-12 14:29  jordi
23560         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
23561           enhancement, fix mouse problems, highli thumb, etc
23563 2004-08-12 13:31  pbartok
23565         * Control.cs:
23566           - Fixed Anchoring bugs
23568 2004-08-12 13:01  jackson
23570         * StatusBar.cs: Don't forget things
23572 2004-08-12 12:54  jackson
23574         * ThemeWin32Classic.cs: Handle owner draw status bars
23576 2004-08-12 12:54  jackson
23578         * StatusBar.cs: Implement missing properties, events, and methods.
23579           Handle mouse clicking
23581 2004-08-12 10:19  jackson
23583         * StatusBarPanelClickEventArgs.cs,
23584           StatusBarPanelClickEventHandler.cs: Classes for handling status
23585           bar panel click events
23587 2004-08-12 10:10  jackson
23589         * Control.cs: Add missing properties
23591 2004-08-12 09:46  pbartok
23593         * BindingsManagerBase.cs:
23594           - Name changed to BindingManagerBase.cs
23596 2004-08-12 09:25  jordi
23598         * ScrollableControl.cs: calls ctrlbase instead of exeception
23600 2004-08-11 16:28  pbartok
23602         * InputLanguageChangingEventArgs.cs:
23603           - Never check in before compiling. Fixes the last check-in
23605 2004-08-11 16:26  pbartok
23607         * InputLanguageChangingEventArgs.cs:
23608           - More signature fixes
23610 2004-08-11 16:20  pbartok
23612         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
23613           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
23614           ImageListStreamer.cs, InputLanguage.cs,
23615           InputLanguageChangedEventArgs.cs,
23616           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
23617           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
23618           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
23619           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
23620           - Signature fixes
23622 2004-08-11 16:16  pbartok
23624         * Application.cs:
23625           - Fixed Signature
23626           - Added .Net 1.1 method
23628 2004-08-11 15:25  pbartok
23630         * SWF.csproj:
23631           - Fixed BindingManagerBase.cs filename
23633 2004-08-11 15:22  pbartok
23635         * BindingManagerBase.cs:
23636           - Was checked in with wrong filename
23638 2004-08-11 14:50  pbartok
23640         * SWF.csproj:
23641           - Updated
23643 2004-08-11 13:41  jordi
23645         * XplatUIWin32.cs: Fixes ClientRect
23647 2004-08-11 13:19  pbartok
23649         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
23650           XplatUIX11.cs:
23651           - We had SetWindowPos and MoveWindow to set window positions and
23652             size, removed MoveWindow. We have GetWindowPos, so it made sense to
23653             keep SetWindowPos as matching counterpart
23654           - Added some X11 sanity checking
23656 2004-08-11 12:59  pbartok
23658         * Control.cs:
23659           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
23660             (It seems that SetBounds is just a front for SetBoundsCore and
23661              SetBoundsCore updates the underlying window system and
23662              UpdateBounds is responsible for updating the variables associated
23663              with the Control and sending the events)
23664           - Major cleanup of Size handling; we now have two sizes, client_size
23665             and bounds. Bounds defines the window with decorations, client_size
23666             without them.
23668 2004-08-11 12:55  pbartok
23670         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
23671           - Added method to calculate difference between decorated window and
23672             raw client area
23674 2004-08-11 12:54  pbartok
23676         * Label.cs:
23677           - Forcing redraw on resize
23679 2004-08-11 11:43  pbartok
23681         * ImageList.cs:
23682           - Removed disposing of the actual images when the list is disposed
23684 2004-08-11 09:13  pbartok
23686         * Control.cs:
23687           - Now properly reparents windows
23689 2004-08-11 08:37  pbartok
23691         * Control.cs:
23692           - Duh!
23694 2004-08-11 07:47  pbartok
23696         * Control.cs:
23697           - Rewrote the collection stuff. Might not be as fast now, not
23698             keeping the number of children around and accessible directly, but
23699             it's more straightforward
23701 2004-08-11 07:44  pbartok
23703         * AccessibleObject.cs:
23704           - Fixed to match ControlCollection rewrite
23706 2004-08-11 07:43  pbartok
23708         * ImageList.cs:
23709           - Added missing creation of the collection list
23711 2004-08-10 20:08  jackson
23713         * StatusBar.cs: Get the paint message from WndProc
23715 2004-08-10 19:31  jackson
23717         * ThemeWin32Classic.cs: Create Brushes as little as possible
23719 2004-08-10 19:20  jackson
23721         * UICues.cs: Add Flags attribute
23723 2004-08-10 19:19  jackson
23725         * StatusBarPanel.cs: Signature cleanup
23727 2004-08-10 19:10  jackson
23729         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
23730           Initial implementation of status bar item drawing
23732 2004-08-10 17:27  jordi
23734         * TrackBar.cs: add missing methods, properties, and restructure to
23735           hide extra ones
23737 2004-08-10 16:24  jackson
23739         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
23740           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
23741           attribute
23743 2004-08-10 13:21  jordi
23745         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
23746           enhancements and standarize on win colors defaults
23748 2004-08-10 12:52  jackson
23750         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
23751           ThemeWin32Classic.cs: Implement DrawItem functionality
23753 2004-08-10 12:47  jordi
23755         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
23757 2004-08-10 12:32  jordi
23759         * Control.cs: throw ontextchange event
23761 2004-08-10 11:43  pbartok
23763         * Control.cs:
23764           - Added more to the still unfinished Dock/Anchor layout code
23766 2004-08-10 11:39  pbartok
23768         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
23769           - Added GetWindowPos method
23771 2004-08-10 11:36  pbartok
23773         * XplatUIWin32.cs:
23774           - Implemented several methods
23776 2004-08-10 09:47  jackson
23778         * TrackBar.cs: Allow control to handle buffering
23780 2004-08-10 09:41  jackson
23782         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
23784 2004-08-10 09:24  jackson
23786         * Label.cs, LinkLabel.cs: Let Control handle buffering.
23788 2004-08-10 09:09  jackson
23790         * StatusBar.cs: Let Control handle all the buffering.
23792 2004-08-10 09:08  jackson
23794         * Control.cs: Control will now handle the buffering code, so each
23795           control does not have to implement this.
23797 2004-08-10 08:34  jackson
23799         * XplatUIDriver.cs: Use default colors from the theme
23801 2004-08-09 17:12  pbartok
23803         * ImageList.cs:
23804           - Fixed several bugs Ravindra pointed out
23806 2004-08-09 16:11  pbartok
23808         * Control.cs:
23809           - Added incomplete dock layout code
23810           - Added support for mouse wheel
23812 2004-08-09 16:09  pbartok
23814         * XplatUIX11.cs:
23815           - Added handling for middle and right mousebutton
23816           - Added handling for mouse wheel
23817           - Added handling for key state and mouse state and position
23818           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
23819           messages
23821 2004-08-09 15:40  jackson
23823         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
23824           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
23825           checkin
23827 2004-08-09 15:37  jackson
23829         * StatusBar.cs: Initial implementation of StatusBar
23831 2004-08-09 15:36  jackson
23833         * ITheme.cs: Add support for drawing status bar and getting status
23834           bar item sizes
23836 2004-08-09 15:35  pbartok
23838         * MouseButtons.cs:
23839           - Fixed values
23841 2004-08-09 15:34  jackson
23843         * ThemeWin32Classic.cs: Add support for drawing status bar and get
23844           status bar item sizes
23846 2004-08-09 15:21  jackson
23848         * ThemeWin32Classic.cs: Use known colors for default control
23849           colours
23851 2004-08-09 15:12  jackson
23853         * ThemeWin32Classic.cs: Make the default font static, it is static
23854           in control so this doesn't change functionality and creating fonts
23855           is sloooooow.
23857 2004-08-09 14:56  pbartok
23859         * X11Structs.cs:
23860           - Added GrabMode enum
23862 2004-08-09 14:55  pbartok
23864         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
23865           - Removed Run method, was only required for initial development
23867 2004-08-09 14:51  pbartok
23869         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
23870           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
23871           capture
23873 2004-08-09 13:48  pbartok
23875         * XplatUIX11.cs:
23876           - Fixed default sizing for child windows
23878 2004-08-09 12:56  pbartok
23880         * XplatUIX11.cs:
23881           - Added generation of WM_DESTROY message
23882           - Added handling of window manager induced shutdown
23884 2004-08-09 11:31  jackson
23886         * ThemeWin32Classic.cs: New names for control properties
23888 2004-08-09 11:25  jackson
23890         * Control.cs: Use new color names
23892 2004-08-09 11:02  jackson
23894         * XplatUI.cs: Get default window properties from the theme
23896 2004-08-09 11:01  jackson
23898         * ITheme.cs: The theme engine now controls default window
23899           properties
23901 2004-08-09 11:00  jackson
23903         * ThemeWin32Classic.cs: Add default window color properties
23905 2004-08-09 10:17  jackson
23907         * ThemeWin32Classic.cs: Use correct default back color
23909 2004-08-09 10:05  jackson
23911         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
23912           the theme now.
23914 2004-08-09 09:56  jackson
23916         * XplatUI.cs: Remove defaults, these are handled by the theme now.
23918 2004-08-09 09:54  jackson
23920         * Control.cs: Get default properties from the theme.
23922 2004-08-09 09:53  jackson
23924         * ITheme.cs: Themes now handle default control properties
23926 2004-08-09 09:53  jackson
23928         * ThemeWin32Classic.cs: Themes now handle default control
23929           properties so coloring will be consistent
23931 2004-08-08 16:54  jordi
23933         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
23935 2004-08-08 15:08  jordi
23937         * XplatUIX11.cs: fixes keyboard crash
23939 2004-08-08 13:47  jordi
23941         * Label.cs: add cvs header info
23943 2004-08-08 12:09  jackson
23945         * ThemeWin32Classic.cs: Add pen_buttonface
23947 2004-08-08 11:52  jordi
23949         * Label.cs, LinkLabel.cs: [no log message]
23951 2004-08-08 11:34  jordi
23953         * ThemeWin32Classic.cs: Use Windows Standard Colours
23955 2004-08-07 17:32  jordi
23957         * TrackBar.cs: throw exceptions of invalid enums values
23959 2004-08-07 17:31  jordi
23961         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
23962           draw method name
23964 2004-08-07 16:56  jackson
23966         * HorizontalAlignment.cs: Initial checkin
23968 2004-08-07 13:16  jordi
23970         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
23971           methods
23973 2004-08-07 13:05  jordi
23975         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
23976           GetSysColor defines
23978 2004-08-06 18:01  pbartok
23980         * ThemeWin32Classic.cs:
23981           - Fixed some rounding issues with float/int
23983 2004-08-06 18:00  jackson
23985         * DockStyle.cs, AnchorStyles.cs:
23987                   Add flags and serializable attributes.
23989 2004-08-06 17:46  pbartok
23991         * XplatUIX11.cs:
23992           - Implemented GetParent
23994 2004-08-06 17:18  pbartok
23996         * TrackBar.cs:
23997           - Fixed some rounding issues with float/int
23999 2004-08-06 17:17  pbartok
24001         * X11Structs.cs, XplatUIX11.cs:
24002           - Fixed Refresh and Invalidate
24004 2004-08-06 15:30  pbartok
24006         * Control.cs, X11Structs.cs, XplatUIX11.cs:
24007           - Fixed recursive loop when resizing
24008           - Improved/fixed redrawing on expose messages
24010 2004-08-06 09:53  jordi
24012         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
24013           keyboard navigation
24015 2004-08-06 08:02  pbartok
24017         * X11Structs.cs, XplatUIX11.cs:
24018           - Fixed reparenting
24019           - Fixed window border creation
24021 2004-08-05 15:38  pbartok
24023         * XplatUIX11.cs:
24024           - Attempted fix for reparenting problems
24026 2004-08-04 15:14  pbartok
24028         * Control.cs:
24029           - Fixed Invalidation bug (calculated wrong client area)
24030           - Added ClientSize setter
24032 2004-08-04 15:13  pbartok
24034         * Form.cs:
24035           - Added AutoScale properties
24037 2004-08-04 15:13  pbartok
24039         * SWF.csproj:
24040           - Added latest files
24042 2004-08-04 14:11  pbartok
24044         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
24045           XplatUIX11.cs:
24046           - Added Invalidate handling
24048 2004-08-03 17:09  jordi
24050         * XplatUIDriver.cs: fixes spelling mistake
24052 2004-07-27 09:53  jordi
24054         * TrackBar.cs: fixes trackbar events, def classname, methods
24055           signature
24057 2004-07-27 09:29  jordi
24059         * ScrollBar.cs: fixes scrollbar events
24061 2004-07-27 04:38  jordi
24063         * Control.cs: changes to be able to run winforms samples
24065 2004-07-26 11:42  jordi
24067         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
24068           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
24070 2004-07-26 05:41  jordi
24072         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
24073           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
24074           implementation
24076 2004-07-22 09:22  jordi
24078         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
24079           check link overlapping, implement events, and fixes
24081 2004-07-21 10:28  jordi
24083         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
24085 2004-07-21 10:19  jordi
24087         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
24088           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
24089           LinkLabelLinkClickedEventArgs.cs,
24090           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
24091           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
24092           implementation
24094 2004-07-19 13:09  jordi
24096         * Control.cs, Label.cs: label control re-written: added missing
24097           functionlity, events, and properties
24099 2004-07-19 10:49  jordi
24101         * Control.cs: fixes SetBounds logic
24103 2004-07-19 01:29  jordi
24105         * Control.cs: Call RefreshWindow only if the window has created
24107 2004-07-15 14:05  pbartok
24109         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
24110           - Implemented ImageList and ImageList.ImageCollection classes
24111           - Added ColorDepth enumeration
24112           - Updated SWF VS.Net project
24114 2004-07-15 11:06  jordi
24116         * XplatUIStructs.cs: added MsgButons enum
24118 2004-07-15 11:03  jordi
24120         * Control.cs: added basic mouse handeling events
24122 2004-07-15 03:38  jordi
24124         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
24125           Vertical TrackBar control implementation
24127 2004-07-13 09:33  jordi
24129         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
24131 2004-07-13 09:31  jordi
24133         * Control.cs, Form.cs: commit: new properties and fixes form size
24134           problems
24136 2004-07-09 14:13  miguel
24138         * ProgressBar.cs: Spelling
24140 2004-07-09 11:25  pbartok
24142         * ProgressBar.cs:
24143           - Removed usage of Rectangle for drawing. Miguel pointed out it's
24144           faster
24146 2004-07-09 11:17  miguel
24148         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
24150                 * ProgressBar.cs: Fixed spelling for `block'
24152                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
24153                 style guidelines.
24155                 Avoid using the += on rect.X, that exposed a bug in the compiler.
24157 2004-07-08 23:21  pbartok
24159         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
24160           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
24161           BaseCollection.cs, Binding.cs, BindingContext.cs,
24162           BindingMemberInfo.cs, BindingsCollection.cs,
24163           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
24164           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
24165           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
24166           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
24167           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
24168           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
24169           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
24170           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
24171           FrameStyle.cs, GiveFeedbackEventArgs.cs,
24172           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
24173           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
24174           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
24175           InputLanguageChangedEventArgs.cs,
24176           InputLanguageChangedEventHandler.cs,
24177           InputLanguageChangingEventArgs.cs,
24178           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
24179           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
24180           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
24181           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
24182           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
24183           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
24184           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
24185           QueryAccessibilityHelpEventArgs.cs,
24186           QueryAccessibilityHelpEventHandler.cs,
24187           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
24188           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
24189           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
24190           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
24191           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
24192           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
24193           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
24194           XplatUIX11.cs, lang.cs:
24195           - Initial check-in