* TextControl.cs: Make PageUp and PageDown more like the
[mono-project.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
blob37e70deaa993de604a17944b9b0e0aa180402957
1 2006-11-14  Jackson Harper  <jackson@ximian.com>
3         * TextControl.cs: Make PageUp and PageDown more like the MS
4         versions.
6 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8         * Form.cs: if a mdi child's WindowState has changed
9         before it's creation, it would display wrong control
10         buttons.
11         
12 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
14         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
15           (Fixes bug #79927)
17 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
19         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
20         the window gets to paint its borders even if the window is
21         getting smaller.
22         
23         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
24         otherwise the old control buttons would still be painted 
25         if the window gets bigger.
26         
27         * PaintEventArgs.cs: add an internal method so that the clip 
28         rectangle can be changed.
29         
30 2006-11-13  Chris Toshok  <toshok@ximian.com>
32         [ fixes bug #79745 ]
33         
34         * NotifyIcon.cs: lots of cleanup.
36         * X11Structs.cs: add an enum for XEMBED messages.
38         * XplatUIX11.cs: reindent one of the giant switch statements, it
39         was taking up an additional tab stop, and this file is already way
40         too wide for my laptop's screen.
42         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
43         we get it, resize the hwnd to the WMNormalHints max_width/height.
45 2006-11-13  Jackson Harper  <jackson@ximian.com>
47         * TextBoxBase.cs: Compute the value changes for the mouse wheel
48         teh simple way.
50 2006-11-13  Chris Toshok  <toshok@ximian.com>
52         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
53         #79898.  force a reference to the Region to stick around so the
54         unmanaged object isn't collected (rendering our handle in the MSG
55         stale).
57 2006-11-13  Chris Toshok  <toshok@ximian.com>
59         * XplatUIX11.cs: fix #79917 for window managers which support
61         using XStoreName on the raw utf8, and we need to convert to
62         COMPOUND_TEXT if it's non-latin1.
64 2006-11-13  Chris Toshok  <toshok@ximian.com>
66         * Form.cs (set_DialogResult): we need to set closing to false if
67         we're setting our result to None.  fixes bug #79908.
69 2006-11-13  Jackson Harper  <jackson@ximian.com>
71         * TextControl.cs: When formatting text, compute the adjusted tag
72         lengths correctly, using FindTag for the end tag instead of trying
73         to figure it out outselves.
74         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
75         the item, ItemHeight doesn't work, because trees with large
76         imagelists use those for their height
77         * TreeView.cs: ActualItemHeight factors in the image height
78         - compute left edge of checkboxes correctly
79         - when expanding/collapsing move the bottom down one pixel, so we
80         aren't moving part of the node
82 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
84         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
85         stack in PaintEventStart so that it won't get disposed by the gc
86         before reaching PaintEventEnd.
88 2006-11-13  Jackson Harper  <jackson@ximian.com>
90         * TextBoxBase.cs: Don't select the word if we are on a line with
91         no text.
92         - We don't need to position the caret on mouse up, since the mouse
93         move handler should be doing this
94         - When double clicking a blank line, the caret is advanced to the
95         next line.
97 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
99         * TreeNodeCollection.cs: Avoid duplicating indexer code.
101 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
103         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
104         Fixes part of bug #79910.
106 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
108         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
109           (bug #79903). Some minor string updates to match ms.
111 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
113         * FileDialog.cs: Don't add an extension if the filename
114           already ends with that extension.
116 2006-11-10  Jackson Harper  <jackson@ximian.com>
118         * TreeView.cs: Use the currently highlighted node for the
119         BeforeSelect event.
120         * TextBoxBase.cs: There is no need to expand selection on
121         MouseMove.
122         - CanUndo means 'is there any undo operations', not 'is undo
123         allowed on this textcontrol. Fixed ClearUndo unit test.
125 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
127         * Button.cs: only perform click when button is Selectable (so as 
128         not to activate default buttons when they're disabled)
129         
130         * Control.cs: Rewrite of the SelectNextControl and related 
131         methods. HandleClick now selects next control if the current one
132         is being disabled.
133         
134         * Form.cs: OnActivated selects next active control only if Load 
135         has already occurred. If Load hasn't run, there's no point in 
136         selecting here, Load might change the state of controls.
137         
138         * FocusTest.cs: Tests marked as working again for these fixes
140 2006-11-10  Chris Toshok  <toshok@ximian.com>
142         * XplatUIX11.cs: a couple of fixes.
144         - use XInternAtoms with almost all the atoms we need to register,
145         instead of many, many calls to XInternAtom.  should help a bit on
146         startup time, at the expense of making the code look a little
147         worse.
149         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
150         isn't reparented (which seems to be a clue that we're running fon
151         compiz) and they have an Owner form.  This fixes the tool windows
152         in paint.net when running under compiz.
154         - when setting the opacity of a window, support both the case
155         where the window has been reparented and also when it hasn't been.
156         Since compiz/beryl doesn't seem to reparent windows, and these are
157         the only window managers which support translucency, I'm not sure
158         why we need the hwnd.reparented case at all.. but leave it in.
159         now we get translucent windows in paint.net under compiz/beryl.
161 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
163         * FileDialog.cs: Always return the value for FilterIndex that
164           was set. Internally convert it to values that make sense.
166 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
167         
168         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
170 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
172         * Toolbar.cs: Change default value of DropDownArrows to true, the 
173         signature still using false to make it compatible with MS but the 
174         initial value is true. Fixes #79855.
176 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
178         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
179           only available on Linux.
181 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
183         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
184         reduce number of calls to redraw method during toolbar creation.
186 2006-11-09  Mike Kestner  <mkestner@novell.com>
188         * ListView.cs : raise SelectedIndexChanged when an item is selected
189         programmatically via the Item.Selected property.  Gert's nice 
190         ListViewSelectedIndexChanged test fixture now runs clean.
192 2006-11-09  Mike Kestner  <mkestner@novell.com>
194         * ListView.cs : raise SelectedIndexChanged when a selected item is
195         removed from the item collection using Remove or RemoveAt.
197 2006-11-09  Mike Kestner  <mkestner@novell.com>
199         * ListView.cs : raise SelectedIndexChanged once per selected item
200         for compat with MS.  Fixes #79849+.
202 2006-11-09  Chris Toshok  <toshok@ximian.com>
204         * TabControl.cs: initialize row_count to 0, and set it to 1 when
205         we need to (if we have any tab pages).  Fixes unit test.
207 2006-11-09  Chris Toshok  <toshok@ximian.com>
209         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
210         width is 0, not 3.  Fixes a unit test.
212 2006-11-09  Mike Kestner  <mkestner@novell.com>
214         * ListView.cs : use Implicit scrollbars so that focus isn't 
215         stolen from the listview when they are clicked. Fixes #79850.
217 2006-11-09  Chris Toshok  <toshok@ximian.com>
219         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
220         have a root item.  Fixes #79879.
222 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
224         * FileDialog.cs:
225           - Fix ToString ()
226           - An ArgumentException is now thrown if a wrong filter
227             is applied (matches ms). The previous filter doesn't change
228             anymore if an exception is thrown.
229           - Changing the FileName property also affects FileNames
230         * ColorDialog.cs: The length of the CustomColors array is always
231           16. It doesn't matter if we use a smaller array or null to update
232           or change the custom colors property.
233         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
234           for RootFolder if we get a undefined value.
236 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
238         * StatusBarPanel.cs: 
239         - Width is set to MinWidth if Width is smaller than
240         MinWidth. Fixes #79842.
241         - MinWidth now always overrides Width (MSDN says MinWidth
242         is set to Width when AutoSize = None, but they do not 
243         behave like that).
244         - Style has now the the correct default value.
245         
246 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
248         * TrackBar.cs: 
249         - The control is completely invalidated on 
250         Got/LostFocus to draw the focus rectangle correctly.
251         - When AutoSize then height is always 45 (width for 
252         vertical controls).
253         
254         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
255         on the mouse when moved and it doesn't move when grabbed
256         until the mouse moves as well. Also fixed some wrong 
257         calculations when clicking on the thumb (control thought
258         click was outside of thumb and didn't grab it).
259         Fixes some of the issues in #79718.
261 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
263         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
265 2006-11-08  Chris Toshok  <toshok@ximian.com>
267         * PropertyGridView.cs: only call ToggleValue if the item is not
268         readonly.
270 2006-11-08  Jackson Harper  <jackson@ximian.com>
272         * TextBoxBase.cs: The RichTextBox and textbox have very different
273         word selection methods.  Implement the textbox's simple word
274         selection here, and let the RichTextBox override and provide it's
275         own.
276         - Don't do extra selection on mouseup
277         * RichTextBox.cs: Use the documents word selection algorithm, I
278         think ideally, this function will be pulled into the
279         RichTextBox.cs code someday.
281 2006-11-08  Chris Toshok  <toshok@ximian.com>
283         * RootGridEntry.cs: new class to represent GridItemType.Root.
285         * CategoryGridEntry.cs: reformat, and add boilerplate.
286         
287         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
288         returns the UI parent anyway, and we need special handling to
289         implement the GetTarget method in the face of it.  Also, implement
290         Select().
292         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
293         a root grid item, and use that instead of PropertyGrid.grid_items.
294         Also, make use of TypeConverters (and add limitted support for
295         ICustomTypeDescriptors) when initially populating the grid.
296         Arrays now show up more or less properly.
298 2006-11-08  Chris Toshok  <toshok@ximian.com>
300         * Application.cs: set the modal dialog to non modal after we close
301         it.  Fixes bug #79866.
303 2006-11-08  Jackson Harper  <jackson@ximian.com>
305         * TextControl.cs: When combining lines carry over the line end
306         style from the end line.
307         - Invalidate the selected area when setting it, if it is visible.
308         * TextBoxBase.cs: Only rich text box can do full line selects.
309         - Make sure to set the cursor position when there is a click,
310         otherwise two clicks in separate areas could cause a large chunk
311         to be selected.
313 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
315         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
316         Fixes #79863.
318 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
320         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
321         time. Remove tooltips when ToolButton click events.  Fixes #79856.
323 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
325         * MenuAPI.cs: Ignore right click for menu actions and fixes
326         menu border when clicked.  Fixes #79846.
328 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
330         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
331         MouseState after create wParam for message, this fixes mouse button 
332         equal none in mouse up events.
333         
334 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
336         * Control.cs : Focus() now calls Select to set the Container's
337         Active Control and to give it focus. To avoid infinite recursion
338         (because ActiveControl also calls Focus at one point), a check 
339         is made in Focus with the help of a new internal variable
340         is_focusing.
342 2006-11-07  Mike Kestner  <mkestner@novell.com>
344         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
345         if there's a selection.  Fixes #79849.
347 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
349         * PropertyGrid.cs: Avoid fixed height of help description label.
350         Fixes part of bug #79829.
352 2006-11-07  Chris Toshok  <toshok@ximian.com>
354         * XplatUIX11.cs: fix #79790 again, by using the
355         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
357 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
359         * ToolBar.cs: Fix left click checking.
361 2006-11-07  Chris Toshok  <toshok@ximian.com>
363         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
365 2006-11-07  Chris Toshok  <toshok@ximian.com>
367         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
368         PropertyManager unit tests.
370         * PropertyManager.cs: make property_name internal.
372 2006-11-07  Chris Toshok  <toshok@ximian.com>
374         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
375         pass a unit test.  Also, don't set image_index to anything in
376         response to setting the ImageList property.
378 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
380         * ToolBar.cs: Ignore click events when mouse button is not a
381         left button, only accepts other button for dropdown menus.  
382         Fixes #79854.
384 2006-11-07  Chris Toshok  <toshok@ximian.com>
386         * DataGrid.cs: make the back and parent row buttons a little less
387         ugly.
389 2006-11-07  Jackson Harper  <jackson@ximian.com>
391         * TextBoxBase.cs: When converting to Text don't put line breaks in
392         for soft line breaks.
393         * TextControl.cs: There is an initial "fake" line in the document,
394         this is now a soft break line, so that an extra line feed doesn't
395         get added to the end of documents.
397 2006-11-07  Chris Toshok  <toshok@ximian.com>
399         [ fix bug #79778 ]
400         
401         * CurrencyManager.cs: if the list is readonly, don't bother
402         checking if IBindingList.AllowNew is true.
404         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
405         for non-DataRowView datasources..  or rather, make it not crash.
406         (DataGridPaintRelationRow): make sure we limit the row painting to
407         the area not covered by the row header, and make our cell width at
408         least large enough to cover the relation area.  This allows grids
409         that have relations but no rows to render correctly.
410         (DataGridPaintRowContents): same type of changes here.
411         (SetDataSource): move back to always calling
412         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
413         navigating back through relations.
414         (HitTest): handle the case where we have no cells but have
415         relations.  Right now we generate a hit in cell 0 of whatever the
416         row is, not sure if this is strictly correct, but it works for our
417         purposes.
418         
419         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
420         bother doing anything.
422 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
424         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
425         early version of StatusStrip.  Not responsible for eaten
426         application or firstborn children.
428 2006-11-06  Chris Toshok  <toshok@ximian.com>
430         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
431         call GetTabRect with a -1 index.  Fixes #79847.
433 2006-11-06  Jackson Harper  <jackson@ximian.com>
435         * TreeNodeCollection.cs: Update scrollbars after clearing.
437 2006-11-06  Chris Toshok  <toshok@ximian.com>
439         * NumericUpDown.cs: fix the ToString method for some unit test
440         love.
442 2006-11-06  Chris Toshok  <toshok@ximian.com>
444         * PropertyGrid.cs:
445         - set the initial SelectedGridItem if we can.
447         - Exclude non-mergable properties only if we're merging > 1
448         object.  Merging 1 object isn't really merging, obviously.
450         - Handle PropertySort.NoSort just like Alphabetical, which is
451         wrong of course, but at least gets things on the screen.
452         
453         * PropertyGridView.cs:
454         - Add method "FindFirstItem" which finds the first property grid
455         item, so we can select it by default.
457         - make use of GridEntry.CanResetValue.
459         - Don't call RedrawBelowItemOnExpansion here anymore, the
460         individual GridEntry's will do that.
462         - Remove the ITypeDescriptorContextImpl internal class.
463         
464         * GridEntry.cs:
465         - this class needs to implement ITypeDescriptorContext, as it's
466         what MS's PropertyDescriptorGridEntry does, which means we can
467         remove the ITypeDescriptorContextImpl internal class from
468         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
470         - keep a reference to our PropertyGridView, and move the call to
471         RedrawBelowItemOnExpansion here from PGV.  This means
472         programmaticly setting Expanded actually does something visible.
474         - add a CanResetValue() function which takes into account our
475         possibly multiple "selected_objects" in the merged case.  Shifting
476         PropertyGridView to use this method fixes another unreported
477         crasher found running the test for #79829.
479         - when Top or Bounds is updated, make sure the PropertyGridTextBox
480         is updated to reflect this.
482         * CategoryGridEntry.cs: the ctor takes the PGV now.
483         
484 2006-11-06  Jackson Harper  <jackson@ximian.com>
486         * TextControl.cs: These are 1 based.
487         * TextBoxBase.cs: When setting the selected text, don't change the
488         selected text tags, this is done by ReplaceText, just position the
489         cursor at the end of the new text.
491 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
493         * ListView.cs: Allow label edit only when, when LabelEdit is
494           set to true.
496 2006-11-06  Jackson Harper  <jackson@ximian.com>
498         * TextControl.cs: If a suitable wrapping position isn't found,
499         just wrap right in the middle of a word.
501 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
503         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
504           bug #79820.
506 2006-11-06  Jackson Harper  <jackson@ximian.com>
508         * TreeView.cs: Can't use the VisibleCount property when setting
509         scrollbar heights, because this doesn't take into account whether
510         or not the horz scrollbar just came visible.
512 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
514         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
515         activated.  Fixes #79369, #79832.
517 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
519         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
520           had to remove support for links that point to a directory. FileInfo
521           returns no usefull information (means, the directory they point to)
522           for such links. Replaced some empty string ("") with String.Empty.
524 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
526         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
527         NullReferenceException when attempting to remove node that is not in
528         collection. Throw NullReferenceException when null is passed to 
529         Remove. Allow first element of the collection to be removed. Fixes
530         bug #79831.  In GetEnumerator ().Current return null if positioned 
531         before the first element of the collection. In GetEnumerator ().Reset,
532         position before first element of the collection.
534 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
536         * PropertyGrid.cs: To match MS, remove default title and description
537         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
538         buttons.
540 2006-11-04  Chris Toshok  <toshok@ximian.com>
542         * Theme.cs: add a Clamp method, just for kicks.
544         * ThemeWin32Classic.cs: clamp all color components to [0..255].
546 2006-11-04  Chris Toshok  <toshok@ximian.com>
548         * Form.cs: if the form isn't visible, Close() does nothing.
550 2006-11-03  Chris Toshok  <toshok@ximian.com>
552         * Form.cs (Close): if the form is modal, don't Dispose of it, only
553         Hide it.
554         (WndProc): don't Dispose after handling the WM_CLOSE message.
556         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
557         them as such, instead of using casts from Control to Form.  Also,
558         don't Dispose of the modal dialog when we fall out of the loop -
559         Close() it instead.
561         fixes bug #79813.
563 2006-11-03  Chris Toshok  <toshok@ximian.com>
565         * Control.cs (Dispose): only go through the dispose thing if we're
566         @disposing, and we haven't already been disposed.  Fixes bug
567         #79814.
569         * Form.cs: no reason to call "base.Dispose()" here instead of
570         "Dispose()".
572 2006-11-03  Mike Kestner  <mkestner@novell.com>
574         * ComboBox.cs : use ToString instead of casts in AddItem for
575         sorting functionality.  Fixes #79812.
577 2006-11-03  Chris Toshok  <toshok@ximian.com>
579         * Application.cs: pave the way for actually using the thread
580         exception dialog.  it's ifdefed out at the moment.
582 2006-11-03  Chris Toshok  <toshok@ximian.com>
584         * ThreadExceptionDialog.cs: until we get a better layout, actually
585         hide the details textbox and label when we shouldn't see them.
587 2006-11-03  Jackson Harper  <jackson@ximian.com>
589         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
590         multiline textboxes anymore.  This method also determines the
591         width/height of a textboxes canvas area.
592         - Sorta a revert of the last patch.  For multiline just position
593         the controls, then bail.  This way the scrollbar width won't be
594         altered.
596 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
598         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
599         it dont need.  Fixes #79537.
601 2006-11-02  Jackson Harper  <jackson@ximian.com>
603         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
604         send the status after firing the DndOver event.
606 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
608         * TrackBar.cs: Now orientation only switches height / width if
609         the control's handle is created (Win32 does it like this). Also 
610         fixed a typo in ToString() for a test to pass, changed the 
611         exception thrown in set_LargeChange and set_SmallChange to 
612         match Win32 behaviour, and added TrackBar tests to the unit 
613         tests.
615 2006-11-02  Chris Toshok  <toshok@ximian.com>
617         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
618         not _NET_WM_STATE_NO_TASKBAR.
620 2006-11-02  Jackson Harper  <jackson@ximian.com>
622         * TextControl.cs: Increment count by one, since in the update view
623         count - 1 is used.
625 2006-11-02  Jackson Harper  <jackson@ximian.com>
627         * TextBoxBase.cs: Use client rectangle not bounds for checking if
628         the mouse is in the client rectangle (duh).
630 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
631         
632         * TrackBar.cs: Fixed trackbar jumping around when clicking
633         on it - the trackbar was not detecting correctly at which
634         side of the thumb the click was done. (fixes #79718)
636 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
638         * ListBox.cs: scroll visible area when change SelectedIndex to
639         a non visible area.  Fixes #79481.
641 2006-11-01  Jackson Harper  <jackson@ximian.com>
643         * TextControl.cs: When replacing the selection move the selection
644         start/end/anchor to the end of the new text.
646 2006-11-01  Jackson Harper  <jackson@ximian.com>
648         * XplatUIWin32.cs: When setting the parent change the controls
649         visibility to it's visibility flag, not to it's old parents
650         visibility (.Visible walks the parent chain).
652 2006-11-01  Chris Toshok  <toshok@ximian.com>
654         * XplatUIX11.cs: revert the #79790 fix, as the simple.
655         XSetTransientForHint fix breaks paint .net's tool windows.  more
656         work needed for that one.
658 2006-11-01  Chris Toshok  <toshok@ximian.com>
660         * ScrollBar.cs: throw ArgumentException instead of Exception in
661         LargeChange/SmallChange setters.  fixes unit tests.
663 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
665         * ContainerControl.cs: reverted rev.67183 (which was itself
666         a reversion of rev.66853... eh).
667         
668         * Control.cs: Fixes Reflector hang by changing Focus() call
669         to what it was before rev.66643 (calling Select() here sets 
670         ActiveControl, which in some situations calls back Focus and 
671         eventually does a stack overflow). Temp fix.    
672         Changes to GetNextControl() to not look for children to select when
673         parent cannot be selectable (so it looks for siblings instead)  
674         
675 2006-10-31  Mike Kestner  <mkestner@novell.com>
677         * CheckedListBox.cs : off by one error in returned index from
678         ObjectCollection.Add.  Fixes #79758.
680 2006-10-31  Chris Toshok  <toshok@ximian.com>
682         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
683         calls for the textbox/spinner, to keep from recursing to the point
684         where we crash.  Fixes #79760.
686 2006-10-31  Chris Toshok  <toshok@ximian.com>
688         * ListControl.cs (set_SelectedValue): don't throw exceptions on
689         null/"" value, just return.  matches ms's behavior and fixes some
690         failing tests.
692 2006-10-31  Chris Toshok  <toshok@ximian.com>
694         * Control.cs (set_Capture): make a logic a little easier to
695         follow.
697         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
698         if it's being destroyed.  A necessary fix surely, but a bandaid
699         also, to fix the stuck capture problem in bug #78413.
701 2006-10-31  Chris Toshok  <toshok@ximian.com>
703         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
704         convention of clearing hwnd.ClientRect when we set the
705         width/height (so it'll be recalculated by Hwnd).
707 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
709         * ContainerControl.cs: reversed Contains check from
710         ActiveControl due to hanging problems. This fix
711         partly regresses #79667 (button does not have
712         initial focus), so this might be a symptom for 
713         a larger parenting problem (set_ActiveControl
714         is being called but the child control does
715         not have the parent set yet?)   
716         
717 2006-10-31  Mike Kestner  <mkestner@novell.com>
719         * MenuAPI.cs : fix keynav when menu is click activated.
721 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
723         * ToolStrip*: Version 0.2.
725         * MenuStrip.cs: Version 0.1.
727         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
729 2006-10-30  Chris Toshok  <toshok@ximian.com>
731         [ fixes the oversized notify icon issue in bug #79745 ]
732         
733         * NotifyIcon.cs: scale the icon down to the size we're given by
734         the XplatUI layer (this would be faster if we did it once instead
735         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
736         since it's never invoked.
738         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
739         pixels high by default, so let's hardcode our systray icon to that
740         size.  The SYSTEM_TRAY protocol should really have a way for
741         client apps to query for the correct icon size.. but oh well.  A
742         couple of patches to deal with the screwy client_window ==
743         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
744         instance, and also make sure we don't XSelectInput twice).
746 2006-10-30  Chris Toshok  <toshok@ximian.com>
748         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
749         recreating forms.  Control recreation is the bane of my existence.
750         Fix it in a way that keeps everyone happy.
752 2006-10-30  Chris Toshok  <toshok@ximian.com>
754         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
755         just non-CHILD ones.  otherwise sometimes scrollbars end up with
756         client_windows not being resized to the proper size (ReportBuilder
757         shows this extremely well).
759 2006-10-30  Chris Toshok  <toshok@ximian.com>
761         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
762         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
763         showing up in the gnome taskbar.  Fixes bug #79790.
765 2006-10-30  Chris Toshok  <toshok@ximian.com>
767         * ApplicationContext.cs: guard against a NRE.
769         * Application.cs: null out the old MainForm for the context, so we
770         don't try to use it again once it's disposed.  Fixes bug #79783.
772 2006-10-30  Chris Toshok  <toshok@ximian.com>
774         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
775         BindingContext, set the data source directly, otherwise do the
776         lazy approach - the actual ListManager will be created when we get
777         a BindingContext. Fixes bug #79700.
779 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
781         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
782           XplatUIX11.cs: Remove old 2 parameter SetVisible.
784         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
786 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
788         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
789         of SetVisible that allows a window to be shown, but not activated.
790         This is needed on Windows for MenuStrip, and can probably be used
791         with MainMenu and ComboBox to fix the focus stealing issues on
792         Windows.
794         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
796 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
798         * PictureBox.cs: Fix the output of the ToString method.
800 2006-10-29  Chris Toshok  <toshok@ximian.com>
802         * Control.cs (get_TopLevelControl): fix bug #79781.
804 2006-10-29  Chris Toshok  <toshok@ximian.com>
806         * ListControl.cs (set_DataSource): throw Exception here, not
807         ArgumentException, to match MS behavior.
809 2006-10-29  Chris Toshok  <toshok@ximian.com>
811         * Form.cs: remove the try-catch's around calls to GetWindowState.
812         We can just check the return value.
814         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
815         Instead return -1.
817         * XplatUI.cs: Add note about additional return value for
818         GetWindowState.
820 2006-10-29  Chris Toshok  <toshok@ximian.com>
822         * Control.cs (CreateHandle): when we create our handle, we also
823         create the handles of our child controls.  Fixes one of the
824         Control unit tests (CH11).
826 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
828         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
830 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
832         * ThemeClearlooks.cs: A little speedup.
834 2006-10-27  Chris Toshok  <toshok@ximian.com>
836         * Control.cs: implement Control.FromChildHandle in a way that
837         matches the docs (and fixes the failed test.)
839 2006-10-27  Chris Toshok  <toshok@ximian.com>
841         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
842         comments).
844         * DataGrid.cs: implement ResetForeColor such that the tests
845         succeed.
846         
847 2006-10-27  Chris Toshok  <toshok@ximian.com>
849         * ToolBarButton.cs: setting text/tooltiptext to null results in it
850         being set to "".  Fixes bug #79759.
852 2006-10-27  Jackson Harper  <jackson@ximian.com>
854         * TextControl.cs: We need to clear the entire selection area when
855         setting the start, otherwise multiline selections are still
856         visible.
858 2006-10-26  Chris Toshok  <toshok@ximian.com>
860         * PropertyGridView.cs: 
862         - ifdef all the code specific to the double
863         buffer case, and provide some alternatives in the non-doublebuffer
864         code, which makes heavy use of XplatUI.ScrollWindow to move things
865         around without having to invalidate (and cause flicker).  There
866         are still some drawing problems in the non-doublebuffered case, so
867         DOUBLEBUFFER is defined by default.
869         - Fix the way dropdowns are handled.  now we explicitly watch for
870         the events which might cause the dropdown to close, and break out
871         of the nested event loop there.  This gets rid of all Capture
872         code, at the expense of the Msg special casing.  Seems to work,
873         though, and fixes bug #79743.
875 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
876         * Control.cs: SetIsRecreating now recreates implicitly added
877         child controls as well. Finally fixes #79629. The flag passed to 
878         SetIsRecreating has also been removed since it wasn't used.
879         
880 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
882         * PageSetupDialog.cs: Clean some code, fix some bits, 
883         add some checks, and add a printer sub-dialog.
885 2006-10-26  Chris Toshok  <toshok@ximian.com>
887         * PropertyGrid.cs: make set_SelectedObject call
888         set_SelectedObjects, and move the duplicate logic to the
889         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
891         * PropertyGridView.cs: hide the textbox when we get a
892         SelectedObjectsChanged event.
894         Fixes bug #79748.
896 2006-10-26  Chris Toshok  <toshok@ximian.com>
898         * PropertyGridView.cs: deal with the type converter not supporting
899         GetStandardValues() or GetStandardValues() returning null, which
900         is does in the default case.  Fixes #79742.
902 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
904         * CheckedListBox.cs: nunit no longer crashes when selecting 
905         Project/Edit menu option
906         
907 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
909         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
910         is no menu selected. fixes #79739
912 2006-10-25  Chris Toshok  <toshok@ximian.com>
914         * PropertyGridView.cs: factor out the splitter invalidation code
915         into the SplitterPercent setter, and for kicks implement the
916         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
917         amount in either direction.
919 2006-10-25  Chris Toshok  <toshok@ximian.com>
921         * PropertyGridView.cs: do some cleanup of the brush used to draw
922         text - read only fields should be grayed out.  not sure how to do
923         this with the textbox, though.  but the textbox's should also be
924         readonly now at least.  Also, hide/show the textbox when resizing
925         the control.
926         
927         * CursorConverter.cs: use System.Reflection when getting the
928         properties of Cursors, as TypeDescriptor.GetProperties isn't
929         returning static properties.
931 2006-10-25  Chris Toshok  <toshok@ximian.com>
933         * PropertyGridView.cs: factor out the up/down handling, and reuse
934         it for page up/down.  also add End/Home support.
936 2006-10-25  Chris Toshok  <toshok@ximian.com>
938         * PropertyGridView.cs:
940         - ensure the selected grid item is visible in the scrolled area,
941         fixes bug #79572.
943         - fix Keys.Down handling when you're on the last item in the
944         propertygrid.
946 2006-10-25  Mike Kestner  <mkestner@novell.com>
948         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
949         clicks too.  Fixes #79725.
951 2006-10-24  Chris Toshok  <toshok@ximian.com>
953         * PropertyGrid.cs: use property.Converter instead of
954         TypeDescriptor.GetConverter(property.PropertyType), so we catch
955         TypeConverters declared on the property as well as on the
956         PropertyType.  Fixes bug #79678.
958 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
960         * MimeIcon.cs, Mime.cs:
961           Fallback to the default platform handler if no shared mime info
962           stuff exists (fixes #79693).
964 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
965         * ContainerControl.cs: Incorrect contains check in ActiveControl 
966         from previous fix (duh).
968 2006-10-20  Chris Toshok  <toshok@ximian.com>
970         * PropertyGridView.cs: the dropdown should be MIN(number of items
971         in list, 15).  Fixes #79551.
973 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
974         Fixes #79384, #79394, #79652, #79667
975         * Application.cs: 
976         
977         - Modal windows are now destroyed in the proper order for windows
978         
979         * ContainerControl.cs:
980         
981         - ActiveControl setter has more conditions on when to return:
982                 - if we're reselecting the active control, but it actually
983                 didn't have focus (window hidden or some such), it runs
984                 - if the active control being selected doesn't actually 
985                 exist in the container, it returns
986         
987         * Form.cs
988         
989         - The ShowDialog now gets the current form as the owner when
990         invoking without parameters, and correctly activates the owner 
991         when returning
992         
993         * MessageBox.cs
994         
995         - MessageBox now catches the Escape key to exit
997 2006-10-20  Chris Toshok  <toshok@ximian.com>
999         * PropertyGridView.cs: fix a number of issues (bug #78565, and
1000         most of bug #79676):
1002         - you can navigate around the property grid with the arrow keys.
1004         - the dropdown is sized properly when the pg has a vertical
1005         scrollbar.
1007         - fix the indentation for subentries, and properly select the
1008         entire label rect.
1010         - fix the gray bar's drawing (only draw it to the last element,
1011         not for the height of the control.  Also make sure we draw that
1012         last horizontal grid line.
1014         - use the same mechanism the datagrid uses wrt the editing textbox
1015         when scrolling/resizing/etc.  Namely, we hide it first, do the
1016         operation, then show it again (if it's still visible).
1017         
1018         - aggressively remove a lot of unnecessary refreshes (and also
1019         calls to Invalidate(). call more limited variants, and only redraw
1020         what we need.)
1021         
1022         * PropertyGrid.cs:
1024         - when we're populating the merged collection, fill in the UI
1025         parent with either the passed in item, or the category item we
1026         create.
1028         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
1030         * GridItem.cs: drop some fully qualified names.
1031         
1032         * GridEntry.cs: add a "UIParent", which is basically the parent
1033         treenode.
1035         * GridItemCollection.cs: add an IndexOf method.
1037 2006-10-20  Mike Kestner  <mkestner@novell.com>
1039         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
1040         a working win32 NC invalidation mechanism, we can't invalidate
1041         menus.  [Fixes #79705]
1043 2006-10-20  Mike Kestner  <mkestner@novell.com>
1045         * ListBox.cs : don't update the VScrollbar if the list is empty,
1046         just hide it.  [Fixes #79692]
1048 2006-10-20  Jackson Harper  <jackson@ximian.com>
1050         * RichTextBox.cs: Handle some special chars better, and don't skip
1051         the entire group when we encounter a special char that we don't
1052         handle correctly.
1054 2006-10-18  Chris Toshok  <toshok@ximian.com>
1056         * PropertyGridView.cs: address a number of issues from bug #79676,
1057         mostly of the cosmetic variety.
1059         - The highlight rectangle for indented items not extends all the
1060         way to the left.
1062         - Indented items aren't indented so much.
1064         - the dropdown is properly sized width-wise if the pg has a
1065         vertical scrollbar.
1067 2006-10-18  Chris Toshok  <toshok@ximian.com>
1069         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
1070         systray stuff is rather convoluted to begin with.
1072         systray icons are a single window for some reason (that I haven't
1073         figured out yet), and for them, client_window == whole_window.
1074         Given the way the tests are structured elsewhere to determine
1075         which paints are pending (client vs. nc), that situation will
1076         always yield PAINT, not NCPAINT.  So, if we have a pending
1077         nc_expose and no pending expose, remove the hwnd from the paint
1078         queue, and also set nc_expose_pending to false, to keep us from
1079         blocking further expose's adding the hwnd to the paint queue.
1081         phew.  like i said, a rather convoluted change.  Fixes the
1082         notifyicon repaint issues in bug #79645.
1084 2006-10-18  Chris Toshok  <toshok@ximian.com>
1086         * Form.cs: when getting the backcolor of the form, don't get
1087         base.BackColor, as this allows parents to influence the background
1088         color.  This breaks mdi forms.  Instead, if the background_color
1089         is empty, return the default.
1091 2006-10-18  Chris Toshok  <toshok@ximian.com>
1093         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
1094         to being private instead of internal static.
1096         * Control.cs: remove all the stupid ParentWaitingOnRecreation
1097         crap, it wasn't working for more deeply nested controls anyway,
1098         and we already have the is_recreating flag - use that instead.
1099         Before calling DestroyHandle in RecreateHandle, recurse through
1100         the control tree setting it to true.  this returns the recreate
1101         code to much of its original simplicity, while now guaranteeing we
1102         actually recreate everything we're supposed to.  This change gets
1103         fyireporting actually showing mdi children.
1105 2006-10-17  Chris Toshok  <toshok@ximian.com>
1107         * Form.cs: remove some debug spew, and collapse some duplicate
1108         code at the end of SetClientSizeCore.
1110         * XplatUIX11.cs: 
1111         - add some more debug spew here too wrt Destroy handling.
1112         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
1113         in Control's handling of WM_DESTROY.
1114         - Remove the handling of zombie window DestroyNotifies from the
1115         event loop - we don't need it.  Now the only DestroyNotifies we
1116         actually handle are ones generated by X.
1117         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
1118         match gtk's (functioning) handling of this. This keep metacity
1119         from leaving droppings in the form of wm borders with no window
1120         contents all over the place.
1122         * Control.cs:
1123         - add a bunch of debug spew wrt control recreation.
1124         - fix a bug where we weren't tracking Visible properly on
1125         recreated hwnds.
1126         - fixed the WM_PAINT double buffer handling to support re-entrant
1127         calls (yes, i know it's gross, but it's happening to us).
1129 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
1130         * ThemeWin32Classic.cs: changed drawing of selected days
1131         to make them look better.
1133 2006-10-16  Chris Toshok  <toshok@ximian.com>
1135         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
1136         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
1138         * XplatUIX11.cs: move away from using hwnd.client_dc and
1139         hwnd.non_client_dc and on to a stack of dc's (and in window's
1140         case, PAINTSTRUCT's), so we can deal with nested Paint calls
1141         without puking or not disposing of Graphics objects.
1143         * XplatUIOSX.cs: same.
1145         * XplatUIWin32.cs: same.
1147 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
1149         * FileDialog.cs: Don't call on_directory_changed inside
1150           OnSelectedIndexChanged (it changes the SelectedIndex too).
1151           Instead move it to OnSelectionChangeCommitted.
1153 2006-10-13  Chris Toshok  <toshok@ximian.com>
1155         * XplatUIX11.cs: more Destroy work.  the current code does the
1156         following things, in order:
1158         1. Enumerates all handles of all controls at or below the one
1159         being destroyed, in pre-order.  As it is doing this, it marks the
1160         handles as zombie and clears all references to them.
1161         
1162         2. calls XDestroyWindow on the window passed in.
1164         3. SendMessage's WM_DESTROY to all he handles in the accumulated
1165         list.
1167 2006-10-13  Chris Toshok  <toshok@ximian.com>
1169         * XplatUIX11.cs: set hwnd.zombie to true before calling
1170         SendMessage (WM_DESTROY).  this keeps us from marking the new
1171         window a zombie, and also keeps us from calling sendmessage at
1172         all.
1174 2006-10-13  Jackson Harper  <jackson@ximian.com>
1176         * TextControl.cs: Do not show the caret and selection at the same
1177         time.  Reduces ugliness by 35%.
1179 2006-10-13  Chris Toshok  <toshok@ximian.com>
1181         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
1182         zombie after we do the recursive call, so we actually do call
1183         SendMessage on the children controls.
1184         (GetMessage): if we find a pending paint event for a zombie hwnd,
1185         remove the hwnd from the paint queue, or else it will always be
1186         there (and we'll effectively loop infinitely)
1188 2006-10-13  Mike Kestner  <mkestner@novell.com>
1190         * MenuItem.cs : add Selected format under keynav too.
1191         Fixes #79528.
1193 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
1195         * PropertyGrid.cs: Fixed some NRE's and small difference between our
1196         implementation and that of MS.
1198 2006-10-13  Chris Toshok  <toshok@ximian.com>
1200         * Control.cs (OnInvalidated) only futz with the invalid_region if
1201         the control is double buffered.  this fixes the apparent hang in
1202         the ListView unit tests.  Someone needs to make the
1203         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
1205 2006-10-13  Chris Toshok  <toshok@ximian.com>
1207         * PropertyGridView.cs:
1209         - do a little refactoring so that only one place calls
1210         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
1211         else call that.  Also make it Refresh, since there are redraw bugs
1212         otherwise (we should take a look at that...)
1214         - do a little more refactoring work to share the body of code
1215         involved with the drop down.  it was duplicated in the code
1216         dealing with the listbox handling and in the code dealing with the
1217         UITypeEditors.
1219         - add a Capture to the dropdown form's control once it's
1220         displayed, and add a MouseDown handler that checks to make sure
1221         the position is inside the control.  If it's not, close the
1222         dropdown.  This fixes #78190.
1224         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
1225         if the value is different than the initial value.
1226         
1227 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
1229         * Control.cs: see #78650
1230         - Fixed GetNextControl for several cases:
1231                 - Changed FindFlatForward to return 
1232                 correct sibling control when more than one
1233                 control has same TabIndex as the currently 
1234                 focused one.
1235                 - Changed FindFlatBackward to loop children
1236                 from last to first and apply same logic as in
1237                 FindFlatForward
1238                 - Changed FindControlForward to search for
1239                 children when control is not a container
1240                 but has children, or search for siblings if
1241                 control is a container...
1242                 - Changed FindControlBackward   to continue
1243                 searching for child controls when hitting 
1244                 Panel-like parents
1245                 
1246         - Fixed Focus method to update ActiveControl
1247         (FocusTest.FocusSetsActive failure)
1248         
1249         * TabControl.cs:
1250         - Focus rectangle now refreshes when gaining
1251         or losing focus
1252         - Removed grab for Tab key on IsInputKey that 
1253         was keeping tab navigation from working (#78650)
1255 2006-10-13  Chris Toshok  <toshok@ximian.com>
1257         * PropertyGridView.cs:
1258         - Rewrite SetPropertyValue to loop over SelectedGridItem's
1259         SelectedObjects.
1261         - Deal with GridItem.Value == null a few places.
1263         * PropertyGrid.cs: 
1264         - replace the PopulateGridItemCollection with a pair of methods
1265         which compute the intersection of all the properties in the
1266         SelectedObjects array.  Fixes #79615.
1268         - Throw ArgumentException from set_SelectedObjects if there's a
1269         null in the array.
1271         - Add GetTarget method which can be used to traverse up the
1272         GridItem.Parent chain.  It depends on the assumption that
1273         selected_objects for different GridEntries are always in the same
1274         order (a safe assumption).  Use this method and loop over all the
1275         selected objects in the entry when calling RemoveValueChanged and
1276         AddValueChanged.
1277         
1278         * GridEntry.cs: Make this handle multiple selected objects.
1279         .Value returns null if not all the selected objects share the same
1280         value.
1282 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
1283         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
1284           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
1285           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
1286           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
1287           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
1288         add additional functionality.
1290 2006-10-12  Mike Kestner  <mkestner@novell.com>
1292         * ErrorProvider.cs : new ToolTipWindow ctor sig.
1293         * HelpProvider.cs : new ToolTipWindow ctor sig.
1294         * ToolTip.cs : remove ToolTip param from Window sig since it is
1295         not used.
1296         * ToolBar.cs : add tooltip support.  Fixes #79565.
1298 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
1300         * ComboBox.cs: move the events in set_SelectedIndex to 
1301         after the call to HighlightIndex in order to avoid 
1302         possible recursion and subsequent problems with the call
1303         to HighlightIndex and include a range check in 
1304         set_HighlightIndex. Fixes #79588
1305         
1306 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
1308         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
1309         to ui thread's settings instead of sunday. 
1310         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
1312 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
1314         * DateTimePicker.cs
1315         * MonthCalendar.cs
1316         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
1317         and implement missing functionality (selecting different parts 
1318         of the date and edit them individually with the keyboard).
1319         
1320 2006-10-11  Chris Toshok  <toshok@ximian.com>
1322         * Control.cs (OnInvalidated): fix NRE relating to last change.
1324 2006-10-11  Chris Toshok  <toshok@ximian.com>
1326         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
1327         atoms in _NET_WM_STATE here if the window is maximized.  We need
1328         to do this because we're *replacing* the existing _NET_WM_STATE
1329         property, so those atoms will be lost otherwise, and any further
1330         call to GetWindowState will return Normal for a window which is
1331         actually maximized.  Fixes #79338.
1333 2006-10-11  Jackson Harper  <jackson@ximian.com>
1335         * TextControl.cs: Special case for setting selection end to
1336         selection start, we basically kill the anchor.
1337         - some todo comments.
1339 2006-10-11  Chris Toshok  <toshok@ximian.com>
1341         * Control.cs: switch to using an "invalid_region" to track which
1342         parts of the image buffer need updating.  This is more code than
1343         the simple fix from r66532.  That version just attempted to always
1344         fill the entire buffer on redraw, which turns out to be
1345         inefficient when invalidating small rectangles.  This version
1346         simply adds the invalid rectangle to the invalid region.  When we
1347         get any WM_PAINT message we see if it can be filled using the
1348         image buffer, and if it can't (if the paint event's clip rectangle
1349         is visible in the invalid region) we first fill the image buffer.
1350         So, the image buffer is still a cache, we just fill it lazily.
1352         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
1353         need it any longer.
1355 2006-10-11  Chris Toshok  <toshok@ximian.com>
1357         * XplatUIX11.cs (SetWindowPos): we need to update both position as
1358         well as size after calling XMoveResizeWindow.  This keeps us from
1359         ignoring future SetWindowPos calls.  Fixes the disappearing
1360         DateTimePicker in the ToolBarDockExample from bug #72499.
1362 2006-10-11  Chris Toshok  <toshok@ximian.com>
1364         * TextBoxBase.cs: reorder things a bit when it comes to
1365         resizing-causing-recalculation.  we were recalculating the
1366         document when our position was changed, which shouldn't happen.
1367         We only care about size changes.  Clear up some more redundant
1368         recalculation calls while I'm at it.  This makes the toolbar dock
1369         example snappy when you're just dragging toolbars around (since it
1370         causes a relayout whenever you move one.)
1372 2006-10-11  Chris Toshok  <toshok@ximian.com>
1374         * ToolBarButton.cs (get_Rectangle): this only returns
1375         Rectangle.Empty if Visible == false, or Parent == null.
1376         Parent.Visible doesn't matter.
1378 2006-10-10  Chris Toshok  <toshok@ximian.com>
1380         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
1381         by .net 1.1, so switch to an internal method instead.
1383 2006-10-10  Chris Toshok  <toshok@ximian.com>
1385         * Control.cs (WM_PAINT): when a control is double buffered we draw
1386         initially to the ImageBuffer and then copy from there.  But when a
1387         parent control which has child controls is double buffered, the
1388         initial drawing doesn't encompass the entire ClientRectangle of
1389         the parent control, so we end up with uninitialized bits (this is
1390         easily seen by dragging the top toolbar in
1391         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
1392         manually set the ClipRectangle of the paint_event (only the one we
1393         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
1394         of the nastiness in bug #72499.
1396         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
1397         which we use in Control.cs's WM_PAINT handling.
1399 2006-10-10  Jackson Harper  <jackson@ximian.com>
1401         * TextBoxBase.cs: Finish off the autoscrolling stuff.
1403 2006-10-10  Chris Toshok  <toshok@ximian.com>
1405         * Cursor.cs: Apply a slightly different patch to the one suggested
1406         in #79609.
1408 2006-10-10  Jackson Harper  <jackson@ximian.com>
1410         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
1411         not the parent form.
1412         * TextControl.cs: use difference in old line count vs new count to
1413         calculate how many lines were added, this takes into account soft
1414         line breaks properly.
1416 2006-10-10  Chris Toshok  <toshok@ximian.com>
1418         * LinkLabel.cs: don't call MeasureCharacterRanges against a
1419         rectangle located at 0,0 and the size of the text.  Use
1420         ClientRectangle instead.  This fixes rendering of non-left aligned
1421         link labels.
1423 2006-10-10  Jackson Harper  <jackson@ximian.com>
1425         * TextBoxBase.cs: When we set the selection start position the
1426         caret.
1427         * TextControl.cs: Need to update the caret when we decrement it to
1428         zero.
1429         - Make sure that the selection_visible flag gets reset to false if
1430         the selection isn't visible.  Before this you could get it set to
1431         visible by changing the selection start, then changing the end to
1432         equal the start.
1434 2006-10-09  Jackson Harper  <jackson@ximian.com>
1436         * TreeView.cs: Don't update scrollbars when we aren't visible.
1437         * TreeNodeCollection.cs: Only need to update scrollbars if being
1438         added to an expanded visible node or the root node.
1440 2006-10-09  Chris Toshok  <toshok@ximian.com>
1442         * XplatUIX11.cs (SendMessage): fix NRE.
1444 2006-10-09  Jackson Harper  <jackson@ximian.com>
1446         * TextBoxBase.cs: Implement horizontal autoscrolling.
1447         * TextControl.cs: Add a movement types that allows moving forward
1448         and backwards without wrapping.
1450 2006-10-09  Mike Kestner  <mkestner@novell.com>
1452         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
1453         with focus "expansion" of labels.  Fixes #79532 and then some.
1454         * ThemeWin32Classic.cs : add LineLimit to ListView label format
1455         when wrapping.
1457 2006-10-09  Jackson Harper  <jackson@ximian.com>
1459         * TextBoxBase.cs: Set the default max values to MaxValue since
1460         we use the scrollbar for autoscrolling and the default value is
1461         100.  If we don't do this the caret won't keep up with typing
1462         after about 18 characters.
1463         * TextControl.cs: Make sure the selection is offset by the
1464         viewport x.  This fixes selection when using auto scrolling.
1466 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
1467         
1468         * Form.cs: The active control should be selected after the 
1469         OnLoad so that any child control initialization that affects
1470         the selection is done. Fixes #79406
1472 2006-10-06  Chris Toshok  <toshok@ximian.com>
1474         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
1475         to have no evil effects.
1477         - Stop selecting StructureNotifyMask on non-toplevel windows.
1479           The only way children should be resized is by using the SWF api,
1480           and we already send WM_WINDOWPOSCHANGED messages in those cases.
1481           Toplevel windows can be interacted with via the window manager,
1482           and so we keep the input mask there.
1484           The other event StructureNotifyMask gives us (that we care
1485           about) is DestroyNotify.  The code is already structured such
1486           that it assumes we won't be getting a DestroyNotify event for
1487           the window we pass to XDestroyWindow (which is what
1488           StructureNotifyMask is supposed to guarantee.)  So, that code
1489           shouldn't be affected by this either.
1491         - Stop selecting VisibilityChangeMask altogether.
1493           We weren't doing anything with the resulting events anyway.
1494         
1495         This vastly reduces the number of X requests and events we see
1496         when resizing/laying out a large ui.
1498 2006-10-06  Chris Toshok  <toshok@ximian.com>
1500         * ScrollableControl.cs (DisplayRectangle): we need to take into
1501         account the DockPadding regardless of whether or not auto_scroll
1502         == true.  rework this slightly to this effect, and fix bug #79606,
1503         and part of #72499 (you can now see the drag handles and drag
1504         toolbars around).
1506 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
1508         * ListViewItem.cs: Collections of selected and checked items are now
1509         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
1510         we mark the collection "dirty".
1511         * ListView.cs: Marked collections readonly. Modified UpdateSelection
1512         to only clear SelectedItems when a new item is selected and MultiSelect
1513         is enabled. CheckedItems and SelectedItems now subscribe to Changed
1514         event of ListViewItemCollection, and mark its list dirty whenever
1515         that event is fire. This allows us to return selected/checked items 
1516         in the same order as they are in the Items collection. This matches
1517         the MS behavior.
1519 2006-10-06  Chris Toshok  <toshok@ximian.com>
1521         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
1522         right mouse clicks.  Fixes bug #79593.
1524 2006-10-06  Chris Toshok  <toshok@ximian.com>
1526         * Splitter.cs: doh, fix splitters that don't want to cancel the
1527         movement when you drag them.  Also, impose the limits on the
1528         values we send to the SplitterMovingEvent.  Fixes #79598.
1530 2006-10-06  Jackson Harper  <jackson@ximian.com>
1532         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
1533         since we use this for auto scrolling also.
1535 2006-10-05  Chris Toshok  <toshok@ximian.com>
1537         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
1538         beginning to think that most datagrid column types don't need this
1539         method.  Fixes bug #79392.
1541 2006-10-05  Chris Toshok  <toshok@ximian.com>
1543         * DataGrid.cs: move back to a more lazy scheme for creating the
1544         CurrencyManager, so we aren't updating it every time you set
1545         either DataSource or DataMember.  Also, don't call
1546         RecreateDataGridRows if the currency manager hasn't changed.
1548 2006-10-05  Chris Toshok  <toshok@ximian.com>
1550         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
1551         emitted, SelectedIndex should already be updated.  Fixes bug
1552         #78929.
1554 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
1556         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
1557           ToolStripTextBox.cs: Initial commit.
1558         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
1560 2006-10-05  Jackson Harper  <jackson@ximian.com>
1562         * TabControl.cs: We need to invalidate the tab control area when
1563         new ones are added (duh).
1565 2006-10-03  Chris Toshok  <toshok@ximian.com>
1567         * Form.cs (ProcessDialogKey): if the focused control is in this
1568         form and is a button, call its PerformClick method here.  Fixes
1569         #79534.
1571 2006-10-04  Jackson Harper  <jackson@ximian.com>
1573         * TabPage.cs: Ignore setting of Visible, and add an internal
1574         method for setting the controls visibility.  TabPage's Visible
1575         property is a little strange on MS, this seems to make us
1576         compatible, and fixes cases where people set all the tab pages to
1577         visible.
1578         * TabControl.cs: Use the new internal setting on tab pages
1579         visibility.
1581 2006-10-03  Mike Kestner  <mkestner@novell.com>
1583         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
1585 2006-10-03  Mike Kestner  <mkestner@novell.com>
1587         * ListView.cs : use is_visible instead of Visible to check if 
1588         scrollbars should be placed/sized.  Also some max_wrap_width
1589         love for LargeIcon view.  [Fixes #79533]
1591 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
1593         * TextControl.cs :
1594           Make set_TextAlign() do actually update the align. Fixed #78403.
1596 2006-10-03  Chris Toshok  <toshok@ximian.com>
1598         * DataGrid.cs: fix a crash when switching datasources if the
1599         vertical scrollbar is at someplace other than Value = 0.  Also,
1600         reduce the number of recalculation passes we do in SetDataSource
1601         from 2 to 1.
1603 2006-10-03  Jackson Harper  <jackson@ximian.com>
1605         * TextBoxBase.cs: Move the if value the same bail check up, we
1606         don't want to empty the document if it is already empty, this
1607         seems to severly mess up the caret.  TODO: I should probably fix
1608         the empty statement to update teh caret somehow.
1610 2006-10-03  Chris Toshok  <toshok@ximian.com>
1612         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
1613         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
1614         reflection, an internal row type, properties on said type, etc.)
1615         will work with our datagrid.  Fixes #79531.
1617 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
1619         * FileDialog.cs: Don't crash if a path is not accessible
1620           (System.UnauthorizedAccessException). Fixes #79569.
1621         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
1622           a ':' too. Return unknown icon for those paths/files.
1624 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
1626         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
1627         GetContainerControl returns null.
1629 2006-10-02  Chris Toshok  <toshok@ximian.com>
1631         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
1632         call to XGetWindowAttributes instead of "handle".  fixes an X
1633         error using notifyicon after the NotifyIconWindow to Form base
1634         class switch.
1636 2006-10-02  Chris Toshok  <toshok@ximian.com>
1638         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
1639         server grab and looping we need to do to get down to the most
1640         deeply nested child window.
1641         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
1642         QueryPointer again after the WarpPointer so we can generate a
1643         proper (fake) MotionNotify event to be enqueued in the destination
1644         window's queue.
1645         (GetCursorPos): call QueryPointer.
1647         Fixes #79556.
1649 2006-10-02  Jackson Harper  <jackson@ximian.com>
1651         * NotifyIcon.cs: Derive the notify icon from a form, so things
1652         like FindForm work on it.
1653         - Swallow the WM_CONTEXTMENU message, since that is generated on
1654         mouse down, and context menu is a mouse up kinda guy.  I believe
1655         the correct fix here is probably to make the notify icon entirely
1656         NC area, but this seems to work fine for anyone not manipulating
1657         WndProc.
1659 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
1661         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
1662           ToolStripItemCollection.cs, ToolStripLabel.cs,
1663           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
1664           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
1665           Initial implementation.
1666         * TextRenderer.cs: Provide padding to MeasureText.
1668 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
1670         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
1671         of ButtonBaseAccessibleObject. Fix bug #79552.
1673 2006-10-02  Jackson Harper  <jackson@ximian.com>
1675         * MdiWindowManager.cs: When maximizing use the containers client
1676         rect, not it's bounds, so nc area is accounted correctly.
1677         - Use the parent form's size for the menu position, since the
1678         client isn't always the full form size.
1680 2006-10-01  Chris Toshok  <toshok@ximian.com>
1682         * ScrollableControl.cs: make sure neither right_edge or
1683         bottom_edge are < 0, since they're used as LargeChange for the
1684         horiz/vert scrollbars respectively.  Fixes #79539.
1686 2006-10-01  Chris Toshok  <toshok@ximian.com>
1688         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
1689         the xplatuix11 code can cause us to destroy/recreate our handle.
1691         * XplatUIX11.cs
1692         (SystrayAdd):
1693         - this code can be invoked many times for the same Hwnd.  Make
1694           sure we only destroy the client window once (the first time this
1695           method is called).  This fixes bug #79544.
1696         - Remove the call to the improperly bound XSync.  why we had two
1697           bindings to this, I will never know, but this call resulted in
1698           events being discarded from the queue(!).
1699         - correct a misunderstanding of _XEMBED_INFO - the second atom is
1700           not our current state but the state we wish to be in.  So, 0 if
1701           we don't want to be mapped.  Change it to 1.
1702         (SystrayRemove): The XEMBED spec makes mention of the fact that
1703         gtk doesn't support the reparent of client windows away from the
1704         embedder.  Looking at gtksocket-x11.c seems to agree with this.
1705         The only avenue we have for removing systray icons is to destroy
1706         them.  We don't want the handle to go away for good, though, so
1707         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
1708         #79545.
1709         
1710 2006-10-01  Chris Toshok  <toshok@ximian.com>
1712         * Form.cs (WndProc): inline the native_enabled variable usage into
1713         the cases in which it's used.  Fixes #79536.
1715 2006-09-29  Mike Kestner  <mkestner@novell.com>
1717         * ListView.cs : toggle the selection state for ctrl clicks in 
1718         multiselect mode. [Fixes #79417]
1720 2006-09-29  Mike Kestner  <mkestner@novell.com>
1722         * ListView.cs : kill CanMultiSelect and refactor the selection
1723         code to support multiselection in the absence of mod keys. Steal
1724         arrow/home/end keys by overriding InternalPreProcessMessage to
1725         restore regressed keynav behavior.
1726         [Fixes #79416]
1728 2006-09-29  Jackson Harper  <jackson@ximian.com>
1730         * MdiClient.cs: Repaint the titlebars when the active window is
1731         changed.
1733 2006-09-29  Chris Toshok  <toshok@ximian.com>
1735         * Application.cs: when entering a runloop with a modal, make sure
1736         the hwnd is enabled.  Fixes #79480.
1738 2006-09-29  Chris Toshok  <toshok@ximian.com>
1740         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
1741         when ListManager.CanAddRows == false, bump us back one.
1743         * DataGridColumnStyle.cs (ParentReadOnly): remove the
1744         listmanager.CanAddRows check.  This makes ArrayLists uneditable
1745         using a datagrid, which is not right.
1746         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
1747         is an IEditable, but call property_descriptor.SetValue regardless.
1748         fixes #79435.
1750 2006-09-29  Chris Toshok  <toshok@ximian.com>
1752         * DataGridBoolColumn.cs: we need to test equality in the face of
1753         possible null values (as is the case with the default NullValue).
1754         This patch keeps us from crashing in that case.
1756 2006-09-29  Jackson Harper  <jackson@ximian.com>
1758         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
1759         here, since it will get called for every node collection in the
1760         tree. This is now done in the treeview once the sorting is
1761         finished.
1762         * TreeView.cs: Recalculate the visible order, and update the
1763         scrollbars after sorting, set the top nope to the root so that the
1764         recalc actually works.
1766 2006-09-29  Chris Toshok  <toshok@ximian.com>
1768         * LinkLabel.cs: more handling of the default link collection in
1769         the face of LinkArea manipulation.  The default link collection
1770         contains 1 element (start=0,length=-1).  If the user sets LinkArea
1771         to anything and the links collection is the default, clear it.
1772         Then only add the link if its nonempty.  Fixes #79518.
1774 2006-09-29  Chris Toshok  <toshok@ximian.com>
1776         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
1777         piece correctly when we hit a '\n'.  Fixes #79517.
1779 2006-09-29  Chris Toshok  <toshok@ximian.com>
1781         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
1782         change the binding of gdk_init_check to take two IntPtr's, and
1783         pass IntPtr.Zero for both of them.  Fixes #79520.
1785 2006-09-29  Mike Kestner  <mkestner@novell.com>
1787         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
1788         [Fixes #78779]
1790 2006-09-28  Jackson Harper  <jackson@ximian.com>
1792         * XplatUIX11.cs: When translating NC messages make sure we go from
1793         whole window to screen, not client window to screen.
1794         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
1795         method doesn't exist
1796         - Skip over controls that aren't forms when arranging.
1798 2006-09-28  Jackson Harper  <jackson@ximian.com>
1800         * XplatUIWin32.cs: Clip the rect to the parent window.
1801         * XplatUIStructs.cs: Add clipping modes struct.
1802         * InternalWindowManager.cs: New private method that factors title
1803         bar heights in when calculating the pos of an NC mouse message.
1804         - Use SendMessage to force a paint when the form's size is changed
1805         instead of painting the decorations immediately.
1806         - Don't let the NC button click messages get to DefWndProc,
1807         because they will attempt to handle windowing themself, and this
1808         messes up z-order (it will put them in front of the scrollbars).
1809         * XplatUIX11.cs: Make sure that we don't reset window managers if
1810         we already have one (ie the window is an MDI window).
1812 2006-09-28  Chris Toshok  <toshok@ximian.com>
1814         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
1815         menu code really needs going over.
1817 2006-09-27  Chris Toshok  <toshok@ximian.com>
1819         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
1820         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
1821         window is maximizable.  So, we need to make sure that even if we
1822         clear the border/wm frame of those functions, they're still
1823         available (basically, we remove the decoration without removing
1824         the function).  Half the fix for #79338.
1826 2006-09-27  Chris Toshok  <toshok@ximian.com>
1828         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
1829         Fixes bug #79515.
1831 2006-09-27  Chris Toshok  <toshok@ximian.com>
1833         * Splitter.cs: reorder things a bit so that we don't actually
1834         draw/move the splitter until after calling OnSplitterMoving.  This
1835         lets users cancel/disallow the movement by explicitly setting
1836         event.SplitX/SplitY.  Fixes #79372.
1838 2006-09-27  Jackson Harper  <jackson@ximian.com>
1840         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
1841         because it is most likely on a window being destroyed, and that
1842         will give us an X11 error.
1844 2006-09-27  Chris Toshok  <toshok@ximian.com>
1846         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
1847         the dropdown button now toggles between showing and hiding the
1848         dropdown.  Also, get rid of dropdown_form_showing and just use
1849         dropdown_form.Visible.  We still don't do a grab, but I'll leave
1850         that part to someone who has handled Capture-fu before.
1852 2006-09-27  Chris Toshok  <toshok@ximian.com>
1854         * DataGrid.cs: return false if alt isn't pressed when '0' is
1855         pressed.  this keeps the '0' key from being swallowed, and fixes
1856         bug #79350.
1858 2006-09-27  Chris Toshok  <toshok@ximian.com>
1860         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
1861         Calling Refresh (in response to a scrollbar event) screws up the
1862         scrollbar painting.  Fixes bug #78923.
1864 2006-09-27  Chris Toshok  <toshok@ximian.com>
1866         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
1867         then insert into hashtable" blocks threadsafe.
1869 2006-09-27  Chris Toshok  <toshok@ximian.com>
1871         * MessageBox.cs (CreateParams): the styles should be |'ed with our
1872         baseclass's, since otherwise the
1873         ControlBox/MinimizeBox/MaximizeBox assignments above have no
1874         effect.  This gets the close button back in messageboxes.
1876 2006-09-27  Chris Toshok  <toshok@ximian.com>
1878         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
1879         flag, not just != 0.  this makes flags that are actually multiple
1880         bits (like WS_CAPTION) work.  fixes bug #79508.
1882 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
1884         * PageSetupDialog.cs: add support for getting and settings the 
1885         paper size, source and orientation.
1887 2006-09-26  Chris Toshok  <toshok@ximian.com>
1889         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
1890         and caption == "", we need to remove the resize handles as well as
1891         the title bar.
1893         * Control.cs (set_Text): turns out that setting Text on a form
1894         should change the WM styles on the window, since if ControlBox ==
1895         false, the only way to get a window border is to have a non-""
1896         Text property.  check winforms/forms/text.cs for an example.  so,
1897         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
1898         update both window styles and title.  This fixes a lot of dialogs
1899         (including the preferences dialog in MonoCalendar.)
1901 2006-09-26  Chris Toshok  <toshok@ximian.com>
1903         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
1904         control isn't a Form), call Win32ShowWindow to hide the window,
1905         but don't update the control Visible property.  When we reparent
1906         back to a parent control, call SetVisible in order for the
1907         window's visibility to be reinstated.
1909         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
1910         the FosterParent.
1912         * Control.cs (ControlCollection.Remove): remove that value.Hide()
1913         call for good, since it breaks MonoCalendar (and other things I'm
1914         sure.) Also, set all_controls to null *after* the owner calls,
1915         which end up regenerating it.
1916         (ChangeParent): allow new_parent to be == null, passing
1917         IntPtr.Zero down to XplatUI.
1919         this fixes #79294 the right way.
1921 2006-09-26  Mike Kestner  <mkestner@novell.com>
1923         * GridEntry.cs : internal SetParent method.
1924         * PropertyGrid.cs : attach to property changed on the proper
1925         target if we have a hierarchical grid with subobjects. Setup
1926         GridItem.Parent for hierarchical items.
1927         * PropertyGridView.cs : Set value on the correct target for
1928         hierarchical grids. [Fixes #78903]
1930 2006-09-26  Chris Toshok  <toshok@ximian.com>
1932         * Control.cs (ChildNeedsRecreating): this should return true if
1933         either we're being recreated and the child is in our list, or our
1934         parent is waiting for our recreation.
1936 2006-09-26  Chris Toshok  <toshok@ximian.com>
1938         * Control.cs (ControlCollection.Remove): reinstate the
1939         value.Hide() call as suggested in bug #79294.
1941 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
1943         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
1944         coordinates (versus a relative move).
1946 2006-09-26  Chris Toshok  <toshok@ximian.com>
1948         * Control.cs: rework child recreation a little bit.  It turns out
1949         that we race between the DestroyNotify the WM_DESTROY message.  If
1950         the parent gets its DestroyNotify before the child gets the
1951         WM_DESTROY message, the child ends up not recreating (since the
1952         parent finishes its recreation on DestroyNotify, and the child
1953         checks ParentIsRecreating.)
1955         So, instead we store off a list of all the child controls which
1956         need to be recreated when the parent control starts to recreate
1957         itself.  Then, when child controls get their WM_DESTROY message we
1958         check to see if they're in the parent's pending recreation list,
1959         and if so, we recreate.  This removes all dependency on ordering
1960         from the code and fixes the initial MonoCalendar upgrade dialog.
1961         
1962 2006-09-26  Jackson Harper  <jackson@ximian.com>
1964         * TextControl.cs: Use the Line to get the length of the line,
1965         since soft line breaks can change the end line.
1967 2006-09-26  Chris Toshok  <toshok@ximian.com>
1969         * Control.cs (ControlCollection.AddImplicit): don't add the
1970         control again if it's already in one of our lists.  This keeps us
1971         from adding controls over and over again for comboboxes when their
1972         handle gets recreated (as the combobox adds implicit controls in
1973         OnHandleCreated).  Fixes the X11 errors in bug #79480.
1975 2006-09-26  Jackson Harper  <jackson@ximian.com>
1977         * TextControl.cs: When deleting characters make sure that any
1978         orphaned zero lengthed tags get deleted.
1979         - Fix ToString for zero lengthed tags.
1981 2006-09-25  Jackson Harper  <jackson@ximian.com>
1983         * TextControl.cs: When getting a tag at the location there can be
1984         multiple tags at the same spot, these are 0-lengthed tags that
1985         appear when extra formatting has been stuck in a location.  We
1986         need to pull out the last of these 0 lengthed tags.
1988 2006-09-25  Jackson Harper  <jackson@ximian.com>
1990         * TextControl.cs: Fix print out in debug method.
1991         * TextBoxBase.cs: When text is set bail if we are setting to the
1992         previous value.
1993         
1994 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
1996         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
1997           It is now possible to change the selected index in a FontXXXListBox
1998           with the up and down arrow keys from the FontXXXTextBoxes.
1999           Also, send the FontXXXTextBox mouse wheel event to the corresponding
2000           FontXXXListBoxes to match ms.
2002 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
2004         * SystemInformation.cs: Return a clone of the theme's MenuFont because
2005         anyone can dispose it, anytime. All other properties returns enums, 
2006         structs or basic types so they don't need such tricks.
2008 2006-09-22  Jackson Harper  <jackson@ximian.com>
2010         * XplatUI.cs:
2011         * XplatUIWin32.cs:
2012         * Clipboard.cs:
2013         * DataFormats.cs:
2014         * XplatUIOSX.cs:
2015         * XplatUIDriver.cs: Update interface to add a primary selection
2016         flag, so the driver can use the primary selection buffer if
2017         needed.
2018         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
2020         * RichTextBox.cs: We need to supply the data object to paste now
2021         (so we can choose to supply CLIPBOARD or PRIMARY).
2022         * TextBoxBase.cs: Supply data object to paste (see above).
2023         - Middle click uses the primary selection data object.
2024         
2025 2006-09-21  Chris Toshok  <toshok@ximian.com>
2027         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
2028         of SetWMStyles.  It's still a rat's nest and is largely
2029         order-dependent which I dislike immensely.  This also fixes the X
2030         button disappearing from toplevel forms.
2032 2006-09-21  Mike Kestner <mkestner@novell.com>
2034         * ListBox.cs: move Jordi's click/dblclick raising code to the
2035         mouse up handler.
2037 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
2039         * ListBox.cs: Fixes 79450
2041 2006-09-21  Mike Kestner <mkestner@novell.com>
2043         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
2044         to deal with people updating the TreeNodeCollection after the tree
2045         is disposed.  "Fixes" 79330.
2047 2006-09-20  Jackson Harper <jackson@ximian.com>
2049         * TextControl.cs: Push the cursor record onto the undo stack
2050         before the delete action. This fixes 78651.
2052 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
2054         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
2055         CreateParams. Fixes 79329.
2057 2006-09-19  Chris Toshok  <toshok@ximian.com>
2059         * XplatUIX11.cs: a couple of blanket code massage passes to clean
2060         things up a bit.  First, get rid of the NetAtoms array (and the NA
2061         enum), and just embed the atoms as static fields.  Also, add a
2062         couple of functions (StyleSet and ExStyleSet) to clean up all the
2063         bitmask testing of styles.
2065         * X11Structs.cs: remove the NA enum, not needed anymore.
2066         
2067 2006-09-19  Chris Toshok  <toshok@ximian.com>
2069         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
2070         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
2071         added cleanup to get MessageBox titles appearing again, which were
2072         broken by my earlier fix for caption-less/ControlBox-less windows.
2074 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
2076         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
2077           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
2078           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
2079           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
2080           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
2081           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
2082           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
2083           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
2084           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
2085           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
2086           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
2087             Inital import.
2088         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
2089           ToolStripButton.cs: Stubs needed for above.
2090         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
2092 2006-09-15  Chris Toshok  <toshok@ximian.com>
2094         * XplatUIX11.cs:
2095         - make the MessageQueues hashtable Synchronized.
2096         
2097         - SendMessage: if the Hwnd is owned by a different thread, use the
2098         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
2099         thread.  Fixes bug #79201.
2101 2006-09-15  Chris Toshok  <toshok@ximian.com>
2103         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
2104         ControlBox == false, we disallow maximize/minimize/close.  If the
2105         form Caption is "" we also disallow move (and get rid of the Title
2106         decoration).  Unfortunately, regardless of how things are set,
2107         we're stuck with the Title and WM menu.
2109 2006-09-15  Chris Toshok  <toshok@ximian.com>
2111         * Application.cs: add locking around the static message_filters
2112         ArrayList, part of #79196.
2114 2006-09-15  Chris Toshok  <toshok@ximian.com>
2116         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
2117         Form.ControlBox == false, the window has no titlebar nor resize
2118         handles.  fixes bug #79368.
2120 2006-09-15  Chris Toshok  <toshok@ximian.com>
2122         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
2123         >= 0.  Fixes bug #79370.
2125 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
2126         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
2127         * Control.cs:
2128             Add properties: LayoutEngine, Margin, DefaultMargin.
2129             Add method: GetPreferredSize.
2130             Move layout logic from PerformLayout to layout engines. 
2132 2006-09-13  Chris Toshok  <toshok@ximian.com>
2134         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
2135         fix for #79326 broke #78718, so this change addresses that.
2137         - in SendWMDestroyMessages remove the call to
2138         CleanupCachedWindows, since we might be recreating the control and
2139         need to maintain the references to right Hwnd handles.  Also, set
2140         the zombie flag to true for each of the children in the hierarchy
2141         instead of calling hwnd.Dispose.  This will cause GetMessage to
2142         ignore all events for the window except for DestroyNotify.
2144         - In GetMessage, ignore messages except for DestroyNotify for
2145         zombie hwnds.
2146         
2147         * Control.cs: revert the is_recreating fix from the last
2148         ChangeLog.  It's definitely "right", but it breaks switching from
2149         an MDI form to a non-MDI form.  Will need to revisit that.
2151         * Hwnd.cs: add a zombie flag, which means "the
2152         client_window/whole_window handles are invalid, but we're waiting
2153         for the DestroyNotify event to come in for them".  Set the flag to
2154         false explicitly if setting WholeWindow/ClientWindow, and also
2155         when Disposing.
2156         
2157 2006-09-13  Chris Toshok  <toshok@ximian.com>
2159         * XplatUIX11.cs: rework window destruction slightly.
2161         - when destroying the windows associated with a control, we don't
2162         need 2 separate XDestroyWindow calls.  Just the one for the
2163         whole_window (or for client_window if whole_window is somehow
2164         IntPtr.Zero -- can this happen?) is enough.
2166         - reworked SendWMDestroyMessages slightly, so we always dispose
2167         the child control hwnd's after sending the messages.
2168         
2169         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
2170         the two places it was used (one was even using hwnd.Handle and the
2171         other hwnd.client_window.  ugh), adding another call in
2172         SendWMDestroyMessages.  We need this new call because now the
2173         DestroyNotify events in the queue will be ignored for the child
2174         controls (as their hwnd's were disposed, and the window id's
2175         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
2177         - this fixes bug #79326.
2179 2006-09-13  Chris Toshok  <toshok@ximian.com>
2181         * Control.cs: don't always set is_recreating to false at the end
2182         of RecreateHandle, since sometimes we're not done (and won't be
2183         until WndProc handles the WM_DESTROY message).  Also, set
2184         is_recreating to false in the WM_DESTROY handling code.  Part of
2185         the fix for bug #79326.
2187 2006-09-13  Miguel de Icaza  <miguel@novell.com>
2189         * X11DesktopColors.cs: Start the droppage of debugging messages.
2191         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
2193 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
2195         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
2197 2006-09-12  Chris Toshok  <toshok@ximian.com>
2199         * DataGrid.cs (get_ListManager): if the list_manager is null, try
2200         to create it using SetDataSource.  Fixes bug #79151.
2202 2006-09-11  Chris Toshok  <toshok@ximian.com>
2204         * XEventQueue.cs: add a DispatchIdle property.
2206         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
2207         either the queue is null, or the queue has DispatchIdle set to
2208         true.
2209         (DoEvents): set queue.DispatchIdle to false around the
2210         peek/translate/dispatch message loop in this method.  This keeps
2211         Application.Doevents from emitting idle events.  Part of the fix
2212         for #78823.
2214 2006-09-11  Chris Toshok  <toshok@ximian.com>
2216         * DataGrid.cs (set_DataSource): make this work for both the
2217         winforms/datagrid test and ReportBuilder.  It seems as though when
2218         we've created a ListManager (or maybe it's if we have a
2219         BindingContext?), when we set the DataSource it clears the
2220         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
2221         #79333.
2223 2006-09-11  Chris Toshok  <toshok@ximian.com>
2225         * XplatUIX11.cs: deal with queue being null, which happens in all
2226         the Clipboard functions.  Fixes one of the two problems mentioned
2227         in #78612.
2229 2006-09-11  Chris Toshok  <toshok@ximian.com>
2231         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
2232         button on various spots (including outside the menu) works closer
2233         to MS, and doesn't crash.  Fixes #79343.
2235 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
2237         * ListView.cs: Do not initialize item_sorter in init. To match MS,
2238         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
2239         and the internal comparer is set. When a new ListViewItemSorter is set,
2240         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
2241         was specified. No further processing is necessary if SortOrder is set
2242         to it's current value. If Sorting is modified to None, and View is
2243         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
2244         (either custom or our internal ItemComparer) to null, on 1.0 profile
2245         only set item_sorter to null if its our internal IComparer. If Sorting
2246         is modified to Ascending or Descending, then use our internal IComparer
2247         if none is set, and if the current IComparer is our internal one then:
2248         on 2.0 profile always replace it with one for new Sorting, and on 1.0
2249         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
2250         Enum.IsDefined to verify whether a valid View value is specified in
2251         its setter. Automatically sort listview items when listview is
2252         created. In Sort, do nothing if ListView is not yet created, or if
2253         no item_sorter is set (no Sorting was set, Sorting was explicitly set
2254         to None or ListViewItemSorter was set to null). Added Sort overload
2255         taking a bool to indicate whether the ListView should be redrawn when
2256         items are sorted (we use this in ListViewItemCollection to avoid double
2257         redraws). Modified our internal IComparer to take the sort order into
2258         account. In Add and AddRange methods of ListViewItemCollection, also
2259         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
2260         view), but use overload with noredraw option to avoid double redraw.
2261         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
2262         true when View is Tile, and do the same when attempting to set View to
2263         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
2264         for selected/checked indices, as it involves overhead when sorting is
2265         done while these collections are not used all that often. Instead
2266         we'll build the indices on demand. Modified IList implementation of
2267         CheckedIndexCollection to use public methods if object is int.
2268         Modified CheckedListViewItemCollection to hide checked items if
2269         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
2270         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
2271         IList implementation in SelectedIndexCollection to use public methods
2272         if object is int. Modified SelectedListViewItemCollection to hide
2273         selected items if listview is not yet created.
2274         * ListViewItem.cs: CheckedIndices list no longer needs to be
2275         maintained separately (see ListView changes). Also clone font, fixes
2276         test failure.
2278 2006-09-11  Mike Kestner  <mkestner@novell.com>
2280         * ComboBox.cs: if we are updating the contents of the currently
2281         selected index, refresh the control or the textbox selection.
2282         [Fixes #79066]
2284 2006-09-11  Mike Kestner  <mkestner@novell.com>
2286         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
2287         the 'specified' logic has been moved there.  This seems like a bug 
2288         in Control.cs, since our current SetBoundsCore completely ignores 
2289         the specified parameter.  Peter's commit seems to indicate that is 
2290         the way the MS control implementation works.  [Fixes #79325]
2292 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
2294         * XplatUI.cs: Set default_class_name to be composed
2295         of current domain id. This allows MWF to be loaded in multiple
2296         domains on Win32.
2298 2006-09-09  Miguel de Icaza  <miguel@novell.com>
2300         * X11Keyboard.cs: If we are unable to obtain the input method, do
2301         not call CreateXic to create the input context.   Should fix
2302         #78944/79276.
2304 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
2306         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
2307           Simplified gnome support by adding more pinvokes to get the
2308           icon for a file or mime type.
2310 2006-09-08  Jackson Harper  <jackson@ximian.com>
2312         * MenuAPI.cs: Deslect popup context menu items before closing the
2313         window, so that you don't see the previously selected item
2314         selected when you reopen the menu.
2315         * TextControl.cs: Update the cursor position even if we don't have
2316         focus.  This fixes typing in things like the ComboBox.  I'm not
2317         totally sure we should always set the visibility if we don't have
2318         focus, but couldn't find any corner cases where the cursor showed
2319         up when it shouldn't.
2321 2006-09-08  Chris Toshok  <toshok@ximian.com>
2323         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
2324         our arrays are length 256.  & 0xff before indexing.  Fixes the
2325         crash in bug #78077.
2326         
2327 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2329         * ThemeWin32Classic.cs: 
2330         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
2331         is true. Handle that check box too.
2333 2006-09-07  Chris Toshok  <toshok@ximian.com>
2335         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
2336         79244.
2338 2006-09-07  Chris Toshok  <toshok@ximian.com>
2340         * Control.cs: in set_BackColor only do the work if
2341         background_color != value.
2343         * XplatUIX11.cs: move the clearing of invalid areas (both client
2344         and nc) to the same block of code where we set (nc_)expose_pending
2345         to false.  That is, move it from PaintEventEnd to PaintEventStart,
2346         so things that cause invalidates from within OnPaint will trigger
2347         another call to OnPaint.  Fixes bug #79262.
2349 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
2351         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
2352         * FileDialog.cs: Fix typo
2354 2006-09-07  Jackson Harper  <jackson@ximian.com>
2356         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
2357         for tab pages if they have any.
2359 2006-09-06  Mike Kestner  <mkestner@novell.com>
2361         * Splitter.cs: use the "current" rect when finishing drag handle
2362         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
2364 2006-09-06  Mike Kestner  <mkestner@novell.com>
2366         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
2367         support offset splitters. [Fixes #79298]
2369 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
2371         * Mime.cs: Fixed a bug that could override the global mime type
2372           result.
2374 2006-09-05  Jackson Harper  <jackson@ximian.com>
2376         * TabControl.cs: Better calculation method for setting the slider
2377         pos. Prevents crashes on really wide tabs.
2378         - Draw Image on tab pages if an image list is used.
2380 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2382         * MonthCalendar.cs: When Font changes, the Size should be
2383         updated to fit the new font's space requirements.
2385 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
2387         * ListBox.cs: If the items are cleared with Items.Clear set
2388           top_index to 0.
2390 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2392         * MonthCalendar.cs: Handle arrow keys as input keys. Also
2393         fire DateChanged event instead of DateSelected event when
2394         the date was changed by keyboard interaction.
2396 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2398         * DateTimePicker.cs: Handle DateChanged for the associated
2399         month_calendar control, and set month_calendar.Font from 
2400         OnFontChanged method, as well as resize the height of the
2401         control when needed. Make PreferredHeight proportional.
2403 2006-09-01  Chris Toshok  <toshok@ximian.com>
2405         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
2406         properties.
2408         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
2410 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
2412         * FileDialog.cs: Set ClientSize instead of window size, to allow space
2413           for decorations (Fixes #79219)
2415 2006-09-01  Mike Kestner  <mkestner@novell.com>
2417         * ComboBox.cs: first stab at sorting plus some selection handling
2418         fixes to bring us more in line with MS behavior.  Also switches back
2419         to index based selection.  Alternative patches for index-based 
2420         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
2421         and latency@gmx.de on bug 78848.  I assume they were similar to this
2422         code I've had simmering in my tree forever.
2423         [Fixes #78848]
2425 2006-09-01  Chris Toshok  <toshok@ximian.com>
2427         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
2428         when setting list position guard against ending up with a -1 index
2429         (the other part of the fix for #78812).  Should probably make sure
2430         we don't need the analogous fix in the ItemDeleted case.
2432         * DataGrid.cs:
2433         - in SetDataSource, work around the fact that the way
2434         OnBindingContextChanged is invoked will cause us to re-enter this
2435         method.  I'll remove the hack once I investigate
2436         OnBindingContextChanged.
2438         - fix the logic in set_DataSource and set_DataMember (basically
2439         what to do if the other of the two is null.)
2440         
2441         - in OnListManagerItemChanged, we need to take into account the
2442         edit row when deciding whether or not to call RecreateDataGridRows
2443         (part of the fix for #78812).
2445 2006-09-01  Jackson Harper  <jackson@ximian.com>
2447         * Splitter.cs: Don't do anything if there is no control to affect
2448         (prevents us from crashing in weird tet cases).
2449         * TreeView.cs: Bounding box for the mouse movement reverting
2450         focus/selection back to previously selected node.  This matches
2451         MS, and makes the tree a lot more useable.
2452         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
2453         use clipping so they are not drawn.  This fixes when the control
2454         is set to have a transparent background, or if it was over an
2455         image.
2457 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
2459         * MimeIcon.cs: Improved handling for reading default icons when
2460           using gnome (2.16 made it necessary). Check and read svg icons
2461           first, then 48x48 and then 32x32 icons.
2463 2006-08-31  Chris Toshok  <toshok@ximian.com>
2465         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
2466         visible.
2468         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
2469         ProcessKeyPreview.  Fixes part of #77806.
2471         * DataGrid.cs: big patch.
2473         - revert the queueing up of DataSource/DataMember if inside
2474         BeginInit/EndInit calls.  That's not the way the datagrid achieves
2475         its delayed databinding.  Instead, call SetDataSource in
2476         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
2477         #78811.
2479         - Also, it wasn't mentioned in #78811, but the test case exhibits
2480         behavior that was lacking in our datagrid implementation - Columns
2481         that have mapping names that don't exist in the datasource's
2482         properties aren't shown.  Yuck.  To fix this I added the bound
2483         field to the column style, and basically any calculation to figure
2484         out anything about columns uses a loop to find the bound columns.
2485         still need to investigate if I can cache an array of the bound
2486         columns or if the indices must be the same.
2488         - When setting CurrentCell, we no longer abort if the cell being
2489         edited was in the add row.  This fixes the other part of #77806.
2491         - The new code also fixes #78807.
2492         
2493         * ThemeWin32Classic.cs: perpetrate the same disgusting
2494         column.bound field hack, and only render bound fields.
2496 2006-08-31  Chris Toshok  <toshok@ximian.com>
2498         * DataGridColumnStyle.cs: add bound field.  this field is true if
2499         the datasource has a property corresponding to the mapping name.
2501         * DataGridTableStyle.cs: set the bound field on the column styles
2502         depending on whether or not we have a column for that property.
2504 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
2506         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
2507           splitter control (fixes #79228)
2509 2006-08-31  Chris Toshok  <toshok@ximian.com>
2511         * DataGridColumnStyle.cs: we need to delay the assignment of
2512         property descriptor until the last possible moment due to the lazy
2513         databinding stuff in the datagrid.  Also, fix the exceptions
2514         thrown by CheckValidDataSource to match MS.
2516 2006-08-31  Jackson Harper  <jackson@ximian.com>
2518         * Form.cs: When activated select the active control, if there is
2519         no active control, we select the first control.
2520         * XplatUIX11.cs: If there is no focus control when we get a
2521         FocusIn event, find the toplevel form and activate it.  This
2522         occurs when you popup a window, it becomes the focus window, then
2523         you close that window, giving focus back to the main window.
2525 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2527         * MonthCalendar.cs: 
2528         * ThemeWin32Classic.cs: Cache Font in bold style, as well
2529         as StringFormat with Center alignments in MonthCalendar,
2530         instead of creating new ones when drawing the control. 
2531         Also, draw the month name in bold style.
2533 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
2535         * Control.cs:
2536           - PerformLayout(): It would seem MS performs the fill even if the 
2537             control is not visible (part of #79218 fix)
2538           - ResetBackColor(): Use the setter to reset the color, to allow
2539             overriders to catch the change.
2540         * Form.cs:
2541           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
2542           - CreateHandle(): dito (part of $79218 fix)
2543           - Don't set an icon if we have a dialog
2544         * ScrollableControl.cs:
2545           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
2546           - ScrollIntoView(): No need to scroll if control is already visible
2547             (resolves fixme and fixes #79218)
2549 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2551         * MonthCalendar.cs: Change proportions in SingleMonthSize
2552         to match the aspect of the original control.
2554 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
2556         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
2557           get updated when they get maximized.
2559 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
2561         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
2563 2006-08-29  Chris Toshok  <toshok@ximian.com>
2565         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
2567 2006-08-29  Jackson Harper  <jackson@ximian.com>
2569         * TreeView.cs: Need to track selected node and highlighted node,
2570         they aren't always the same thing, when the mouse is down on a
2571         node it is hilighted, but not selected yet.
2572         - Do the HideSelection stuff right
2573         - Need to focus on rbutton mouse down. And redraw selection when
2574         right click is mouse upped.
2576 2006-08-29  Mike Kestner  <mkestner@novell.com>
2578         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
2579         when SubItems.Count < Columns.Count.  [Fixes #79167]
2581 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
2583         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
2585 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
2587         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
2588           from X. Only send based on ConfigureNotify if we don't have the
2589           correct location in hwnd (if the window manager moved us)
2591 2006-08-28  Mike Kestner  <mkestner@novell.com>
2593         * ListView.cs: remove a TODO. 
2594         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
2595         [Fixes ListView part of #79166]
2597 2006-08-28  Mike Kestner  <mkestner@novell.com>
2599         * ListView.cs: move wheel handler to parent since it is focused
2600         instead of the item_control now.  [Fixes #79177]
2602 2006-08-28  Mike Kestner  <mkestner@novell.com>
2604         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
2605         when the control is focused. [Fixes #79171]
2607 2006-08-28  Mike Kestner  <mkestner@novell.com>
2609         * ListView.cs: size the item and header controls for empty and
2610         unscrollable views.
2611         * ThemeWin32Classic.cs: draw disabled backgrounds.
2612         [Fixes #79187]
2614 2006-08-28  Chris Toshok  <toshok@ximian.com>
2616         * Form.cs: remove unused "active_form" static field.
2618         * Hwnd.cs: lock around accesses to static windows collection.
2620         * Application.cs: lock threads in Exit ().
2622 2006-08-28  Chris Toshok  <toshok@ximian.com>
2624         * NativeWindow.cs: lock around accesses to window_collection.
2625         
2626 2006-08-28  Chris Toshok  <toshok@ximian.com>
2628         * Control.cs: err, fix this the right way, by locking on controls
2629         when using it.  not by making it synchronized.
2631 2006-08-28  Chris Toshok  <toshok@ximian.com>
2633         * Control.cs: make the static "controls" field synchronized, as it
2634         gets updated from multiple threads.
2636 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
2638         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
2639           Prevent other threads from exiting when calling thread sets quit state.
2640         * XEventQueue.cs: Added PostQuitState property
2642 2006-08-27  Chris Toshok  <toshok@ximian.com>
2644         * AsyncMethodData.cs: add a slot for the window handle.
2646         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
2647         window (the destination control's window, not the foster window).
2649         * Control.cs (BeginInvokeInternal): store the window's handle in
2650         the AsyncMethodData.
2651         
2653 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
2655         * XplatUIX11.cs:
2656           - PostQuitMessage: Removed resetting S.D display handle, we might have
2657             another loop started after calling PostQuitMessage (Fixes #79119)
2658           - Created destructor to reset S.D handle
2660 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
2662         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
2664 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
2666         * TextControl.cs (Insert): Update the caret position even if we don't
2667           have a handle yet, just don't call the driver in that case.
2668         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
2669           to the end of the new selection text (Fixes #79184)
2671 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
2673         * Form.cs (Activate): Only activate if the handle is created)
2674         * Control.c:
2675           - Mark window as invisible when it's disposed
2676           - Check if window handle is created when setting window visible, 
2677             instead of relying just on the is_created variable
2678           - Check if object is disposed when creating the control (Fixes #79155)
2680 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
2682         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
2683           when allowing layout again. Otherwise we re-generate the anchoring 
2684           distance to the border again and actually alter what the user wanted
2685           This is ugly, it'd be better if we used DisplayRectangle instead of
2686           ClientRectangle for Control.UpdateDistances, but that causes us to
2687           have other problems (initial anchoring positons would be wrong)
2688           (Fixes #78835)
2690 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
2692         * Control.cs:
2693           - The size and location setters shouldn't go directly to 
2694             SetBoundsCore, but to SetBounds, which triggers layout on the
2695             parent, then calls SetBoundsCore. (Related to fix for #78835)
2696           - SetBounds: Moved actual location update code into this function
2697             from SetBoundsCore, to match MS. Added call to PerformLayout if
2698             we have a parent (to trigger resizing of anchored parents if the 
2699             child size has changed (see testcase for #78835) 
2700         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
2701           new control code
2702         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
2704 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
2706         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
2707           System.Drawing when a toplevel window gets closed; there might
2708           be other toplevel windows belonging to the same app (Fixes #78052)
2710 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
2712         * FileDialog.cs: After reading FileDialog settings from mwf_config
2713           use Desktop prefix only if a real folder doesn't exist anymore.
2714         * FontDialog.cs: Added char sets.
2715           It is now possible to select the font, size or style with the
2716           textboxes.
2718 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
2720         * PrintPreviewDialog.cs: Use assembly name constants.
2722 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
2724         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
2725           scrollbar from whacking it's buttons)
2727 2006-08-24  Chris Toshok  <toshok@ximian.com>
2729         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
2730         in this patch (aggregating setting Left/Top/Width/Height to
2731         setting Bounds on the scrollbars), but the crux of the fix is in
2732         Recalculate, where we scroll by the remaining scroll_position if
2733         we're hiding a scrollbar.  The 2*$5 reward in the comment is
2734         serious.
2736 2006-08-24  Jackson Harper  <jackson@ximian.com>
2738         * MdiClient.cs:
2739         * MdiWindowManager.cs: If the form is made a non-mdi window we
2740         need to remove the form closed event so that closing forms works
2741         correctly.
2743 2006-08-24  Jackson Harper  <jackson@ximian.com>
2745         * Control.cs: Make IsRecreating internal so that the driver can
2746         check it
2747         - Temporarily remove the Hide when controls are removed, its
2748         making a whole bunch of things not work because visibility isn't
2749         getting reset elsewhere correctly
2750         * Form.cs: Need to do a full handle recreation when the mdi parent
2751         is set.
2752         * XplatUIX11.cs: If we are recreating handles don't dispose the
2753         HWNDs.  What was happening is the handles were being recreated in
2754         SendWMDestroyMessages, but then flow continued on in that method
2755         and destroyed the new handles.
2757 2006-08-23  Jackson Harper  <jackson@ximian.com>
2759         * Form.cs: MdiClient is always at the back of the bus
2760         * Control.cs: When the order of items in the collection is changed
2761         we need to reset the all_controls array
2762         - do the same sorta setup thats done when adding a control when a
2763         control is set on the collection.
2765 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
2767         * TextBoxBase.cs (get_Text): Return an empty array if our document
2768           is empty (fixes #79052)
2770 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
2772         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
2773           on WM_SYSCHAR messages (fixes #79053)
2775 2006-08-23  Chris Toshok  <toshok@ximian.com>
2777         * DataGrid.cs: fix flickering when scrolling vertically.
2779 2006-08-23  Chris Toshok  <toshok@ximian.com>
2781         * DataGrid.cs (EndEdit): only invalidate the row header when we
2782         need to.
2784 2006-08-23  Chris Toshok  <toshok@ximian.com>
2786         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
2787         methods.  fixes the flicker when scrolling around.
2789 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
2791         * FileDialog.cs: Making sure the control is created before we get a 
2792           chance to use it with BeginInvoke (Fixes #79096)
2794 2006-08-23  Chris Toshok  <toshok@ximian.com>
2796         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
2797         width to use when painting the rows.
2799 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
2801         * TextBoxBase.cs:
2802           - Throw ArgumentException if a negative value is passed to SelectionLength
2803           - Update the selection end if start is moved. end needs to be always
2804             after start. (Fixes #79095)
2805           - Track selection length; MS keeps the selection length even if start
2806             is changed; reset on all other operations affection selection
2808 2006-08-22  Jackson Harper  <jackson@ximian.com>
2810         * TreeView.cs: Make sure both scrollbars get displayed and sized
2811         correctly when the other bar is visible.
2812         - Use the original clip rectangle for checking if the area between
2813         the two scrollbars is visible, not the viewport adjusted clipping
2814         rectangle.
2816 2006-08-22  Jackson Harper  <jackson@ximian.com>
2818         * Binding.cs: We don't use IsBinding because it requires the
2819         control to be created, which really shouldn't be necessary just to
2820         set a property on the control.
2822 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2824         * ComboBox.cs: Some CB.ObjectCollection methods must throw
2825         ArgumentNullReferenceException when the argument is null.
2827 2006-08-21  Jackson Harper  <jackson@ximian.com>
2829         * Timer.cs: Track the thread that the timer is started in (NOT
2830         CREATED), this way messages for it will only be triggered on its
2831         queue.
2832         * XEventQueue.cs: Track the timers here, this makes timers per
2833         thread, like MS.
2834         * XplatUIX11.cs: The timers are moved to the XEventQueue.
2836 2006-08-19  Chris Toshok  <toshok@ximian.com>
2838         * XplatUIX11.cs: after further communication with pdb, we get the
2839         best of both worlds.  SetZOrder working for un-Mapped windows, and
2840         no X errors for un-mapped windows.
2842 2006-08-19  Chris Toshok  <toshok@ximian.com>
2844         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
2845         as it was causing pdn toolbars to not have the correct stacking.
2847 2006-08-18  Mike Kestner  <mkestner@novell.com> 
2849         * ListView.cs : guard against negative ClientArea.Width in scrollbar
2850         calculation.  Not sure why control should ever be setting a negative
2851         width though.  Fixes #78931.
2853 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2855         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
2856         null items in ObjectCollection class.
2857         * ListBox.cs.: Likewise.
2859 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
2861         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
2862           as the base method in ThemeWin32Classic should work fine.
2863           Fixed bug #78607.
2865 2006-08-18  Jackson Harper  <jackson@ximian.com>
2867         * Binding.cs: When validating if the value entered doesn't convert
2868         properly reset to the old value.
2869         * RadioButton.cs: Don't fire click when we get focus.
2871 2006-08-18  Jackson Harper  <jackson@ximian.com>
2873         * FileDialog.cs: Paint the selection on the directory combobox the
2874         same way as on MS. 
2876 2006-08-17  Jackson Harper  <jackson@ximian.com>
2878         * ErrorProvider.cs: Don't allow the error control to be selected.
2879         * Control.cs: Don't send the SetFocus messages, the control
2880         activation will do this, and if we do it blindly here validation
2881         does not work.
2883 2006-08-17  Jackson Harper  <jackson@ximian.com>
2885         * Control.cs:
2886         * ContainerControl.cs: Make validation events fire in the correct
2887         order.  TODO: For some reason the first validation event is not
2888         getting fired.
2890 2006-08-17  Mike Kestner  <mkestner@novell.com> 
2892         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
2894 2006-08-17  Mike Kestner  <mkestner@novell.com> 
2896         * ComboBox.cs : implement scroll wheel support for popped-down
2897         state. Fixes #78945. 
2899 2006-08-17  Jackson Harper  <jackson@ximian.com>
2901         * TreeView.cs: Specify treeview actions (old patch that didn't get
2902         committed for some reason).
2903         - Don't let the mouse wheel scroll us too far.  Just want to make
2904         the bottom node visible, not scroll it all the ways to the top.
2906 2006-08-17  Jackson Harper  <jackson@ximian.com>
2908         * XplatUIX11.cs: Mouse wheel events go to the focused window.
2910 2006-08-17  Mike Kestner  <mkestner@novell.com> 
2912         * ComboBox.cs : don't do mouseover selection in simple mode.
2914 2006-08-16  Jackson Harper  <jackson@ximian.com>
2916         * Form.cs: Fire the closing events for all the mdi child windows
2917         when a window is closed.  If the cancel args are set to true, the
2918         main window still gets the event fired, but it doesn't not close.
2919         * MdiWindowManager.cs: Do this closing cleanup in a Closed
2920         handler, instead of when the button is clicked, so cancelling the
2921         close works correctly.
2922         * ComboBox.cs: Send the mouse down to the scrollbar.
2924 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2926         * ListBox.cs: When passing 'null' to SelectedItem,
2927         set SelectedIndex to -1, to unselect items. This is the
2928         observed behaviour in .Net.
2930 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
2932         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
2933           MS flags saying there won't be any. (fixes #78800)
2934         * Control.cs (HandleClick): Made virtual
2936 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
2938         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
2939           cultures. Fixed bug #78399.
2941 2006-08-16  Jackson Harper  <jackson@ximian.com>
2943         * Form.cs: Use the MdiClients MdiChildren property to access
2944         MdiChildren instead of creating the array from the child controls.
2945         * MdiClient.cs: Maintain a separate array of the mdi children, so
2946         that insertion order is maintained when the Z-order is changed.
2948 2006-08-16  Mike Kestner  <mkestner@novell.com> 
2950         * ListView.cs : add an ItemComparer and default to it for sorting.
2951         Fixes #79076, but sorting needs a complete overhaul to be compat with
2952         MS.
2954 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
2956         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
2958 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
2960         * Hwnd.cs (Mapped): Properly traverse the tree
2962 2006-08-15  Chris Toshok  <toshok@ximian.com>
2964         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
2965         pass manager.Current.GetType() to ParseData.  It has to be the
2966         property type.  So, hold off doing the ParseData until we're in
2967         SetPropertyValue where we know the type.  This fixes the crash in
2968         #78821 but the textbox is still empty.
2970 2006-08-15  Chris Toshok  <toshok@ximian.com>
2972         * DataGrid.cs:
2973         - when we're scrolling, only call Edit() again if the
2974         current cell is still unobscured. Fixes bug #78927.
2975         - when handling mousedown on a cell, ensure the cell is visible
2976         before calling Edit.
2977         - remove the properties from DataGridRow, and remove the
2978         DataGridParentRow class altogether.
2979         
2981 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
2983         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
2984           fire OnTextChanged by ourselves. There's no point calling base,
2985           we don't set the base value anywhere else. Fixes #78773.
2987 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2989         * ListBox.cs: Call CollectionChanged when modifying
2990         an item from Items indexer, to update the actual items
2991         in the list box.
2993 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2995         * PrintDialog.cs: Small fixes for focus and a pair of checks,
2996         to match .Net behaviour.
2998 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
3000         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
3002 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
3004         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
3006 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
3008         * MessageBox.cs: Prevent potential NRE exception.
3009         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
3011 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
3013         * MessageBox.cs: Calculate the owner of a messagebox, also make
3014           it topmost. Fixes #78753
3016 2006-08-14  Chris Toshok  <toshok@ximian.com>
3018         * XplatUIX11.cs: A couple of fixes so that metacity will let us
3019         programmatically move windows.  first, set the PPosition hint as
3020         well as the USPosition hint.  Second include some code from pdb
3021         that sets the window type to NORMAL when we set the transient for
3022         hint.  This is because, in the absence of a window type, metacity
3023         thinks any window with TransientFor set is a dialog, and refuses
3024         to let us move it programmatically.  fascists.
3026 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
3028         * XplatUIX11.cs: When setting normal hints, take into consideration
3029           an different hints previously set so we don't delete them (fixes #78866)
3031 2006-08-12  Chris Toshok  <toshok@ximian.com>
3033         * ToolBarButton.cs: make Layout return a boolean, if something to
3034         do with the button's layout changed.
3036         * ToolBar.cs:
3037         - add another parameter to Redraw, @force, which all existing
3038           calls set to true.
3039         - make the Layout function return a boolean which is true if the
3040           layout has actually changed.  Redraw now uses this (and @force)
3041           to determine when to invalidate.  At present the only place
3042           where @force can be false is the call from OnResize, when
3043           background_image == null.  So, resizing a toolbar when the
3044           layout doesn't change results in no drawing.
3046 2006-08-12  Chris Toshok  <toshok@ximian.com>
3048         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
3049         the VScrollBar and HScrollbar reversed.  oops.
3051         * DataGrid.cs: fix the logic that assigns sizes to the implicit
3052         scrollbars.  we were assigning them twice (once in
3053         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
3054         therefore causing two scrollbar resizes (and redraws?) to happen
3055         per grid resize.
3057 2006-08-12  Chris Toshok  <toshok@ximian.com>
3059         * ToolBarButton.cs: redraw the entire button if the theme tells us
3060         to.
3062         * Theme.cs: add ToolBarInvalidateEntireButton.
3064         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
3065         buttons, just the border.
3067         * ThemeNice.cs: redraw the entire toolbar button since we need to
3068         draw the highlight image.
3070         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
3071         we need to redraw the entire button (not just the border).
3073 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
3075         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
3076           for vertical bars. Fixes the mismatches shown by #78513
3078 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
3080         * FileDialog.cs: If a saved/remembered path doesn't exist
3081           anymore, fall back to "Desktop".
3083 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
3085         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
3086           parent. It's apparently legal to not have one
3087         * XplatUIX11.cs:
3088           - SetZOrder: Don't try to set Z-Order on an unmapped window
3089           - CreateWindow: 0,0 are legal coordinates for a window. don't move
3090             it unless the coordinates are negative
3092 2006-08-10  Mike Kestner  <mkestner@novell.com>
3094         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
3095         when setting to null per msdn docs.  Fixes #78854.
3097 2006-08-10  Chris Toshok  <toshok@ximian.com>
3099         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
3100         flickering by setting a clip rectangle on the Graphics when we
3101         need to redraw just a particular menuitem.  Also, rename "OnClick"
3102         to "OnMouseDown" to reflect what it actually is.
3103         
3104         * Form.cs: track the OnMouseDown change.
3106 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
3108         * CommonDialog.cs: Properly inherit the CreateParams from the form
3109           and only change what we need. Fixes #78865
3111 2006-08-10  Chris Toshok  <toshok@ximian.com>
3113         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
3114         flickering in flat mode (and most of the flickering in general) by
3115         only invalidating the button border (and not the entire rectangle)
3116         when the state changes.  A couple of cases still flicker:
3117         ToggleButtons, and the dropdown arrow case when the user mouse
3118         ups.
3120 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
3122         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
3123           for german keyboards. Numlock state shouldn't affect the behaviour
3124           of the Del key. Fixes bug #78291.
3126 2006-08-10  Chris Toshok  <toshok@ximian.com>
3128         * ListControl.cs: remove the items.Clear line from BindDataItems,
3129         as this is the first thing done by both subclasses in their
3130         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
3131         passed -1, refresh the list.  This gets databinding working when
3132         the datasource is set on the list before the datasource is
3133         populated (as in wf-apps/ReportBuilder.)
3135         * ComboBox.cs: remove the argument to BindDataItems.  This call
3136         should really go away, and be initiated by the ListControl code.
3138         * ListBox.cs: same.
3140 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
3142         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
3143           if no data is in the document when the control is displayed
3145 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
3147         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
3148           yes (fixes #78806)
3149         * TextControl.cs: 
3150           - PositionCaret: Allow positioning of caret but don't call methods 
3151             requiring a handle if the window isn't created yet
3152           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
3153           - owner_HandleCreated: Don't position the caret, just update it's 
3154             location. User might have already set a different position
3156 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
3158         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
3159           windows. Screws up the returned coordinates for child windows. 
3160           Fixes #78825. I'm hoping this doesn't break something, since the
3161           code was explicitly put in 8 months ago, but no bug was attached.
3162           Menus still seem to work properly.
3164 2006-08-08  Chris Toshok  <toshok@ximian.com>
3166         * DataGrid.cs: make BeginInit/EndInit actually do what they're
3167         supposed to do - delay data binding until the EndInit call.  Also,
3168         make the table style collection's CollectionChangeAction.Refresh
3169         work properly.
3171         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
3172         (with action = Refresh) when a consituent table's MappingName is
3173         changed.
3175 2006-08-08  Chris Toshok  <toshok@ximian.com>
3177         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
3178         Invalidate, since changing the text can change the size of the all
3179         toolbar buttons.
3181 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
3183         * Form.cs (AddOwnedForm): Still need to add the form to our listif
3184           we don't have it yet
3186 2006-08-08  Chris Toshok  <toshok@ximian.com>
3188         * PrintControllerWithStatusDialog.cs: don't .Close() the status
3189         dialog, as this causes X errors later on, since we actually
3190         destroy the window.  Instead, .Hide() it.
3192 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
3194         * ComboBox.cs: Added focus reflection for popup window
3195         * XplatUIX11.cs: 
3196           - Removed transient setting for non-app windows for now, not sure it
3197             was needed
3198           - Fixed logic checking if we have captions when deciding 
3199             override_redirect, WS_CAPTION is two bits and a 0 check was not
3200             sufficient
3201           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
3202             complicated
3203         * Form.cs: 
3204           - AddOwnedForm: Don't just add the form to the list, call the property
3205             to ensure the driver is informed about the ownership as well
3206           - CreateHandle: Set the TopMost status in the driver if we have an owner
3207         * XplatUI.cs: Fixed debug statement
3209 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
3210         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
3211           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
3212           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
3213           TrackBarRenderer.cs: Make constructor private.
3214         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
3215         * ProfessionalColorTable.cs: Make properties virtual.
3217 2006-08-06  Duncan Mak  <duncan@novell.com>
3219         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
3220         is not changing.
3222 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
3223         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
3224           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
3225           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
3226           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
3227           Initial import of new 2.0 classes.
3229 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
3230         * Application.cs: Add 2.0 VisualStyles properties.
3232 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
3233         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
3234           XplatUIX11.cs: Create property to allow access to existing private
3235           variable "themes_enabled"
3237 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3239         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
3240         file size, as otherwise our class libraries fail using windows. Fixes
3241         bug #78759.
3243 2006-08-04  Jackson Harper  <jackson@ximian.com>
3245         * Form.cs:
3246         * XplatUIX11.cs: Move the toolwindow window manager creation into
3247         the X11 driver, this way on win32 we can let windows create/handle
3248         the toolwindows.
3250 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3252         * PrintDialog.cs: Remove some redundant checks, add some others,
3253         clean some code, and move the focus to the text boxes when the
3254         values are incorrect.
3256 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
3258         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
3260 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
3262         * NumericUpDown.cs: Setting the Minimum and Maximum is now
3263           handled correctly. Fixes bug #79001.
3265 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3267         * PrintDialog.cs: The "Copies" numeric up down must have
3268         set the Minimum property to 1; only if the value is bigger
3269         than 1, activate "Collate" check box. This is the behaviour of .Net.
3270         Also modify the Document elements only if it is not null.
3272 2006-08-03  Jackson Harper  <jackson@ximian.com>
3274         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
3275         length. (We have a larger array then actual node count).
3276                 
3277 2006-08-03  Jackson Harper  <jackson@ximian.com>
3279         * ComboBox.cs: Don't show selection by default.
3280         - The SelectAll isn't needed here, since the focus code should do
3281         that
3282         - DDL style lists to manual selection drawing, so when they
3283         get/lose focus they have to invalidate.
3285 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
3287         * TextBoxBase.cs: Don't always show all selections by default.
3289 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
3290         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
3291           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
3292           Fixed various typos.
3294 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
3296         * Control.cs: Removing the controls in a ControlCollection with
3297           Clear now hides the controls as expected. Fixes bug #78804. 
3299 2006-08-03  Jackson Harper  <jackson@ximian.com>
3301         * Control.cs: Revert previous focus patch, it breaks reflector.
3303 2006-08-03  Jackson Harper  <jackson@ximian.com>
3305         * ComboBox.cs: Cleanup selection and focus with the combobox.
3306         This also eliminates some duplicated keyboard code, since now
3307         everything is handled by the main class.
3308         - Make list selection work on mouse up instead of down, to match
3309         MS.
3311 2006-08-02  Jackson Harper  <jackson@ximian.com>
3313         * Control.cs: Setting focus needs to go through the whole
3314         selection mechanism.
3316 2006-08-02  Chris Toshok  <toshok@ximian.com>
3318         * PrintPreviewDialog.cs: change MinimumSize to use
3319         base.MinimumSize so it works.
3321 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
3323         * TextControl.cs:
3324           - UpdateCaret: Added sanity check in case caret isn't defined yet
3325           - Line.Delete: Now updating selection and caret markers if we're
3326             transfering a node (Properly fixes #78323)
3327           - SetSelectionEnd: Added sanity check
3328         * TextBoxBase.cs: Removed broken attempt to fix #78323
3330 2006-08-01  Chris Toshok  <toshok@ximian.com>
3332         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
3333         Close() call is handled in Form, not here.
3335 2006-08-01  Chris Toshok  <toshok@ximian.com>
3337         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
3338         layout/rendering.
3340         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
3341         for sizes < 100% zoom.  The code now aggressively attempts to keep
3342         from calling document.Print (), and tries not to use the scaling
3343         g.DrawImage whenever possible (it still does if you scale to >
3344         100%, since usually that involves huge images).
3346         * PrintPreviewControl.cs: hook up the close button.
3348 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
3349         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
3350           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
3351           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
3352           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
3353           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
3354           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
3355           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
3356           Removed [Serializable] for 2.0 Event Handlers.
3358 2006-07-31  Jackson Harper  <jackson@ximian.com>
3360         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
3361         * TextControl.cs: Uncomment out the body of this method.
3363 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
3365         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
3366           standard cursors.
3368 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
3370         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
3371           that embed TextBox and need selections visible even if textbox is not
3372           focused to enforce that behaviour.
3373         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
3374           selection drawing
3376 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
3378         * TextControl.cs:
3379           - Added new SetSelectionStart/SetSelectionEnd overloads
3380           - Fixed viewport width assignment to be accurate
3381           - Adjusted alignment line shift calculations to allow cursor on right
3382             aligned lines to be always visible at the right border (like MS)
3383         * TextBoxBase.cs:
3384           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
3385           - TextBoxBase_SizeChanged: recalculating canvas on size changes
3386           - CalculateScrollBars: Use ViewPort size instead of window size, to
3387             properly consider space occupied by the border and scrollbars 
3388             (Fixes #78661)
3389           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
3390             calculations; no longer leaves artifacts
3391           - CaretMoved: Adjusted window scrolling to match MS and fixed several
3392             calculation bugs (Still missing right/center align calculations)
3394 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
3396         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
3397           use of both scroll rect and clip rect, as they do the same.
3399 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
3401         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
3402           in the event handler (fixes #78912)
3404 2006-07-31  Chris Toshok  <toshok@ximian.com>
3406         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
3407         grid.ListManager.Count, since grid.ListManager might be null.
3408         This of course begs the question "why are we drawing rows for a
3409         grid with no list manager (and therefor no rows)?"  Fixes the
3410         crash in bug #78929.
3412 2006-07-31  Chris Toshok  <toshok@ximian.com>
3414         * RelatedPropertyManager.cs: Don't always chain up to the parent
3415         ctor.  instead, call SetDataSource if the parent's position is !=
3416         -1.  Fixes the crash in #78822.
3418 2006-07-31  Chris Toshok  <toshok@ximian.com>
3420         * DataGrid.cs (get_ListManager): use field instead of property
3421         accessors for datasource and datamember.
3422         (RowsCount): make internal again.
3423         (OnMouseDown): end edits before resizing columns/rows.
3424         (OnMouseUp): restart edits after resizing columns/rows.
3426 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
3428         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
3429           This fixes the situation where the last set cursor is displayed
3430           whenever the mouse is over scrollbars.
3432 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3434         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
3435         Document properties, as well as initial values.
3437 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
3439         * XplatUIWin32.cs (SetBorderStyle): Setting both border
3440           and ClientEdge results in a 3-pixel border, which is
3441           wrong.
3443 2006-07-28  Jackson Harper  <jackson@ximian.com>
3445         * TreeNodeCollection.cs: Fix the clear method.
3446         - Fix the Shrink also
3448 2006-07-27  Jackson Harper  <jackson@ximian.com>
3450         * TreeView.cs: Make sure the visible order is computed when we
3451         attempt to size the scrollbars (for trees that mess with the
3452         scrolling when they shouldn't.
3453         - Make sure to give the scrollbars valid values.
3455 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
3457         * XplatUIX11.cs: Move motion compression code to where it
3458           has less performance impact
3460 2006-07-26  Jackson Harper  <jackson@ximian.com>
3462         * UpDownBase.cs: When the control is selected make the child
3463         controls non selectable, so that a click on them won't do a
3464         focus/unfocus cycle.
3465         - Don't give focus to the text box when the spinner is selected.
3466         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
3468 2006-07-26  Chris Toshok  <toshok@ximian.com>
3470         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
3471         satisfied with this solution.  If the bitmaps are small, we should
3472         just cache them in the PrintPreviewDialog and draw them here.
3473         Also, the layout is broken for the 2-up and 3-up cases.
3475         * Theme.cs: add PrintPReviewControlPaint.
3477         * PrintPreviewDialog.cs: first pass implementation.
3479         * PrintPreviewControl.cs: first pass implementation.  No
3480         scrollbars yet.
3482         * PrintDialog.cs: only validate fields if that particular portion
3483         of the UI is enabled.  Also, set the document's controller to a
3484         PrintControllerWithStatusDialog wrapping the document's print
3485         controller.
3487         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
3488         bring up a SaveFileDialog (i hope we don't want to match the
3489         behavior of the crappy windows file entry) and set the
3490         PrinterSettings.PrintFileName accordingly.
3492 2006-07-26  Jackson Harper  <jackson@ximian.com>
3494         * ContainerControl.cs: Add a field that disables auto selecting
3495         the next control in a container when the container is activated.
3496         * UpDownBase.cs: Don't select the text box when the up down is
3497         selected.
3499 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
3501         * XEventQueue.cs: Added methods for peeking (used for compression
3502           of successive events)
3503         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
3504           mouse move events (fixes #78732)
3506 2006-07-25  Jackson Harper  <jackson@ximian.com>
3508         * UpDownBase.cs: Use an internal class for the textbox so that we
3509         can control focus.  the updown control should always have focus,
3510         if either the text area or the buttons are clicked.
3511         - Send the key messages to the textbox, since it never actually
3512         has focus
3513         - Activate and decativate the textbox caret.
3515 2006-07-24  Jackson Harper  <jackson@ximian.com>
3517         * Control.cs: Use the directed select when selecting a control,
3518         this way the container controls override will get called and the
3519         whole ActiveControl chain will get triggered.  TODO: probably need
3520         to make sure this gets done everywhere instead of the old
3521         Select(Control).
3522         * ContainerControl.cs: Implement the directed Select method to
3523         find and activate the correct child control.    
3524         
3525 2006-07-22  Mike Kestner  <mkestner@novell.com>
3527         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
3528         menu handling code so that clicks without a grab work too.
3529         [Fixes #78914]
3531 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
3533         * FileDialog.cs: Enable the BackButton when dirstack has one element.
3534           Added some small optimizations.
3536 2006-07-21  Matt Hargett  <matt@use.net>
3538         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
3540 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
3542         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
3543           tests pass and match MS in some strange border cases.
3545 2006-07-21  Chris Toshok  <toshok@ximian.com>
3547         * ThemeWin32Classic.cs: handle drawing of the relation links and
3548         parent row buttons.
3550         * Theme.cs: change args to DataGridPaintParentRow.
3552         * DataGrid.cs: Don't use controls for the relation links and
3553         parent buttons, so we have to handle all their interactions in
3554         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
3555         when we're navigating through child tables, so we can reinstate
3556         selection, expanded state, current cell, etc.
3558 2006-07-20  Chris Toshok  <toshok@ximian.com>
3560         * ToolBar.cs: When we redraw a button, for whatever reason,
3561         there's no reason to redraw the entire toolbar.  Also, don't call
3562         Control.Refresh from within Redraw, as it's much heavier than
3563         Invalidate (which is really what we want).
3565 2006-07-20  Chris Toshok  <toshok@ximian.com>
3567         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
3568         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
3569         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
3570         traces from within a debug IBindingList datasource
3571         (in mono/winforms/datagrid) for *days*, I've finally gotten things
3572         to work in a similar fashion.
3574 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3576         * ListBox.cs: Don't call Sort () when setting 
3577         the Sorted property to false (avoid an unnecessary sort).
3579 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3581         * ListControl.cs: DataSource should throw an ArgumentException
3582         instead of a normal exception when the argument is not of the 
3583         correct type.
3585 2006-07-20  Mike Kestner  <mkestner@novell.com>
3587         * Control.cs: add InternalPreProcessMessage to allow us to steal
3588         key events before MWF gets its paws on them.  Adapted from a
3589         suggestion by eno.
3590         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
3591         up/down/left/right navigation. Override the new internal control
3592         method to steal the events since they never make it to WndProc.
3593         * ToolBarButton.cs: don't worry about pushed when setting hilight
3594         since the drawing code prefers pushed to hilight. Invalidate on 
3595         Hilight changes. Fixes #78547 and #78525.
3597 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
3599         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
3600           the canvas size. Fixes #78868
3602 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
3604         * Splitter.cs: Track requested split position until first layout
3605           is performed. Fixes #78871
3607 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
3609         * Application.cs: Removed code that forces 1.x for the version
3610           number if the version started with 0. Not sure why that code was
3611           there and I couldn't find any bugs that indicated we needed it.
3612           Fixes #78869
3614 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
3616         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
3617           ResetDefaults(), just write some output to the console until it's
3618           implemented. Fixes bug #78907 for now. Eliminated two warnings.
3620 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
3622         * PropertyGridView.cs: set StartPosition of drop down forms
3623         so they appear in correct initial spot.  Fixes #78190.
3625 2006-07-19  Mike Kestner  <mkestner@novell.com>
3627         * ThemeWin32Classic.cs: use parent background color when drawing
3628         flat toolbars.  Restructure the conditionals to make sure non-flat
3629         non-Divider toolbars are filled too.  Fixes #78837.
3631 2006-07-19  Mike Kestner  <mkestner@novell.com>
3633         * ListBox.cs: Sort on collection changes even if the handle
3634         isn't created yet.  Fixes #78813.
3636 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3638         * ListControl.cs: DisplayMember should never be null,
3639         and now we assign String.Empty when null is passed to it (this
3640         is the .Net way).
3642 2006-07-17  Mike Kestner  <mkestner@novell.com>
3644         * ListViewItem.cs: restructure Font and subitem Font handling 
3645         to hold a specific font and refer back to owner on null.
3646         Fixes #78761.
3648 2006-07-17  Mike Kestner  <mkestner@novell.com>
3650         * ToolBar.cs: bandaid for side-effect of previous patch which was
3651         discarding explicit heights for non-AutoSize toolbars.  Need to
3652         extend my format tester to deal with AutoSize=false. Fixes #78864.
3654 2006-07-15  Jackson Harper  <jackson@ximian.com>
3656         * LabelEditTextBox.cs:
3657         * TreeView.cs: Use a new LabelEdit class for node editing, this
3658         class automatically 'closes' itself when it gets the enter key or
3659         loses focus.
3660         - Use the client rectangle when setting the trees scrollbars, so
3661         border style is taken into account.
3662         
3663 2006-07-14  Jackson Harper  <jackson@ximian.com>
3665         * TreeNode.cs:
3666         * TreeView.cs: Make the editing work similar to MSs, firing the
3667         events correctly and ending edits correctly.
3669 2006-07-14  Mike Kestner  <mkestner@novell.com>
3671         * ToolBarButton.cs:
3672         * ToolBar.cs: layout restructuring and redraw enhancements to support
3673         formatting changes gracefully, like setting TextAlign, ImageList, 
3674         ButtonSize, and Appearance.  Handles explicit button sizing quirks
3675         of the MS controls.  Things like flat toolbars ignoring button size
3676         but becoming constant sized at the largest button's size.  Normal
3677         toolbars with an image set cannot be shrunk smaller than the image,
3678         but text can be clipped/ignored.
3679         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
3680         is zero.  Seems like DrawString should be smart enough to not put
3681         anything on screen though. Also trim labels and ellipsize at the char
3682         boundary, not word.
3683         Fixes #78711 and #78483.
3685 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
3687         * FolderBrowserDialog.cs: Disable "New Folder" button and
3688           "New Folder" contextmenu menuitem if a folder like "My Computer"
3689           is selected.
3691 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
3693         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
3694         * FolderBrowserDialog.cs:
3695           - Use MWFConfig to store and read size and position settings
3696           - Added code to create a new folder (button or context menu).
3697             Use TreeView labeledit to change the name of the new folder.
3699 2006-07-14  Jackson Harper  <jackson@ximian.com>
3701         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
3702         when the tree is scrolled we end editing.
3704 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
3706         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
3707           Down arrows
3709 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
3711         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
3712         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
3713         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
3714         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
3715         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
3716         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
3717         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
3718         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
3719         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
3720         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
3721         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
3722         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
3723         ListViewItemSelectionChangedEventHandler.cs,
3724         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
3725         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
3726         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
3727         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
3728         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
3729         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
3730         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
3731         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
3732         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
3733         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
3734         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
3735         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
3736         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
3737         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
3738         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
3739         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
3740         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
3741         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
3742         WebBrowserNavigatingEventHandler.cs, 
3743         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
3745 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
3747         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
3748         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
3749         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
3750         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
3751         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
3752         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
3753         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
3754         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
3755         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
3756         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
3757         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
3758         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
3759         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
3760         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
3761         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
3762         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
3763         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
3764         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
3765         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
3766         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
3767         ListViewItemStates.cs, MaskFormat.cs: Added
3769 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
3771         * PropertyGridView.cs: Fix keyboard navigation of drop down.
3772         Patch from eno for bug 78558.
3773         
3774 2006-07-13  Jackson Harper  <jackson@ximian.com>
3776         * TreeView.cs: When an edit is finished make sure that the
3777         selected node is visible.
3778         - When setting the top/bottom use the scrollbars is_visible, so
3779         everything will be set correctly even if the tree isn't visible
3780         yet.
3782 2006-07-13  Jackson Harper  <jackson@ximian.com>
3784         * ComboBox.cs: Revert the item->index part of my previous patch.
3785         * TreeView.cs: Use LostFocus instead of Leave for detecting when
3786         the edit box has lost focus (duh).
3787         - Just make the edit box not visible when we get return, that will
3788         take the focus, which will call EndEdit
3789         * TreeNode.cs When we start editing, notify the treeview.
3791 2006-07-12  Jackson Harper  <jackson@ximian.com>
3793         * ComboBox.cs: Clear out old items before setting the item list.
3794         This prevents databound controls from having their items added
3795         twice.
3796         - Switch the combobox to use indices whereever possible instead of
3797         using Item's.  This allows usto navigate through lists that have
3798         more then one item with the same string value (ie a, b, b, a).
3799         - Scroll the listboxes scrollbar when a non visible item is
3800         highlighted
3801         - Allow keypress to cycle through all the possible values. For
3802         example if you have b1, b2, b3 and hold down the B key all the
3803         values will be cycled through.
3804         
3805 2006-07-12  Jackson Harper  <jackson@ximian.com>
3807         * TextBoxBase.cs:
3808         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
3809         this using the internal methods.
3810         * Control.cs: Add OnGotFocusInternal.  A new method that allows
3811         controls to "override" OnGotFocus and change focus behavior if
3812         needed.
3813         - Same thing for LostFocus
3814         * ComboBox.cs: Pass off focus to the text control properly.
3816 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
3818         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
3819         * FolderBrowserDialog.cs: Almost a complete rewrite.
3820           - Better support for Environment.Specialfolders
3821           - Added support for MWFVFS
3822           - Made setting SelectedPath work
3824 2006-07-12  Jackson Harper  <jackson@ximian.com>
3826         * Control.cs: Optimze getting all the controls.
3828 2006-07-11  Jackson Harper  <jackson@ximian.com>
3830         * ContainerControl.cs: Override SETFOCUS in the container control,
3831         so that it is not selected on mouse click.
3833 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
3835         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
3836           Hopefully we will have a better way once all of focus is complete.
3838 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
3840         * ThemeWin32Classic.cs: Commented out some debug code and fixed
3841           a compile error with csc.
3843 2006-07-11  Jackson Harper  <jackson@ximian.com>
3845         * Control.cs: When hiding a control only select the next control
3846         if the current control was focused.
3847         - Don't handle enter/leave when setting/killing focus, this is
3848         done by the container control.
3849         - Remove is_selected, it's not needed anymore.
3850         - Add utility methods for selecting a child control, and for
3851         firing the Enter/Leave events.
3852         * ContainerControl.cs: When a control is activated fire the
3853         enter/leave events.
3854         - Don't wrap when processing the tab key, so that focus can be
3855         moved outside of the container.
3856         - Use the correct active control
3858 2006-07-11  Jackson Harper  <jackson@ximian.com>
3860         * ComboBox.cs: Remove some debug code that was blinding me.
3861         * UpDownBase.cs: These controls actually aren't implicit, they are
3862         visible to the user.
3864 2006-07-10  Chris Toshok  <toshok@ximian.com>
3866         * DataGrid.cs: move back to the is_adding boolean field.  god i
3867         hate this is_editing/is_adding/is_changing stuff.
3869 2006-07-10  Chris Toshok  <toshok@ximian.com>
3871         * DataGridTableStyle.cs: just check if the property type is bool.
3872         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
3873         Don't use CanRenderType.
3875         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
3876         if our text == NullText.  Remove CanRenderType.
3878         * DataGridBoolColumn.cs: nuke CanRenderType.
3880         * DataGrid.cs: reenable some code to end the current edit inside
3881         of set_CurrentCell.  This fixes the other 1.1.16 regression.
3882         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
3883         Also, remove the visible_row_count arg from CalcRowHeaders, since
3884         we don't need to worry about the actual height of the area.
3886 2006-07-10  Chris Toshok  <toshok@ximian.com>
3888         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
3889         mode, just return.
3891         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
3892         the real sense of the IsInEditOrNavigateMode property (true =
3893         navigate, false = edit).  Also, update OnKeyPress to reflect this.
3895         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
3896         column style exists, we still need to set its property descriptor
3897         to match up with our list manager.
3899 2006-07-10  Chris Toshok  <toshok@ximian.com>
3901         * ThemeWin32Classic.cs: implement the new row/header painting
3902         approach.  The parent row painting will likely go away and
3903         replaced with label controls, but the rest seems to work ok (and
3904         efficiently).
3906         * Theme.cs: change the way we draw datagrid rows.  we don't draw
3907         the row headers as a block now.  Instead we draw them in the
3908         normal draw-row loop.  Add some calls for drawing parent rows and
3909         relation rows.
3911         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
3912         a default table style.  Set the defaults from ThemeEngine.Current,
3913         not SystemColors.  Fix lots of misc issues with property setters.
3915         * DataGrid.cs: move loads of style information out of this class
3916         as it's being duplicated with DataGridTableStyle.  keep track of a
3917         special DataGridTableStyle for the properties we used to mirror
3918         here.  Switch all the style properties to access this table style
3919         instead of instance fields of this class.  Also add a internal
3920         class to represent parent rows (more needs to be stored here, like
3921         the selection state from the parent table, as well as the
3922         expansion state.)  Also, for datasources with relations, do the
3923         right thing for collapse/expand, and add support for the
3924         navigation/parent row buttons.
3926         Lastly, fix the crash in the 1.1.16 build.
3928         * GridTableStylesCollection.cs: make the explicit interface
3929         implementations call the class's methods as opposed to duplicating
3930         them.
3932         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
3933         0 so the text doesn't jump around when we move the cursor.
3935 2006-07-10  Jackson Harper  <jackson@ximian.com>
3937         * TextBoxBase.cs:
3938         * ListBox.cs: Match MS's ToString (this makes debugging focus
3939         stuff infinitely easier).
3941 2006-07-10  Jackson Harper  <jackson@ximian.com>
3943         * Control.cs (SelectNextControl): When checking the control's
3944         parent use this instead of ctrl.parent so that null can be passed
3945         to SelectNextControl. (I have unit tests for this).
3946         - Remove unused var.
3948 2006-07-10  Chris Toshok  <toshok@ximian.com>
3950         * CurrencyManager.cs: correct one regression, the removal of the
3951         finalType field.  Also, add a MonoTODO on CanAddRows, implement
3952         Refresh() correctly, and fix some event emission in
3953         ListChangedHandler.
3955 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
3957         * FileDialog.cs: Don't use brackets for new folders if they exist
3958           under *nix. Instead use -(number of existing folders +1).
3960 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
3962         * FileDialog.cs:
3963           - Fixed really nasty bug #78771
3964           - Don't block the whole GUI when reading directories with a lot of
3965             entries. Use an other thread instead and call BeginInvoke to
3966             update the ListView in MWFFileView
3968 2006-07-07  Chris Toshok  <toshok@ximian.com>
3970         * Control.cs (Dispose): release any Capture when disposing.
3972 2006-07-07  Chris Toshok  <toshok@ximian.com>
3974         * LinkLabel.cs (Select): if we chain up to the parent, set
3975         focused_index to -1 so we'll search for the first available link
3976         the next time the user tabs into us.  Also, if the direction is
3977         backward and focused_index == -1, start the search from the last
3978         element.
3980 2006-07-07  Chris Toshok  <toshok@ximian.com>
3982         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
3983         is beyond the end of the text, don't do anything.
3984         (CreateLinkPieces): set our ControlStyles.Selectable based on
3985         whether or not we have any links.
3986         (Link.Invalidate): use a loop instead of foreach.
3987         (Link.set_Start): null out owner.sorted_links so it'll be
3988         recreated by CreateLinkPieces.
3990 2006-07-06  Chris Toshok  <toshok@ximian.com>
3992         * LinkLabel.cs: revert the SetStyle change.
3994 2006-07-06  Chris Toshok  <toshok@ximian.com>
3996         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
3997         (OnEnableChanged): s/Refresh/Invalidate
3998         (OnGotFocus): if we have a focused index already, refocus it (so
3999         if we mouse out/in to the window it'll focus the right link).
4000         (OnKeyDown): move the tab handling out of here.
4001         (OnLostFocus): don't set focused_index to -1, so we can refocus it
4002         when we lose focus.
4003         (OnMouseDown): don't Capture here - Control handles it.  Also,
4004         focus the active link.
4005         (OnMouseUp): don't deal with Capture.
4006         (OnPaintBackgroundInternal): remove.
4007         (OnTextAlignChanged): CreateLinkPieces before calling the
4008         superclass's method.
4009         (OnTextChanged): call CreateLinkPieces before calling superclass's
4010         method.
4011         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
4012         move around.
4013         (Select): implement this, moving the selection between different
4014         links, and call parent.SelectNextControl if we don't have another
4015         link to focus in the given direction.
4016         (CreateLinkPieces): call Invalidate instead of Refresh.
4017         
4018 2006-07-06  Chris Toshok  <toshok@ximian.com>
4020         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
4021         new LinkLabel internals.
4023         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
4024         over pieces looking for active/focused/etc links.  also, deal with
4025         runs of text (and links) with embedded \n's in them, and use
4026         MeasureCharacterRanges instead of MeasureString to figure out the
4027         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
4028         two-step.
4030 2006-07-04  Jackson Harper  <jackson@ximian.com>
4032         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
4033         XKB or key auto repeat, do it manually.  Without key auto repeat,
4034         when a key is held down we get key press, key release, key press,
4035         key release, ... with auto repeat we get key press, key press, key
4036         press ..., and then a release when the key is actually released.
4038 2006-07-03  Jackson Harper  <jackson@ximian.com>
4040         * TabControl.cs:
4041         * ThemeWin32Classic.cs: Tabs do not obey normal background color
4042         rules, they are always control color regardless of the background
4043         color.
4045 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
4047         * FileDialog.cs: Added internal class MWFConfig.
4048           Removed Registry support and replaced it with support for the new
4049           MWFConfig class. See MWFConfig comments for more information.
4051 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
4053         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
4054           rectangle. Added some patches from eno from bug #78490 and fixed
4055           the arrow position for small up and down CPDrawScrollButtons.
4057 2006-06-30  Jackson Harper  <jackson@ximian.com>
4059         * InternalWindowManager.cs: Remove some debug code.
4060         * Form.cs: When an MdiParent is set to null, the window is
4061         "detatched" and becomes a normal window.
4062         * MdiClient.cs: Don't bring the new child form to the front until
4063         it is activated (setting it as active does this), this makes the
4064         previously active forms titlebar get redrawn as inactive.
4066 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
4068         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
4069           with later controls
4071 2006-06-29  Mike Kestner  <mkestner@novell.com>
4073         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
4074         arrow in keynav state.  Fixes #78682.
4076 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
4078         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
4079           order (fixes #78393)
4081 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
4083         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
4084           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
4085           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
4086           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
4087           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
4088           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
4089           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
4090           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
4091           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
4092           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
4093           enumerations (FlagsAttribute, SerializableAttribute, added/removed
4094           values)
4096 2006-06-28  Mike Kestner  <mkestner@novell.com>
4098         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
4100 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
4102         * PropertyGrid.cs,
4103           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
4104           item lines from other area (It also makes BackColor consistent and
4105           compatible with .NET). Fixed bug #78564.
4107 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
4109         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
4110         Patch from Eno for #78555.
4112 2006-06-27  Chris Toshok  <toshok@ximian.com>
4114         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
4116         * DataGridColumnStyle.cs: same.
4118         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
4119         
4120         * DataGridDrawingLogic.cs: nuke.
4122 2006-06-27  Chris Toshok  <toshok@ximian.com>
4124         * DataGridTableStyle.cs: clean up the constructors, and build the
4125         list of child relations for this table.  I have no idea if this is
4126         where we should be doing it (it probably isn't), but since we're
4127         already iterating over the properties..
4129         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
4130         struct and array for keeping track of row information, similar to
4131         what's shown in a hack on
4132         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
4134         * Theme.cs: be consistent about the naming of DataGrid methods,
4135         prefering ColumnWidths and RowHeights over columnsWidths and
4136         RowsHeights.
4138         * ThemeWin32Classic.cs: same, and also add support for variable
4139         sized rows (and the +/- expansion icons for related rows).
4141 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
4143         * TextBoxBase.cs: Applied Eno's patch from #78660
4145 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
4147         * Form.cs (ScaleCore): We don't want to scale our form if it's
4148           state is minimized or maximized, but we still need to scale our
4149           child windows. Also, added try/finally block to ensure layout
4150           gets reset (Fixes #78697)
4152 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
4154         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
4156 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
4158         * Form.cs: Fixed c+p error and added check to resize form if minimum
4159           size is bigger than current size (Fixes #78709)
4161 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
4163         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
4165 2006-06-26  Mike Kestner  <mkestner@novell.com>
4167         * ComboBox.cs: only do Keypress handling in the combo when there  
4168         are items in the collection. Fixes #78710.
4170 2006-06-26  Chris Toshok  <toshok@ximian.com>
4172         * Binding.cs: make this work bi-directionally.  also, clear up
4173         other mixups between Push/Pull Data (e.g. we're supposed to pull
4174         data when validating).
4176         * BindingManagerBase.cs: trim some fully qualified collection
4177         types.
4179         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
4181 2006-06-23  Chris Toshok  <toshok@ximian.com>
4183         * PropertyManager.cs: It appears (according to the unit tests)
4184         that PropertyManager doesn't use
4185         PropertyDescriptor.AddValueChanged to track propery value changes
4186         in its datasource, but uses the same scheme as Binding, where it
4187         looks for a <Property>Changed event and binds to it.
4189         Also, according to the docs, IsSuspended always returns false for
4190         a property manager with a non-null datasource.
4192 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
4194         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
4195           need to update the actual DialogResult. (Fixes #78613)
4197 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
4199         * Form.cs (ShowDialog): Release any captures before running the
4200           new message pump (fixes #78680)
4202 2006-06-22  Mike Kestner  <mkestner@novell.com>
4204         * ListView.cs: Layout column widths properly in details mode even 
4205         if HeaderStyle.None is set.  Fixes #78691.
4207 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
4209         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
4211 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
4213         * Control.cs (ContainsFocus): Using new driver method to get focused
4214           window, instead of trying to use internal tracking var, which can
4215           recursion issues (Fixes #78685)
4216         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
4217           XplatUIWin32.cs: Added GetFocus method to return focused window
4219 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4221         * ColorDialog.cs: when the mouse button is pressed inside the color
4222         matrix, don't let the cursor move out of it until the button is
4223         released, which is the behavior on windows. Changed 'colours' by
4224         'colors' to use the same word consistently.
4226 2006-06-21  Chris Toshok  <toshok@ximian.com>
4228         * DataGrid.cs: add in some basic navigation stuff (navigating to a
4229         child relation and back, using a stack).  Also, remove
4230         GetDataSource and the code that calls it - it's not needed.  Also,
4231         track CurrencyManager.ListName's removal.
4233 2006-06-21  Chris Toshok  <toshok@ximian.com>
4235         * CurrencyManager.cs: push some of the original type checking from
4236         BindingContext.CreateBindingManager to here, and remove some of
4237         the finalType stuff.  Need more tests to make sure I've got the
4238         ListName part right, and we might need more in SetDataSource.
4240         * PropertyManager.cs: add a ctor that takes just the datasource,
4241         and no property name.  Make SetDataSource work with a null
4242         property_name, and make Current return the data_source if the
4243         property descriptor is null.  this makes 'string foo = "hi";
4244         BindingContext[foo].Current' return "hi" as it should.
4246         * RelatedCurrencyManager.cs: make this code more generic - there's
4247         no reason the parent manager has to be CurrencyManager, and
4248         there's no reason to pass the DataRelation.  It suffices to use a
4249         BindingManagerBase and PropetyDescriptor.
4251         * RelatedPropertyManager.cs: make a similar change here.
4252         
4253         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
4254         flower I knew it could be.
4256 2006-06-20  Chris Toshok  <toshok@ximian.com>
4258         * PropertyManager.cs: the PropertyChangedHandler is invoked when
4259         data in the source has changed and we need to update the control,
4260         so s/PullData/PushData.
4262         * CurrencyManager.cs: Refresh is meant to update the control from
4263         data in the datasource.  So, s/PullData/PushData.
4265         * BindingContext.cs: add more ugliness (we weren't handling the
4266         case where data_source = DataTable and data_member = column_name).
4268         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
4269         from the perspective of the datasource.  PullData pulls from the
4270         control, PushData pushes to the control.
4272 2006-06-20  Chris Toshok  <toshok@ximian.com>
4274         * BindingContext.cs: rewrite the CreateBindingManager code to
4275         handle navigation paths more or less properly.  This could
4276         definitely stand some more work, in particular to push the
4277         recursion up to the toplevel.  But that relies on fixes in other
4278         places (System.Data comes to mind).
4280         Also, move to a flat hashtable (and encode the twolevel nature of
4281         the dictionary into the hash key).  This lets us implement the
4282         IEnumerable.GetEnumerator method.
4284         * RelatedCurrencyManager.cs: new class.  Update our view based on
4285         our relation and our parent CurrencyManager's position.
4287         * CurrencyManager.cs: split out some logic from the ctor into
4288         SetView, so it can be called from the new RelatedCurrencyManager
4289         subclass.
4291         * RelatedPropertyManager.cs: new class.  Update our datasource
4292         based on the position of our parent CurrencyManager.
4294         * PropertyManager.cs: split out some logic from the ctor into
4295         SetDataSource, so it can be called from the new RelatedDataSource
4296         subclass.  Also, make the Current getter return the value
4297         of the PropertyDescriptor, not the data_source.
4299         * Binding.cs: no need to duplicate the string splitting code here.
4301 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
4303         * Control.cs:
4304           - set_Enabled: OnEnabledChanged is not called if the inherited state 
4305             of the control is not altered, even though  we might be changing the
4306             internal state of the control (#78458)
4307           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
4308             OnEnabledChanged, to allow easy altering of any child window state
4309           - OnEnabledChanged: Added code to enable/disable driver window state
4310           - OnParentEnabledChanged: Instead of firing the event, call 
4311             OnEnabledChanged, which will fire the event and also a) set driver
4312             window state and pass the enabled state to any grandchildren (#78458)
4314 2006-06-19  Jackson Harper  <jackson@ximian.com>
4316         * InternalWindowManager.cs: We don't set the cursor explicitly
4317         thats done via the response to NCHITTESTs.
4318         - Don't need to adjust for titlebar heights anymore, the
4319         coordinates are coming in the correct coordinates now (see peters
4320         last patch).
4323 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
4325         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
4326           being translated relative to whole window, instead of client window.
4327           That caused broken offsets on mouseclick (and caused gas for our
4328           InternalWindowManager)
4330 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
4332         * TextControl.cs:
4333           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
4334           - Undo(): Added replay of cursor move on DeleteChars action; added
4335             calling Undo() again if a recorded cursor move is invalid (to
4336             ensure that some action is performed on Undo)
4337         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
4339 2006-06-16  Jackson Harper  <jackson@ximian.com>
4341         * MdiClient.cs: Instead of just sizing maximized windows when
4342         there is a resize we also have to adjust the Y of minimized
4343         windows, so they stay pinned to the bottom of the mdi container.
4344         - Eliminate separate tracking of the active control, we can just
4345         get this from the controls collection.
4346         - Paint the decorations for the newly activated titlebar so we get
4347         a pretty blue bar.
4348         * InternalWindowManager.cs:
4349         * ThemeWin32Classic.cs: Minimized windows get all three buttons
4350         even if they are a tool window.
4351         
4352 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
4354         * TextControl.cs (Undo): Handle non-existent cursor locations in the
4355           undo buffer, these can happen when text was deleted and the cursor
4356           was recorded first. Since we will also have a recorded cursor
4357           after the delete this is not an issue. (Fixes #78651)
4359 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
4361         * AccessibleObject.cs: Remove dependence on Control.is_selected;
4362           instead properly track control states internally (allows us to
4363           remove is_selected from Control)
4365 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4367         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
4368         whose width is not a multiple of 8.
4370 2006-06-13  Jackson Harper  <jackson@ximian.com>
4372         * MdiClient.cs:  Only maximize the next child if the current one
4373         is maximized.
4375 2006-06-13  Chris Toshok  <toshok@ximian.com>
4377         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
4378         modified.  Also, guard against grid or grid_drawing being null in
4379         Invalidate.
4381         * DataGrid.cs: Reformat tons of getters/setters.  In the
4382         DataMember setter, just call SetNewDataSource instead of
4383         duplicating some of its functionality.  In SetNewDataSource, don't
4384         check ListManager for null, since the property getter creates the
4385         object if needed.
4387         * DataGridTableStyle.cs: don't set TableStyle or call
4388         SetDataGridInternal on the column here, it's done in
4389         GridColumnStylesCollection.Add.
4391         * GridColumnStylesCollection.cs: fix all the explicit interface
4392         implementations to just call our methods.  Nuke AddInternal() and
4393         move the body of it to Add().  Also, add a call to
4394         column.SetDataGridInternal to Add().
4396         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
4397         base()+duplicate code.  Also, use the Format property instead of
4398         format to generate an Invalidate ala MS.  Lastly, create the
4399         textbox here, unconditionally.
4400         (set_Format): call Invalidate.
4401         (get_TextBox): no need to call EnsureTextBox.
4402         (Commit): remove the message box.
4403         (Edit) remove the call to EnsureTextBox.
4404         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
4405         (EnterNullValue): no need to check textbox for null.
4406         (HideEditBox): no need to check textbox for null.
4407         (SetDataGridInColumn): add the textbox to the grid's controls.
4408         (EnsureTextBox): nuke.
4409         
4410 2006-06-13  Jackson Harper  <jackson@ximian.com>
4412         * MdiWindowManager.cs: Hook up to the maximized menus paint event
4413         and redraw the buttons when needed. Unhook when the window is
4414         unmaximized.
4415         * MainMenu.cs: Add an internal Paint event, the mdi window manager
4416         needs this so that it can redraw its buttons when the menu is
4417         repainted.
4418         * InternalWindowManager.cs:
4419         * Form.cs: The method order has changed for DrawMaximizedButtons,
4420         so that it can be a PaintEventHandler.
4421         
4422 2006-06-13  Jackson Harper  <jackson@ximian.com>
4424         * MdiClient.cs: When we close a maximized mdi window, the next mdi
4425         window is activated and maximized, even if it wasn't before.
4426         - When  a new window is activated repaint the decorations of the
4427         old one, so that it no longer has the Active "look" (the blue
4428         titlebar).
4429         * InternalWindowManager.cs: Open up CreateButtons to base classes
4430         so they can recreate the buttons on state changes.
4431         - If a window is maximized give it all three buttons
4432         * MdiWindowManager.cs: Create the titlebar buttons when the state
4433         is changed, this is needed because a toolwindow will not have all
4434         three buttons until it is maximized.
4436 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
4438         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
4439           Fixed bug #78609.
4441 2006-06-12  Jackson Harper  <jackson@ximian.com>
4443         * KeysConverter.cs: Make sure we handle the Ctrl special case
4444         if its the only key.
4445         
4446 2006-06-12  Jackson Harper  <jackson@ximian.com>
4448         * Theme.cs: Add a method to get the size of a managed window
4449         toolbar button.
4450         * InternalWindowManager.cs: Remove the ButtonSize property, this
4451         should be retrieved from the theme.
4452         * MdiWindowManager.cs: Get the button size from the theme
4453         * ThemeWin32Classic.cs: Make the method to get the managed window
4454         titlebar button size public.
4455         - Handle the different button sizes of maximized toolwindows
4456         (should match any maximized window).
4457         - Get the titlebar height from the theme, not the WM (which gets
4458         it from the theme).
4460 2006-06-12  Jackson Harper  <jackson@ximian.com>
4462         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
4463         event down to the mdi window manager.
4464         - Expose some extra stuff to base classes
4465         - Make sure to end the Capture on an NC Mouse up, so that we can
4466         get double clicks properly, and the sizing doens't stick.
4467         - When doing PointToClient contain it in the workable desktop
4468         area, this prevents windows from changing size when the cursor is
4469         pulled outside of the working area while sizing.
4470         * MdiWindowManager.cs: When we get a double click maximize the
4471         window.
4472         - Reset the cursor after handling mode changes.
4474 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
4476         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
4477           current desktop, instead of just assuming a 0, 0 origin. This
4478           is needed for our internal window manager, to know the top
4479           margin of the desktop
4481 2006-06-12  Chris Toshok  <toshok@ximian.com>
4483         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
4484         we need this to get rid of the selected background in the bool
4485         column.
4486         (CancelEditing): move the ConcedeFocus call to above the Abort
4487         call.  Also, set is_changing to false and invalidate the row
4488         header if we were changing before.
4489         (ProcessKeyPreviewInternal): remove, since noone outside this
4490         class calls it anymore.  Roll the code into ProcessKeyPreview.
4491         (EndEdit): remove the internal version.
4492         (InvalidateCurrentRowHeader): make private.
4494         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
4495         Keys.Escape handling (and with it the last call to
4496         DataGrid.EndEdit from outside the class.)
4499 2006-06-12  Chris Toshok  <toshok@ximian.com>
4501         * DataGridTextBox.cs (.ctor): isedit defaults to false.
4502         (OnKeyPress): set isedit to true.
4503         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
4504         already handled by the grid.
4506         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
4507         right.  ugh.
4508         (set_DataSource): SetDataSource always returns true, so stop
4509         putting it in an if statement.
4510         (EndEdit): get rid of some {}'s
4511         (ProcessGridKey): return true in case Keys.Escape.
4512         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
4513         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
4514         PositionChanged, stopped connecting to CurrentChanged.
4515         (GetDataSource): simplify this a bunch.
4516         (SetDataSource): change return type from bool to void.
4517         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
4518         to this, and make sure we don't set ListManager.Position inside
4519         set_CurrentCell.
4520         (OnListManagerItemChanged): if we're passed an actual index,
4521         redraw that row.
4523         * CurrencyManager.cs (set_Position): don't call PullData here.
4525 2006-06-09  Jackson Harper  <jackson@ximian.com>
4527         * TreeNode.cs:  Recalculate the visible order before doing the
4528         Expand/Collapse Below calls, because those calls generate an
4529         expose.
4530         - Reduce calls to the TreeView property, which is mildly expensive
4531         by using a local var.
4532         * Form.cs: Layout the MDI child windows when creating the parent
4533         form.
4534         - Don't use the internal constructor anymore
4535         * MdiClient.cs: use the parent form width/height (if available)
4536         when laying out the child windows, we do this because the
4537         mdiclient isn't docked yet when the initial layout is done.
4538         - Don't need an internal constructor anymore.
4540 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4542         * FileDialog.cs: handle access errors when trying to create a folder
4543         or changing to a directory. No need to initialize out parameters.
4545 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
4547         * FileDialog.cs: Append a number when creating a new folder if the
4548           folder already exists (use parenthesis instead of square brackets)
4550 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
4552         * FileDialog.cs:
4553           - Disabled registry support for windows and added better registry
4554             error checking for other systems (need to investigate why it
4555             works perfectly on my system)
4556           - If a folder already exist show an error MessageBox instead of
4557             trying to create an indexed name.
4558           - Fixed a non intentional typo.
4560 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4562         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
4564 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
4566         * FileDialog.cs: When creating a new folder don't crash if the
4567           folder already exists.
4569 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
4571         * FileDialog.cs: Allmost a complete rewrite.
4572           - added a "virtual" file system that handles the differences
4573             between unix and windows file systems (especially the directory
4574             structure). Moved most of the directory and file handling code
4575             into the vfs.
4576             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
4577             UnixFileSystem and FSEntry.
4578           - Recently used folder/directory, size, location and used file names
4579             (file name ComboBox) are now stored in the registry and get read
4580             before the dialog shows up (fixes part 6 of bug #78446).
4581           - Creation of new folders/directories is now possible (context menu
4582             or ToolBar). Added TextEntryDialog for this that fills in the gap
4583             until ListView.LabelEdit works.
4584           - Fixed cursor handling (bug #78527) and focus handling for
4585             PopupButtonPanel
4586           - Various "Search in" ComboBox enhancements. The content of the
4587             dropdown listbox now almost matches ms.
4588           - Changed the behaviour when the user switches to SpecialFolder
4589             Recent to show the ListView in View.Details.
4590           - Beside using the ToolBar to change the View property of the
4591             file ListView it is now possible to use the context menu too.
4593 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
4595         * ComboBox.cs: Don't create a new ObjectCollection when an item
4596           gets inserted. Just insert the item in the existing object_items
4597           ArrayList.
4599 2006-06-08  Jackson Harper  <jackson@ximian.com>
4601         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
4602         that the treeview and root node checks are done also, this fixes a
4603         regression i caused in the unit tests.
4605 2006-06-07  Wade Berrier <wberrier@novell.com> 
4607         * RichTextBox.cs: More ISO8859-1 -> unicode
4609 2006-06-07  Mike Kestner  <mkestner@novell.com>
4611         * ComboBox.cs : use items to hold highlight/selection so that
4612         collection insertions don't require synchronization.
4614 2006-06-07  Jackson Harper  <jackson@ximian.com>
4616         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
4617         routine.  We now always keep the sized edge at the cursor instead
4618         of computing movement and adjusting rects.  There is one buglet
4619         with this method though when the cursor is moved over area that
4620         the window can not expand too (such as the toolbars on the desktop).
4622 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4624         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
4625         here. Fixes crash on startup in AlbumSurfer.
4627 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
4629         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
4630           values
4632 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4634         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
4635         statement to avoid calling XNextEvent which will block if another thread
4636         took the event that we were expecting. Fixes bug #78605.
4638 2006-06-07  Mike Kestner  <mkestner@novell.com>
4640         * ListView.cs : isolated checkbox clicking from the selection logic.
4641         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
4643 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4645         * Form.cs: Check that the value passed to Form.DialogResult
4646         is a valid enum value.
4648 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4650         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
4651         Computer'. Clicking it in the network view goes to 'My Computer'.
4652         Added CIFS filesystem type. Display the mount point of filesystems.
4653         Avoid duplicate mount points (happens for me with CIFS);
4655 2006-06-06  Jackson Harper  <jackson@ximian.com>
4657         * InternalWindowManager.cs: Draw the maximized windows buttons
4658         when resizing.
4660 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4662         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
4663         all other dialogs. Fixes bug #78585.
4665 2006-06-06  Mike Kestner  <mkestner@novell.com>
4667         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
4668         Only invalidate checkbox on checkstate changes to avoid flicker.
4669         * ListBox.cs : avoid unselect/select when clicking selected item.
4670         avoid reselection flicker for already multiselected items.
4671         Fixes #78382.
4673 2006-06-06  Jackson Harper  <jackson@ximian.com>
4675         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
4676         the parent form so that the menu is removed if needed.
4678 2006-06-06  Mike Kestner  <mkestner@novell.com>
4680         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
4681         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
4683 2006-06-06  Mike Kestner  <mkestner@novell.com>
4685         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
4688 2006-06-06  Jackson Harper  <jackson@ximian.com>
4690         * Control.cs: Use the property (instead of the field) to get the
4691         default cursor so it is instantiated correctly.
4692         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
4693         resizes so we need to manually repaint the window decorations here.
4694         - Set the titlebar button locations as soon as they are created,
4695         otherwise they are not set correctly on win32.
4696         
4697 2006-06-06  Chris Toshok  <toshok@ximian.com>
4699         * CurrencyManager.cs (set_Position): call PullData before
4700         OnCurrentChanged.
4701         (AddNew): after calling IBindingList.AddNew, update our
4702         listposition, and call OnCurrentChanged/OnPositionChanged (without
4703         calling PullData).
4704         (OnCurrentChanged): remove the call to PullData from here.
4705         (OnItemChanged): remove the call to PushData from here.
4706         (OnPositionChanged): change the test from == null to != null to
4707         match the other methods.
4708         (ListChangedHandler): the grossest part of the patch.  Implement
4709         this such that it passes the unit tests in CurrencyManagerTest and
4710         the output more or less matches that of MS's implementation.
4712 2006-06-06  Mike Kestner  <mkestner@novell.com>
4714         * ListView.cs : only update check state on single click.
4715         * ThemeWin32Classic.cs : fix focus drawing for details view without
4716         fullrowselect.  Fixes #78454.
4717         * XplatUIX11.cs : fix for double click emission.
4719 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
4721         * PropertyGridView.cs : Applied Atsushi's patch to fix
4722         font dialog bug  (#78197).
4724 2006-06-05  Jackson Harper  <jackson@ximian.com>
4726         * TreeNode.cs: Compute the next node for expanding/collapsing
4727         correctly. We now factor in nodes without a NextNode
4728         correctly. (Fixes somes cases in nunit-gui).
4729         * InternalWindowManager.cs: Set the bounds when updating the
4730         virtual position of a tool window.
4731         
4732 2006-06-05  Chris Toshok  <toshok@ximian.com>
4734         * DataGrid.cs: rename cached_currencymgr to list_manager.
4735         (set_CurrentCell): move SetCurrentCell code here, and clean it up
4736         some.
4737         (CurrentRow, CurrentColumn): single accessors so we can make the
4738         cursor movement code a lot easier to understand.
4739         (CurrentRowIndex): implement this in terms of CurrentRow.
4740         (BeginEdit): clean this up a bit.
4741         (CancelEditing): sort out the is_editing/is_changing/is_adding
4742         stuff a little.
4743         (EndEdit): minor changes.
4744         (OnKeyDown): add a comment about a (most likely) unnecessary
4745         check.
4746         (OnMouseDown): cancel editing when we click on a row header.  And
4747         use the CurrentRow setter, not CurrentCell.
4748         (ProcessDialogKey): directly call ProcessGridKey.
4749         (UpdateSelectionAfterCursorMove): factor out this common block of
4750         code (it's used everywhere that we move the cursor by updating row
4751         or column).
4752         (ProcessGridKey): pretty substantial overhaul.  Use the
4753         CurrentRow/CurrentColumn properties to make the code a lot more
4754         readable.  Only use the CurrentCell property when we have to
4755         modify both row and column at once.  Tab behavior is still broken,
4756         and Delete is untested.
4757         (Select): if we have no selected rows, set selection_start to
4758         @row.
4759         (EditCurrentCell): rename EditCell this.  It was only ever invoked
4760         with CurrentCell as the arg, so drop the arg and rename it.
4762         * DataGridColumnStyle.cs: clean up the constructors a little, and
4763         drop CommonConstructor().
4765         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
4766         actually get notified when the user hits it.
4767         (ProcessKeyMessage): *substantially* simplify this method.
4768         There's no reason (that I can see) for the textbox to be making
4769         calls into the datagrid at all.  Remove all of them but the ones
4770         for Enter handling.  those will take some more work.
4772         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
4773         calling HideEditBox.
4774         (HideEditBox): if we have an active textbox, render it invisible
4775         without causing a re-layout of the datagrid.
4777 2006-06-05  Mike Kestner  <mkestner@novell.com>
4779         * ListView.cs : fix NRE crasher when focuseditem is cleared by
4780         collection changes by resetting it to Items[0].  Fixes #78587.
4782 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4784         * MessageBox.cs: if the height of the text is larger than the icon_size,
4785         use that. Fixes bug #78575.
4787 2006-06-05  Jackson Harper  <jackson@ximian.com>
4789         * TreeView.cs: Fix line drawing when scrolling.  To do this each
4790         node is basically responsible for drawing its entire horizontal
4791         area.  When drawing a node it draws its parent node lines if
4792         needed.
4793         - Adjust the clip area to the viewport rectangle
4794         - Fix Left/Right key handling to match MS. (It expand/collapses
4795         and moves to parents/first child but does not move selection to
4796         sibling nodes).
4797         - Fix SetTop to work with new bound calculation code
4798         - When scrollbars are no longer needed we need to reset scrolling
4799         vars and recalculate the visible order so the redraw is correct
4800         * TreeNode.cs: We can't expand/collapse nodes with no children.
4802 2006-06-03  John Luke  <john.luke@gmail.com> 
4804         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
4805         so the colors work without dev packages
4806         
4807 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
4809         * Control.cs 
4810           - Select: Implemented to just use activate. Seems to match MS 
4811             behaviour closest. Documented to only do actual control walking 
4812             based on it's parameters if in a container control so I moved 
4813             the code there.
4814           - Removed selection check logic from our internal Select() method
4815         * ContainerControl.cs:
4816           - Select: Moved selection logic from Control here, since MS documents
4817             that containers obey the bool arguments. No longer calling base
4819 2006-06-02  Jackson Harper  <jackson@ximian.com>
4821         * TreeView.cs: If the selected node isn't changed when we get
4822         focus update the previously selected node so that we see the
4823         selection box.
4825 2006-06-02  Mike Kestner  <mkestner@novell.com>
4827         * ComboBox.cs: restructure grab and general mouse event handling.
4828         Make the composite control raise mouse events like it was a single
4829         control for leaves/enters/motion/up/down events.  fix dropdown list
4830         coordinate mangling and refactor it into the scrollbar subclass to
4831         reduce code duplication.  Fixes #78282 #78361 and #78457.
4833 2006-06-02  Mike Kestner  <mkestner@novell.com>
4835         * ScrollBar.cs: remove Capture setting/clearing, as it happens
4836         automatically in the Control.WndProc.
4838 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4840         * FileDialog.cs: fix crash when running SharpChess, which sets the
4841         FilterIndex to 2 with only one Filter.
4843 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4845         * ToolBar.cs: add SizeSpecified property.
4846         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
4847         try to figure out our real size, otherwise fallback to what the
4848         container says.
4850 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
4852         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
4853         * Control.cs (WndProc): MS always calls the DefWndProc to pass
4854           up the event
4856 2006-06-01  Mike Kestner  <mkestner@novell.com>
4858         * ListView.cs: revamp the focus management in ListView.  It still
4859         causes churn of LostFocus/GotFocus emissions on clicks, but it's
4860         better than not handling focus at all.  Will revisit when pdb feels
4861         the general focus handling is solid.  Fixes #78526.
4863 2006-06-01  Jackson Harper  <jackson@ximian.com>
4865         * TreeView.cs: Set the default border style in the constructor.
4866         - Move painting to use OnPaintInternal instead of capturing
4867         WM_PAINT, this is the correct way of doing things
4868         - UpdateBelow shouldn't invalidate the scrollbar area
4869         - Cap the top on update below in case the node was above the top
4870         of the viewport rectangle.
4871         - ExpandBelow and Collapse below need to obey Begin/End Update.
4872         * TreeNode.cs: Make is_expanded internal so the treenode
4873         collection can change it without firing the whole event chain.
4874         * TreeNodeCollection.cs: When clearing all the child nodes make
4875         sure to recalc the visible order.
4876         - Improve algo for remove the top node
4878 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
4880         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
4881           SendMessage directly calling window procedures, which in turn might
4882           call SetFocus()
4884 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
4886         * Control.cs: Don't handle WM_SETFOCUS if the same window already
4887           has focus (works around X11 sending a FocusIn after our SetFocus)
4888         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
4890 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
4892         * Mime.cs: Fix for the NET_2_0 build.
4893           NameValueCollection needs StringComparer now.
4895 2006-05-31  Chris Toshok  <toshok@ximian.com>
4897         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
4898         return (via an out parameter) the starting X of the column.
4899         (UpdateVisibleColumn): track change to FromPixelToColumn.
4900         (HitTest): add a ColumnResize case here.
4901         (DrawResizeLine): new function, probably poorly named.
4903         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
4904         only need to keep one reference.
4905         (set_ListManager): same.
4906         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
4907         Also, add support for HitTestType.ColumnResize.
4908         (OnMouseMove): add column resize behavior here, and change the
4909         cursor to the correct one as we move around the datagrid.
4910         (OnMouseUp): terminate the column resize if we're resizing.
4911         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
4912         for the current cell.
4913         (ConnectListManagerEvents): use cached_currencymgr.
4914         (DisconnectListManagerEvents): fill this in, using
4915         cached_currencymgr.
4916         (SetCurrentCell): remove cached_currencymgr_events handling.
4917         (SetDataMember): only call DisconnectListManagerEvents if
4918         cached_currencymgr is != null.
4919         (SetDataSource): same.
4920         (OnListManagerCurrentChanged): cached_currencymgr_events ->
4921         cached_currencymgr.
4923 2006-05-31  Jackson Harper  <jackson@ximian.com>
4925         * BindingManagerBase.cs: Remove somedebug code that creeped into
4926         SVN.
4927         * TreeNode.cs: We get the indent level dynamically right now, so
4928         don't track it as a member.
4929         * TreeNodeCollection.cs: Make sure all nodes added to the list
4930         have parents, treeviews/topnodes setup properly.
4931         - Don't attempt to track indent level.
4933 2006-05-30  Jackson Harper  <jackson@ximian.com>
4935         * BindingContext.cs: Create the currency manager tables here.
4936         This allows us to more easily create null tables (when bad data
4937         members are used), and more easily create related currency
4938         managers.
4939         * CurrencyManager.cs: All the table creation stuff is done by the
4940         binding context now.
4941         - Current should throw an exception if listposition is -1.
4942         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
4943         been bound yet.
4945 2006-05-30  Mike Kestner  <mkestner@novell.com>
4947         * ListView.cs: allow reexpansion of zero-width column headers.
4948         Fixes #78528.
4950 2006-05-28  Chris Toshok  <toshok@ximian.com>
4952         * CurrencyManager.cs (get_Current): after the late binding
4953         listposition = -1 fix, we need to guard against it here and return
4954         null, otherwise we raise an exception (which is swallowed
4955         elsewhere, and breaks datagrid databinding.)
4957 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
4959         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
4960           than WM_SYSKEY, don't throw if get something unexpected (#78507)
4962 2006-05-26  Jackson Harper  <jackson@ximian.com>
4964         * ControlPaint.cs:
4965         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
4966         values, it's faster and it's all we care about (we don't care if
4967         the names aren't equal).
4968         * KeyboardLayouts.cs: Eliminate some dead code.
4969         - Lazy init things
4970         * X11Keyboard.cs: Lazy init keyboard detection.
4971         - Cleanup access modifiers a little.
4973 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
4975         * XplatUIX11.cs: Once again, attempting to get layout just right.
4977 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
4979         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
4980           the sizes of each link section, that will result in sizes that
4981           match DrawString's layout (Fixes #78391)
4983 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
4985         * FileDialog.cs: If AddExtension property is true autocomplete the
4986           extensions in SaveFileDialog correctly. Fixes bug #78453.
4987           Set MyNetwork and MyComputer to "C:\" for windows. This should
4988           fix part 8 of bug #78446 for now.
4990 2006-05-26  Chris Toshok  <toshok@ximian.com>
4992         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
4993         invalidate the current row header if we need to, but presumably
4994         we'll invalidate the row corrsponding to the bounds or
4995         editingControl.
4996         (GridHScrolled): switch back to this method, as it's part of the
4997         public api.  *sigh*.
4998         (GridVScrolled): same.
4999         (OnMouseWheel): hack up something that more or less works.  Call
5000         GridHScrolled/GridVScrolled directly, instead of duplicating much
5001         of their code here.
5002         (EnsureCellVisibility): reinstate a bunch of this code, since we
5003         can't just set the scrollbar Value and expect to do all the work
5004         in the ValueChanged handler.  Also, Call Update() after scrolling
5005         in one direction so the other XplatX11.ScrollWindow call has the
5006         proper stuff in the proper places.
5007         (EditCell): set is_editing to true before calling .Edit.
5009         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
5010         don't bother comparing first.
5011         (OnKeyPress): call grid.ColumnStartedEditing before calling
5012         base.OnKeyPress.  this will set is_changing and invalidate the row
5013         header if necessary.
5014         (ProcessKeyMessage): for WM_CHAR messages, call
5015         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
5016         and WM_KEYDOWN.
5017         
5018         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
5019         it's done in the DataGrid.
5020         (NextState): call grid.ColumnStartedEditing, which takes care of
5021         invalidating the row header (and setting is_changing).
5023         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
5024         here.  it's done in the DataGrid.
5026 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5028         * Control.cs: allow changing the cursor when the mouse position is
5029         out of bounds but Capture is set.
5030         * LinkLabel.cs: handle the case when the mouse button is pressed on the
5031         linklabel but released somewhere else.
5033 2006-05-25  Jackson Harper  <jackson@ximian.com>
5035         * TreeView.cs: When we get focus if there is no selected node make
5036         it the top node
5037         - Remove some uneeded setup code from Draw.
5038         * TreeNodeCollection.cs: If the tree doesn't have a top node when
5039         a new node is inserted make the new node the top.
5040         * XplatUIX11.cs:
5041         * Timer.cs: Use Utc time so that no local time zone stuff needs to
5042         be used (should be faster).
5043         
5044 2006-05-25  Chris Toshok  <toshok@ximian.com>
5046         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
5047         problem with the last commit.
5049 2006-05-25  Chris Toshok  <toshok@ximian.com>
5051         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
5052         need the invalidate call here, while scrolling right-to-left via
5053         the left arrow key (i.e. moving the editing cell while scrolling).
5055         * DataGrid.cs (.ctor): remove the initialization of
5056         ctrl_pressed/shift_pressed.  We no longer track them using key
5057         up/down handlers, but by using Control.ModifierKeys.  Also, switch
5058         to using ValueChanged handlers on the scrollbars instead of
5059         Scrolled event handlers.  This simplifies a bunch of the scrolling
5060         code.
5061         (GridHValueChanged): rename from GridHScrolled, and change it to
5062         work with the new event args.
5063         (GridVValueChanged): same.
5064         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
5065         (OnMouseWheel): actually scroll the datagrid.  Don't change the
5066         selected cell.
5067         (ProcessGridKey): correct all the keyboard navigation stuff I
5068         could find.  Ctrl up/down/left/right/home/end work now.
5069         (EnsureCellVisibility): correct method name spelling.  Also,
5070         simplify this a touch by not explicitly calling the
5071         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
5072         scrollbar value.
5073         (OnKeyUpDG): no need for this method now.
5074         
5075 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5077         * LinkLabel.cs: display the OverrideCursor when hovering the label.
5078         Fixes bug #78392.
5080 2006-05-25  Chris Toshok  <toshok@ximian.com>
5082         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
5083         r61019.
5085 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
5087         * Application.cs: Moved setting of is_modal and closing to before
5088           we create the control, to allow the event handlers called as a
5089           result of creation affect closing. Also removed Gonzalo's previous
5090           change to setting DialogResult, the behaviour has been moved to 
5091           Form.ShowDialog()
5092         * Form.cs: 
5093           - ShowDialog(): Removed explicit creation of the form, let RunLoop
5094             handle it instead
5095           - ShowDialog(): If no dialog result is set, we need to return Cancel
5096           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
5097             the close is cancelled
5099 2006-05-25  Jackson Harper  <jackson@ximian.com>
5101         * StatusBar.cs: We only need to update the sizes of the other
5102         panels when we have auto size contents.  Also we are only updating
5103         the contents of the panel, not the borders, so compensate for the
5104         border width (TODO: get this width from the theme somehow).
5105         * TreeView.cs: Scrollable is true by default
5106         - Use invalidate instead of refresh where needed
5107         - Factor the scrollable value into scrollbar updating
5108         - Update the scrollbars if the Scrollable property is altered
5109         - Update the selected node if its ImageIndex is changed
5110         - Handle null nodes in UpdateNode (mainly so we don't have to
5111         check if selected is null when updating it
5112         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
5113         are factored into the visible count
5114         - Use VisibleCount for clarity in the code
5115         - When the font is changed we need to recurse through all the
5116         nodes and invalidate their sizes
5117         
5118 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5120         * Application.cs: set the DialogResult to fixed when the main form is
5121         hidden or destroyed while being modal.
5123 2006-05-25  Miguel de Icaza  <miguel@novell.com>
5125         * Theme.cs: Use Tangoified messagebox icons. 
5127         (GetSizedResourceImage): Also cope with width = 0 and do not
5128         trigger a warning in that case (0 means "give me your icon from
5129         the resouce, no special size needed).
5131 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
5133         * Application.cs: Leave runloop if the the main modal form is 
5134           hidden (fixes #78484)
5136 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
5138         * BindingContext.cs : reject null datasource in Contains() and
5139           Item[].
5140         * CurrencyManager.cs : check data_member validity when data_source
5141           is dataset. When it is late binding, the initial position is -1.
5143 2006-05-24  Jackson Harper  <jackson@ximian.com>
5145         * TreeNodeCollection.cs: Dont't recalculate the visible order on
5146         inserted nodes that aren't visible.  This changes the
5147         max_visible_order which confuses scrollbar settings.
5148         - Use the enumerator to get the prev node instead of duplicating
5149         code.
5150         * TreeView.cs: Use new method for setting scrollbar values
5151         - Don't set the bounds every time the scrollbar is updated
5152         - When updating below the root node use an invalidate instead of a
5153         refresh to prevent the child controls (scrollbars) from being
5154         refreshed. (UpdateBelow still needs to be reworked anyways).
5155         - Reenable SetBottom now that visible orders are set correctly,
5156         added some debug code incase we ever get bad values there again.
5157         - Set the scrollbar max to 2 less then the max value, this
5158         compensates for the max value being one above the node count, and
5159         for scrollbars adding one extra "notch".
5160         - When drawing image nodes if there is an imagelist we draw the
5161         first image in the list if the supplied image index is out of the
5162         image list's bounds.
5163         
5164 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
5166         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
5167           we receive a size change from the WM (Fixes #78503)
5169 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
5171         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
5172           rectangle (Fixes #78501)
5174 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
5176         * ButtonBase.cs: 
5177           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
5178             as a bitfield.
5179           - Fixed MouseMove to no longer switch pressed state unless the left
5180             mouse button is pressed. Atsushi provided the original patch (#78485)
5181           
5182 2006-05-24  Jackson Harper  <jackson@ximian.com>
5184         * ScrollBar.cs: New internal methods that allow us to change a
5185         couple values on the scrollbar (the most common case is maximum
5186         and large change) without getting multiple invalidates.
5188 2006-05-24  Chris Toshok  <toshok@ximian.com>
5190         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
5191         (Edit): save off the original state in oldState, and set
5192         grid.is_editing to true.
5193         (OnKeyDown): abort editing if escape is pressed.  also, call
5194         NextState if space is pressed.
5195         (OnMouseDown): call NextState.
5196         (NextState): factor out shared code from OnKeyDown and OnMouseDown
5197         here.  Also, only invalidate the row header once (on the initial
5198         is_changing switch) to save on redraws.
5200 2006-05-24  Chris Toshok  <toshok@ximian.com>
5202         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
5203         if the value in the cell is different than it was before.  This
5204         keeps us from triggering a layout when we move around a datarid
5205         with a highlighted cell.
5206         (Edit): suspend layout when creating/positining the text box, and
5207         resume passing false so we don't ever actually re-layout.
5208         (ReleaseHostedControl): same.
5209         (EnsureTextBox): reformat slightly, and set WordWrap to false.
5211         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
5212         control-key sequences should go to the datagrid - remove that
5213         lock.  Also, modify the conditions under which we move between
5214         cells when moving the cursor within a cell, and remove the "this"
5215         and "base" from field accesses.  We weren't even consistent, given
5216         they all were in the base class.
5218 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
5220         * Binding.cs : (.ctor)
5221           An obvious NRE fix for BindingTest.CtorNullTest().
5223 2006-05-23  Chris Toshok  <toshok@ximian.com>
5225         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
5226         them between lines.  This fixes some quirks editing cells in the
5227         datagrid.
5229 2006-05-23  Jackson Harper  <jackson@ximian.com>
5231         * TreeView.cs: Use begin/end update when doing expand/collapse all
5232         so that we don't get flicker on the scrollbar.
5234 2006-05-23  Jackson Harper  <jackson@ximian.com>
5236         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
5237         treenode calculations to be independant of the painting code. To
5238         do this nodes track a visible order which is calculated by the
5239         treeview.
5240         - Call new methods for expanding/collapsing nodes.  These methods
5241         use scrollwindow so we don't have to update everything below the
5242         node.
5243         * TreeView.cs: Refactored drawing and scrolling code.  We don't
5244         need to update nodes when drawing anymore or calculate scrollbar
5245         stuff.
5246         - Added new methods for expanding/collapsing nodes. These methods
5247         use ScrollWindow so as to not have to redraw all the nodes below.
5248         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
5249         we add/remove nodes or sort.
5250         - Handle removing the selected and the top node properly.
5252 2006-05-23  Chris Toshok  <toshok@ximian.com>
5254         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
5255         maybe this should actually happen in the datagrid code?
5256         (EndEdit): no need to invalidate anything, given that
5257         ReleaseHostedControl causes the datagrid to relayout, which
5258         invalidates everything anyway.
5260         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
5261         in SetCurrentCell).
5262         (set_SelectionBackColor): call InvalidateSelection instead of
5263         Refresh.
5264         (set_SelectionForeColor): same.
5265         (BeginEdit): Flesh this out a bit.
5266         (CancelEditing): only do any of this if we're editing/adding.
5267         (EndEdit): same.
5268         (OnMouseDown): there's no need to cancel editing here, it's done
5269         in SetCurrentCell.
5270         (SetCurrentCell): only invalidate the current row header if it's a
5271         different row than the new one.
5272         (ShiftSelection): fix this to work like MS does.
5273         (ResetSelection): factor out the invalidation of selected_rows to
5274         InvalidateSelection.
5275         (SetDataSource): cancel any editing that's going on.
5277         * DataGridColumnStyle.cs
5278         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
5279         call the non-interface version.
5281         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
5282         header rectangle with the clip rectangle so we don't redraw the
5283         entire header for just a small area.  Gets rid of the last flicker
5284         when horizontally scrolling.
5285         (DataGridPaintRow): same.
5287 2006-05-23  Mike Kestner  <mkestner@novell.com>
5289         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
5290         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
5291         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
5292         Critical bug report.
5294 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
5296         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
5297           and this fixes #78493
5299 2006-05-23  Miguel de Icaza  <miguel@novell.com>
5301         * Theme.cs (GetSizedResourceImage): Scale images if the proper
5302         size is not found.  
5303         
5304         * FileDialog.cs: Do not change the background for the side bar as
5305         it wont work nicely with the theme, and also reduces the artifacts
5306         in rendering the icons (which I want to fix too).
5308         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
5309         resources, not resgen resources. 
5311         (PlatformDefaultHandler): Pull images using the new API.
5313 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
5315         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
5316           a reference to the hwnd and will not remove it unless there are
5317           no pending exposures (fixes #78341)
5318         * XplatUI.cs: Improved debug
5320 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
5322         * MenuAPI.cs : don't handle OnClick event when it was not the left
5323           button. Fixed bug #78487.
5325 2006-05-23  Mike Kestner  <mkestner@novell.com>
5327         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
5328         prefer submenus to the top menu for item lookup, to avoid popping down
5329         top-row items.
5331 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
5333         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
5334           Graphics.FillRectangle as the visual results are really bad (even
5335           on win). We now draw perfect arrows (and perfect shadows when the
5336           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
5337           Pen.DashPattern to draw the dots of each line.
5339 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
5341         * FileDialog.cs: Update the filename combobox when navigating through
5342           the ListView with the cursor keys. Fixes part 7 of bug #78446.
5344 2006-05-22  Mike Kestner  <mkestner@novell.com>
5346         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
5347         Fixes #78463.
5349 2006-05-22  Mike Kestner  <mkestner@novell.com>
5351         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
5352         requests. Fix a misspelled parameter and a copy paste exception error
5353         in Select.
5355 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
5357         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
5358           to get the same width/height (5/13) on X11 as the default font has on
5359           win32. This means that our DefaultFont emSize is smaller than the 
5360           the MS SWF equivalent (even thought the width/height stays the same)
5362 2006-05-20  Jackson Harper  <jackson@ximian.com>
5364         * MdiClient.cs:
5365         * MdiWindowManager.cs:
5366         * InternalWindowManager.cs: Make sure to use the border width from
5367         the theme.
5369 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
5371         * PrintDialog.cs: Implements printer details
5373 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
5375         * FileDialog.cs: Added focus handling for PopupButtonPanel.
5376           Fixes part 1 and 2 of bug #78446
5378 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
5380         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
5381           instead of sticking to the first ever calculated value
5383 2006-05-19  Mike Kestner  <mkestner@novell.com>
5385         * ComboBox.cs: fix mouse motion selection to use MousePosition and
5386         PointToClient, since Capture is set. Fixes #78344.
5388 2006-05-19  Mike Kestner  <mkestner@novell.com>
5390         * ListView.cs: match MS behavior in Details view where items are not
5391         drawn if Columns.Count == 0. 
5392         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
5393         Use a separate pen to draw the check, since changing the width affects
5394         the box as well.  Fixes #78454.
5396 2006-05-18  Miguel de Icaza  <miguel@novell.com>
5398         * ListView.cs: ArgumentOutOfRangeException, single versions of the
5399         exception should throw the name of the invalid argument.
5401         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
5402         there are no files listed. 
5404 2006-05-18  Jackson Harper  <jackson@ximian.com>
5406         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
5407         up.
5409 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
5411         * Control.cs: Brought back our old UpdateZOrder method as a private
5412           function and switched our calls from UpdateZOrder to the new one.
5413           This fixes the Paint.Net canvas disappearing bug.
5415 2006-05-18  Jackson Harper  <jackson@ximian.com>
5417         * Theme.cs:
5418         * ThemeWin32Classic.cs:
5419         * InternalWindowManager.cs: Move the drawing into the theme,
5420         expose everything the theme should need from the window manager.
5422 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
5424         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
5425           from the call to NativeWindow to avoid walking up the parent chain
5426           further than needed (speeds up setting cursors and avoids setting
5427           the wrong cursor if a parent has another cursor defined)
5428         * Cursor.cs: When loading an icon as cursor, MS uses the center of
5429           the icon as hotspot, not what's contained as hotspot in the icon
5430           file. This fixes the perceived drawing offset seen with Paint.Net
5431         
5432 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
5434         * XplatUIX11.cs: 
5435           - Store the calculated rectangle in Hwnd object and use it when 
5436             setting the client size
5437           - Force Toolwindows to always be type Dock, to ensure they're on top
5439 2006-05-18  Mike Kestner  <mkestner@novell.com>
5441         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
5442         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
5443         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
5444         Substantial refactoring to remove confusing nested classes. Coding
5445         standard and Get+Set->property refactorings.  Shift to index based
5446         highlighting in ComboListBox instead of constantly using IndexOf and
5447         Items[]. Add invalidations on resize for DropDownList to fix ugliness
5448         in FileDialog growth.  Draw borders manually since Simple mode needs
5449         to look like two independent controls.  Make listbox border
5450         conditional to DropDownStyle.  Improved OwnerDraw support.
5452 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
5454         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
5455         Don't set the disposed graphics to null, so we can throw the "right"
5456         exception if the graphics is reused later (added a flag to avoid 
5457         double disposing). Some behaviours are different under 2.0 and are
5458         filled under bug #78448.
5460 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
5462         * Control.cs: When double-buffering is enabled, we need to reset
5463           our graphics context between paint calls. Otherwise, any 
5464           transformations and other alterations on the context will 
5465           become cumulative (#77734)
5467 2006-05-18  Mike Kestner  <mkestner@novell.com>
5469         * ListView.cs: do focused item selection like MS on clicks. 
5470         Rework focus handling for ItemControl so LostFocus invalidates as
5471         well.
5472         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
5473         the ListView ItemControl has focus.
5475 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
5477         * XplatUIX11.cs: If client_window ends up being width or height zero
5478           due to border settings, move it off window inside whole_window (#78433)
5480 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
5482         * Mime.cs: Shrink the mime file cache correctly.
5484 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
5486         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
5488 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
5490         * XplatUIX11.cs (AddExpose): More sanity checks
5492 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
5494         * XplatUIX11.cs:
5495           - AddExpose: Don't add expose ranges outside the size of our
5496             window
5497           - Cast opacity values to Int32 to avoid crashes with certain
5498             values
5499           - Added disabled code paths that protect against illegal cross-
5500             thread painting (Developers.exe)
5502 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
5504         * ProgressBar.cs: Invalidate the control when it's resized
5505           since block size is based on control size. (#78388)
5507 2006-05-16  Miguel de Icaza  <miguel@novell.com>
5509         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
5510         of setting the incoming argument to the "reset" value, we set the
5511         this.datamember to string.empty (before we were invalidating the
5512         incoming data).   
5514         Fixes 78420
5516 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
5518         * Form.cs: Only apply transparency settings after the form
5519           is created. (Fixes #77800)
5521 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
5523         * ApplicationContext.cs: Grab the HandleDestroyed event so
5524           we know when to fire OnMainFormClosed 
5526 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
5528         * Application.cs: Introduced sub-class to allow tracking of
5529           threads and centralized triggering of the event mess for
5530           ThreadExit, AppExit, etc..  (#76156)
5532 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
5534         * MimeIcon.cs:
5535           - Do not return a null icon index value for a mime subclass.
5536             Instead try the main mime type class too.
5537           - Seems that some newer distributions don't have a link to some
5538             gnome default icons anymore. So check the default gnome dir too.
5539           
5541 2006-05-16  Jackson Harper  <jackson@ximian.com>
5543         * MdiClient.cs: Don't paint the parent background image if we have
5544         our own background image.
5546 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
5548         * Control.cs:
5549           - PerformLayout: Do not shrink space filled by DockStyle.Fill
5550             controls, all filled controls are supposed to overlap (#78080)
5551           - UpdateZOrder is supposed to update the control's z-order in the
5552             parent's z-order chain. Fixed to behave like that
5553           - BringToFront: Removed obsolete code
5554           - SendToBack: Simplyfied
5555           - SetChildIndex: Trigger layout calculations when Z-order changes
5556             since layout is done by z-order
5558 2006-05-16  Chris Toshok  <toshok@ximian.com>
5560         [ fixes bug #78410 ]
5561         * DataGrid.cs (set_AlternatingBackColor): use
5562         grid_drawing.InvalidateCells instead of Refresh().
5563         (set_BackColor): call grid_drawing.InvalidateCells.
5564         (set_BackgroundColor): use Invalidate instead of Refresh.
5566         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
5567         invalidate the cell area.
5569 2006-05-15  Chris Toshok  <toshok@ximian.com>
5571         [ fixes bug #78011 ]
5572         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
5573         on to DataGridPaintRow.
5574         (DataGridPaintRow): take a clip argument, and only draw the cells
5575         which intersect it.  same with the not_usedarea.
5577         * Theme.cs (DataGridPaintRow) add @clip parameter.
5579         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
5580         XplatUI.ScrollWindow.
5581         (ScrollToRow): same.
5583         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
5584         with last column which was causing a gray swath to appear with the
5585         XplatUI.ScrollWindow code.
5587 2006-05-15  Chris Toshok  <toshok@ximian.com>
5589         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
5590         use XplatUI.ScrollWindow.
5591         (VerticalScrollEvent): use XplatUI.ScrollWindow.
5593 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
5595         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
5597 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
5599         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
5600           file since there are no equivalent X11 cursors
5602 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
5604         * MonthCalendar.cs : DateTimePicker should reflect selected date
5605           on mouse*up*, not mouse*down*. Fixed originally reported part of
5606           bug #76474.
5608 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
5610         * TabControl.cs : When argument index is equal or more than tab
5611           count, just ignore. Fixed bug #78395.
5613 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
5615         * Control.cs: Dispose all child controls when control is diposed (#78394)
5617 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
5619         * ColorDialog.cs: Finally it is possible to select the color with
5620           the text boxes
5622 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
5624         * PrintDialog.cs: Fix typo
5626 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
5628         * PrintDialog.cs: PrintDialog is not resizable
5629         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
5630           color. Made some ToolBar drawing methods protected virtual.
5632 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
5634         * PrintDialog.cs: Implementation of the PrintDialog
5636 2006-05-12  Chris Toshok  <toshok@ximian.com>
5638         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
5639         thumb, instead use MoveThumb.  This has the side effect of making
5640         most of the other thumb moving machinery use MoveThumb as well.
5641         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
5642         need to actually invalidate the rectangle where the new thumb will
5643         go.
5644         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
5645         We force an Update() after, so it's not as fast as it could be,
5646         but at least there's zero flicker and no droppings.
5647         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
5648         (UpdateThumbPos): add another argument (dirty), which says whether
5649         or not to calculate/add dirty regions which we later invalidate.
5650         For cases where we know we're going to use MoveThumb, we pass
5651         false for this.  Otherwise, pass true.
5653 2006-05-12  Jackson Harper  <jackson@ximian.com>
5655         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
5656         the status bar.
5657         
5658 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
5660         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
5661           and GetClipRegion methods and UserClipWontExposeParent property.
5662         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
5663           overriding UserClipWontExposeParent property, setting to false, since
5664           Win32 handles the required expose messages to draw our clipped parent
5665           areas internally
5666         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
5667           PaintEventStart to set the user clip region if set.
5668         * Control.cs: 
5669           - Now internally tracking the Region for the control since we need to
5670             store it if the handle is not yet created and only set it when it
5671             becomes created. Before setting the region forced handle creation
5672           - Added code to draw the parents underneath a user-clipped region
5673         * Hwnd.cs: Added UserClip property
5675 2006-05-12  Chris Toshok  <toshok@ximian.com>
5677         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
5678         (set_Maximum): same.
5679         (set_Minimum): same.
5680         (set_SmallChange): same.
5681         (OnMouseUpSB): remove the call to refresh when releasing the
5682         thumb.  We shouldn't need it.
5683         
5684 2006-05-12  Miguel de Icaza  <miguel@novell.com>
5686         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
5687         AutoSize set to None, we do not need to relayout everything, we
5688         just need to invalidate the current region.
5690         (Draw): Do not draw the entire ClientArea, just redraw the
5691         clip area being passed.
5693         * MdiClient.cs: Make MdiClient constructor with the Form argument
5694         internal. 
5696 2006-05-12  Jackson Harper  <jackson@ximian.com>
5698         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
5699         parents background image,  but strangely not their own.
5700         - (DrawStatusBarPanel): Take into account horizontal alignment
5701         when drawing the strings and icons.
5703 2006-05-12  Mike Kestner  <mkestner@novell.com>
5705         * ListBox.cs: avoid invalidations for focus when the collection is
5706         empty. 
5708 2006-05-12  Chris Toshok  <toshok@ximian.com>
5710         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
5711         invalidate the entire thumb area.  Call InvalidateDirty which
5712         limits the redraw to the thumb itself and surrounding pixels.
5714         * XplatUIX11.cs (ScrollWindow): optimize copying.
5715         
5716 2006-05-12  Chris Toshok  <toshok@ximian.com>
5718         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
5719         Figure out the positioning/layout in a single pass instead of
5720         multiple recursive invocations.  Speeds up the initial display of
5721         the data grid.  Also, make many things private that were
5722         originally public but unused outside this class.
5724 2006-05-11  Jackson Harper  <jackson@ximian.com>
5726         * MdiClient.cs: Improved layout code.
5728 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
5730         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
5731           not SelectedObject.
5733 2006-05-11  Chris Toshok  <toshok@ximian.com>
5735         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
5736         union of that will always be {0,0,width,height}.
5738 2006-05-11  Jackson Harper  <jackson@ximian.com>
5740         * Form.cs: Match MS's DefaultSize for forms (they must have
5741         changed the size in sp2).
5743 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
5745         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
5747 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
5749         * TextControl.cs : Fixed bug #78109. This incorrect position
5750           comparison caused crash on automatic line split.
5751         * TextBoxBase.cs : reduce duplicate code.
5753 2006-05-10  Jackson Harper  <jackson@ximian.com>
5755         * MdiClient.cs: Active form is only sent to the back when using
5756         the Next form functionality, when a form is clicked the current
5757         active shouldn't be sent to the back.
5758         - Layout the mdi windows when the container is first made visible.
5759         * Form.cs: Give the MdiClient a ref to the containing form when we
5760         create it.
5761         
5762 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
5764         * LinkLabel.cs : link_font could be uninitialized, so populate one
5765           before actual use. Fixed bug #78340.
5767 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
5769         * XplatUIX11.cs : clipboard format native value is IntPtr.
5770           Fixed bug #78283.
5772 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
5774         * Control.cs: 
5775           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
5776             which is passed up the parent chain by DefWndProc
5777           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
5778             to DefWndProc (#77956)
5779         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
5781 2006-05-10  Jackson Harper  <jackson@ximian.com>
5783         * MdiClient.cs: We need to remove the controls from the mdi
5784         collection, when we close the window.
5785         * MdiWindowManager.cs: Special handling of closing mdi windows.
5786         * InternalWindowManager.cs: Make the close method virtual so the
5787         mdi window manager can handle it specially.
5789 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
5791         * DataGrid.cs:
5792           - Recalculate grid when the data source has changed
5793           - Matches styles provided by user from all data sources types
5794         * DataGridTableStyle.cs: For columns that provided by the user set the
5795         with the preferred value is there was unassigned.
5796         * CurrencyManager.cs: throw OnItemChanged event
5798 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
5800         * PictureBox.cs: Don't animate until handle is created. Start animation
5801           when handle is created.
5803 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
5805         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
5806           current codebase.
5807         * XEventQueue.cs: We don't need to provide the extra info
5809 2006-05-10  Jackson Harper  <jackson@ximian.com>
5811         * MdiClient.cs: If the mdi clients parent form has a background
5812         image set, we draw that background image for the mdi area's
5813         background.
5815 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
5817         * TextBoxBase.cs: Set IBeam cursor (#78347)
5819 2006-05-10  Mike Kestner  <mkestner@novell.com>
5821         * ToolBar.cs: fix some text padding issues with ButtonSize
5822         calculation. Update the default size to match MS documentation.
5823         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
5824         button size. Fixes #78296.
5826 2006-05-10  Mike Kestner  <mkestner@novell.com>
5828         * ListBox.cs: use is_visible for scrollbar positioning in case the
5829         control isn't on screen yet.  Fix off by one with Right vs Width
5830         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
5831         
5832 2006-05-10  Jackson Harper  <jackson@ximian.com>
5834         * X11Dnd.cs: Drop to a control with another control on top of it.
5835         * ToolBar.cs: Work on a copy of the buttons list, so that it can
5836         be modified in click handlers. TODO: Look for similar problems in
5837         other controls.
5839 2006-05-09  Jackson Harper  <jackson@ximian.com>
5841         * Form.cs: Window managers need the old window state when setting
5842         window state now.
5843         * InternalWindowManager.cs: Allow the base mdi window manager to
5844         handle more of the MDI only stuff (like maximize buttons).
5845         * MdiWindowManager.cs: Fix some snafus in changing the window
5846         state.  Add all the menu functionality, for both popup and
5847         maximized menus.
5848         * MdiClient.cs: When a new form is selected the currently
5849         activated form is sent to the back, this matches MS.
5850         - Implement a new method to activate the next mdi child window.
5852 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
5854         * Control.cs: 
5855           - Added new InternalCapture method to allow controls to prevent
5856             the capture behaviour on the click handlers
5857           - Switched to use InternalCapture
5858         * ComboBox.cs:
5859           - Using InternalCapture to prevent mouse captures from being released
5860             on mouse button release (Fixes #78100)
5861         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
5862           returns Form borders if a caption is present. (Fixes #78310)
5864 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
5866         * TreeNode.cs: Changed serialization .ctor to not require every field
5867           to be present. (#78265)
5868         * OwnerDrawPropertyBag.cs: Added serialization .ctor
5870 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
5872         * MimeIcon.cs: for is faster than foreach for strings.
5874 2006-05-05  Mike Kestner  <mkestner@novell.com>
5876         * CheckedListBox.cs: update check handling code to not use selected.
5877         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
5878         behavior for visual feedback, motion response, shift/ctrl handling,
5879         and properly deal with all 4 selection modes. Updates to bounds
5880         handling logic.  Add scroll wheel support. [Fixes #77842]
5882 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
5884         * ListView.cs:
5885           - Moved adding of Implicit controls into .ctor. That way, subsequent
5886             creation of the controls will not cause them to think they are 
5887             toplevel windows (fixes #78200 header problem)
5888           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
5889           - Switched visibility setting of header control to use internal field
5890             to avoid triggering handle creation
5891           - Now checking if handle is created before causing a refresh when items
5892             are added (This makes us now match handle creation time with MS)
5893         * Splitter.cs: Removed loading of private splitter cursor, switched to
5894           Cursors version now that that is loading the right ones
5895         * Cursors.cs: Load proper splitter cursors from resources
5896         * Cursor.cs: Added second method of loading resource cursors for the 
5897           VS.Net users amongst us
5899 2006-05-05  Mike Kestner  <mkestner@novell.com>
5901         * ListView.cs: give header_control a minimum size based on the
5902         ListView size.
5904 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
5906         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
5907           window seems to do that with metacity, so set that type. (#78120)
5909 2006-05-05  Mike Kestner  <mkestner@novell.com>
5911         * ListViewItem.cs: fix Details mode checkbox layout bug.
5912         * ThemeWin32Classic.cs: draw a ListView column header for unused space
5913         at the end of the header, if it exists. [Fixes for #78200]
5915 2006-05-04  Jackson Harper  <jackson@ximian.com>
5917         * MdiClient.cs: Add a helper property to get the container form.
5918         * MdiWindowManager.cs: We have to make sure to use the menu origin
5919         when drawing the icons and buttons, this fixes maximized window
5920         icons/buttons on win32.
5921         * InternalWindowManager.cs: Reset the restore captions when a
5922         window goes from Maximized to Minimized and vice versa. Move the
5923         DrawMaximizedButtons into the MdiWindowManager source, tool
5924         windows can't be maximized. NOTE: This could use a little
5925         refactoring if time ever permits.
5926         
5927 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
5929         * TextBox.cs: Add MWFCategoryAttributes
5930         * TextBoxBase.cs: Add MWFCategoryAttributes
5931         * Form.cs: Add MWFCategoryAttributes
5933 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
5935         * Control.cs: Add MWFCategoryAttributes
5936         * ScrollableControl.cs: Add MWFCategoryAttributes
5938 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
5940         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
5941           Divider is true. Fix a little glitch in PropertyToolBar
5942           drawing code
5944 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
5946         * Control.cs:
5947           - Dispose: Call base.Dispose, this causes the disposed event
5948             to be fired (and probably other, more important stuff)
5949           - SetVisibleCore: Set is_visible to true after creating the
5950             window so that the window still gets created invisible (if
5951             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
5952             to generate a WM_ACTIVE message
5953         * Form.cs: Call Dispose when we want to destroy the window, instead of
5954           just destroying the handle (Dispose will do that for us)
5955         * XplatUIX11.cs:
5956           - RootWindow also needs a queue, so we can properly process the
5957             property change events from RootWindow (like Activate)
5958           - Generatic synthetic WM_ACTIVE message when the active window is
5959             being destroyed
5961 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
5963         * LinkLabel.cs: Trigger a recalc of our label dimensions when
5964           bounds are changed
5966 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
5968         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
5969           for determining width and height (image might not be assigned if
5970           we're drawing an imagelist)
5972 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
5974         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
5975         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
5976           height from system
5977         * Theme.cs: No longer returns hardcoded menu height, instead calls
5978           new driver method
5979         * Form.cs (OnLoad): Scaling happens before triggering Load events 
5980           on MS (# 78257)
5982 2006-05-01  Mike Kestner  <mkestner@novell.com>
5984         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
5986 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
5988         * TextBoxBase.cs: Removed Fixme
5989         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
5991 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
5993         * XplatUIX11.cs:
5994           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
5995             the rectangle relative to the parent, considering borders. We
5996             don't really want that.
5997           - ScrollWindow: Fixed warning to be more understandable
5998         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
5999           scrollbars and scroll only the visible area
6000         * RichTextBox.cs: Removed debug output
6002 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
6004         * NumericUpDown.cs (Text): Just use base
6005         * UpDownBase.cs: Ensure txtView is created before using it
6007 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
6009         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
6010           casting to IntPtr to avoid 64bit overflow errors
6012 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
6014         * Control.cs:
6015           - AllowDrop: Don't force handle creation.
6016           - CreateHandle: Added call to tell driver if we're allowed to drop
6018 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
6020         * FileDialog.cs: Remember the last directory not only for the
6021           current instance but also for new FileDialog instances.
6023 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
6024         
6025         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
6026           broke sending async messages
6028 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
6030         * XplatUIX11.cs:
6031           - ScrollWindow: Fixed method. We finally generate expose events again
6032             for scrolled areas. This was causing 'garbage' when scrolling
6033             textbox and other controls that used ScrollWindow
6034           - Switched from using the regular queue for paint events to the MS 
6035             model of 'generating' paint events when the queue is empty.
6036             We use the new XQueueEvent.Paint subclass to store which windows
6037             need painting.
6038           - AddExpose now takes the x/y/width/height of the exposed area
6039             and inserts the window into the paint queue if not already there
6040           - InvalidateWholeWindow: Switched to use new AddExpose method
6041           - UpdateMessageQueue: Added which queue to monitor for paint events
6042           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
6043             the unlikely case nothing above handles it. We reset the expose
6044             pending states to get them off the queue.
6045           - GetMessage: Now pulls a paint event if no other events are in the
6046             queue
6047           - Invalidate: Switched to new AddExpose method
6048           - PeekMessage: Updated to understand pending paint events
6049           - UpdateWindow: Fixed logic bug. We were only updating if the window
6050             didn't need updating. Also switched to sending WM_PAINT directly,
6051             like MS does.
6052         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
6053           and random access Remove(). The random access is needed to handle
6054           UpdateWindow() where a WM_PAINT is sent directly without accessing
6055           the queue.
6056         * ScrollBar.cs: Added Update() calls to cause immediate updates to
6057           allow for better feedback when scrolling. Scrollbars are small and
6058           the immediate update should make it 'feel' more responsive without
6059           slowing things down. ScrollBar still needs it's invaliate logic
6060           updated to not always invalidate the whole bar on certain changes.
6062 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6064         * Control.cs:
6065         (BackColor): if the control does not support a transparent background,
6066         return the default backcolor when the parent backcolor is transparent.
6068 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
6070         * Application.cs: Updated to new StartLoop/GetMessage API
6071         * RichTextBox.cs: Provide some output on RTF parsing errors
6072         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
6073           new queue_id argument to GetMessage and PeekMessage to allow faster
6074           handling of per-thread queues in drivers.
6075         * Hwnd.cs: Added Queue tracking and property
6076         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
6077         * XEventQueue.cs: Added thread trackingA
6078         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
6079         * XplatUIX11.cs:
6080           - Implemented new per-thread queue
6081           - GetMessage: Fixed return/break behaviour on several cases. We were
6082             returning stale messages in some cases, instead of just processing
6083             the next message
6085 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
6087         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
6089 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
6091         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
6092           fixed off-by-one comparisons between Width/Height and Right/Bottom.
6094 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
6096         * PropertyGridView.cs: Fix drop down width.
6098 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
6100         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
6101           a mess in DrawToolBar, so I removed one of them.
6103 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
6105         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
6106           needed (clip). Otherwise we get artifacts.
6108 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
6110         * FixedSizeTextBox.cs: Added constructor to allow specifying which
6111           dimension is fixed
6112         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
6113           and switched FixedSizeTextBox to only be fixed vertical (#78116)
6114         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
6115           if it matches the scale base font (avoids unneeded scaling)
6117 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
6119         * X11DesktopColors.cs: One gtk_init_check should be enough
6121 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
6123         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
6124           match MS behaviour
6126 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
6128         * TextBoxBase.cs: 
6129           - Generate OnTextChanged for Backspace even if we're only deleting
6130             the current selection
6131           - When setting the Text property, only select all text if the
6132             control does not have focus when it is being set. Otherwise
6133             just place the cursor at the beginning of the control
6135 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
6137         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
6138           Added a little helper to draw PropertyGrid ToolBar with a different
6139           border and a different BackColor.
6140         * PropertyGrid.cs: Some background parts didn't get painted with the
6141           correct background color. Added a class that helps us to draw the
6142           correct border for PropertyGridView and a class that helps us to
6143           draw ToolBars with a different backcolor
6144         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
6146 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
6148         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
6149         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
6151 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
6153         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
6154           into the palette entries. Also, since we're working on a copy
6155           we needed to copy the palette back onto the bitmap.
6156         * Cursor.cs: Same fix as XplatUIWin32.cs.
6158 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
6160         * ImageListStreamer.cs: Need to read the var (or we're off)
6162 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
6164         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
6165           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
6166           TextBoxBase.cs: Unused var fixes
6167         * AxHost.cs: Small 2.0 fix
6168         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
6169           as it seems that is what at least Metacity expects. This will make
6170           icons show up on 64bit platforms. We still have some 64bit size
6171           issues, though, since the startup app window size still won't match.
6173 2006-04-25  Mike Kestner  <mkestner@novell.com>
6175         * *.cs: cleanup newly reported exception var unused warnings.
6177 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
6179         * ThemeWin32Classic.cs: Button image alignment now matches exactly
6180           ms
6182 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
6184         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
6185           image. The image position is always the same, no matter if the
6186           button is pressed or not.
6188 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
6190         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
6191           selection and set the correct filename for SaveFileDialog.
6192           Patch by Emery Conrad.
6194 2006-04-24  Mike Kestner  <mkestner@novell.com>
6196         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
6197         check for item.X outside the ClientRect instead of item.Y. Fixes
6198         #78151.
6200 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6202         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
6203         trust that value blindly and do some sanity check. Fixes bug #77814.
6205 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6207         * ImageListStreamer.cs: save the mask as a 1bpp image.
6209 2006-04-21  Mike Kestner  <mkestner@novell.com>
6211         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
6212         pass Checked and Indeterminate to the Theme Engine. Improve
6213         encapsulation with ListBox.
6214         * ListBox.cs: Keep a StringFormat instead of calculating it every item
6215         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
6216         nested types.  Move all CheckState functionality to CheckedListBox.
6217         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
6218         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
6219         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
6220         single base list. Fix scrollbar sizing and placement to mirror MS.
6221         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
6222         used.
6223         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
6224         for CheckedListBox by using new DrawItemState info.  Center the
6225         checkboxes on the items. Use new StringFormat property.
6227 2006-04-18  Jackson Harper  <jackson@ximian.com>
6229         * Form.cs: MdiChildren don't do default locations the same way as
6230         regular forms.  This prevents a crash when trying to position the
6231         mdi windows.
6233 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
6235         * PropertyGridTextBox.cs: Formatting, copyright
6236         * PropertiesTab.cs: Formatting
6237         * PropertyGrid.cs: Formatting
6238         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
6239           click toggling of values
6240           
6241 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
6243         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
6244         * Control.cs (.ctor): verify_thread_handle is static, don't reset
6245           every time a control is created
6246         * Application.cs: Removed obsolete EnableRTLMirroring method
6248 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
6250         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
6251         SelectedIndex to -1. Fixes bug #78121.
6253 2006-04-17  Jackson Harper  <jackson@ximian.com>
6255         * Binding.cs: Handle null values for Current and BindingContext.
6256         This occurs when binding is a little delayed.
6257         * CurrencyManager.cs: return null for Current when there are no
6258         items in the list.
6259         - Hookup to the listchanged event on the DataView and update
6260         bindings when the list is changed.  This fixes late binding of
6261         controls.
6263 2006-04-17  Jackson Harper  <jackson@ximian.com>
6265         * X11Dnd.cs:
6266         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
6267         Ringenbach.
6269 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
6271         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
6272           place
6273         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
6274           with the correct ButtonState
6276 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
6278         * XplatUIX11.cs: Improved distinguishing between window types to
6279           tell the WM a type closer to what the app wants (Fixes #78107)
6281 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
6283         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
6284           GrabHandle
6286 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
6288         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
6289           drawing code to reflect the size grip changes
6291 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6293         * ImageListStreamer.cs: fix handling of the mask that follows the main
6294         bitmap when deserializing and serialize it properly. The generated mask
6295         should better be a 1bpp image, but I'll do that later.
6297 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
6299         * FileDialog.cs: Show something in the DirComboBox on *nix if the
6300           path doesn't fit into some of our Current.Places
6302 2006-04-13  Jackson Harper  <jackson@ximian.com>
6304         * ComboBox.cs: Use borders instead of drawing our own decorations,
6305         try to obey correct rules for heights.
6306         * Theme.cs:
6307         * ThemeNice.cs:
6308         * ThemeClearLooks.cs:
6309         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
6310         this is now handled by borders.
6311         - Remove unused DrawListBoxDecorationSize method.
6312         
6313 2006-04-13  Mike Kestner  <mkestner@novell.com>
6315         * MenuAPI.cs: null guarding for the disbled click check fixes crash
6316         reported by Alex.
6318 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
6320         * ThemeWin32Classic.cs: 
6321           - Fixed CPDrawStringDisabled
6322           - Corrected drawing of disabled menu items
6323           - Fixed drawing of disabled radio buttons (bug #78095)
6324           - Draw check in a disabled CheckBox with color ControlDark 
6326 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
6328         * Form.cs: Use the provided width when calculating the menu size;
6329           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
6330           and ClientSize.Width won't be updated yet
6331         * Application.cs: Use Visible instead of Show() to make form visible,
6332           this way we create the handle later and menusize is considered
6334 2006-04-12  Mike Kestner  <mkestner@novell.com>
6336         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
6337         reporting.
6339 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
6341         * TextBox.cs: Implemented context menu
6343 2006-04-12  Mike Kestner  <mkestner@novell.com>
6345         * ListView.cs: implement box selection. fixes #77838.
6346         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
6348 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
6350         * XplatUIX11.cs: Added setting of window type when transient window
6351           is created (metacity would move it otherwise)
6352         * X11Structs.cs: Added WINDOW_TYPE atoms
6353         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
6354           background (the control is Opaque but still wants transparent
6355           backgrounds)
6357 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
6359         * Control.cs: Added OnPaintBackgroundInternal to allow controls
6360           that set Opaque but don't mean it (like all ButtonBase-derived
6361           controls) to still draw their background
6362         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
6363           the background
6365 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
6367         * Control.cs (PaintControlBackground): Set the graphics object
6368           on our PaintEvent to null to prevent it from being disposed
6369           when the PaintEvent gets disposed
6371 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
6373         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
6374         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
6376 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
6378         * Control.cs: 
6379           - Added transparency check to BackColor property. Transparent
6380             backgrounds are only allowed if the control styles permit it
6381           - Added recursive painting of parent control background and
6382             foreground if a control with a transparent backcolor is drawn
6383             (Thanks to Tim Ringenback for providing his 'hack' as a base
6384              for this patch) Fixes #77985 and #78026.
6385           - Added Opaque style check before calling OnPaintBackground, no
6386             need to draw the background if the control is opaque
6387           - Removed ControlAccessibleObject owner variable (inherited from
6388             base, no need to define again)
6389           - Added some documentation links explaining the drawing events
6390             and styles
6392 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
6394         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
6395           that the affected control is the located at the left border of our
6396           parent (Fixes #77936)
6398 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
6400         * TextBoxBase.cs: When rendering disabled or readonly controls,
6401           draw the background with 'Control' instead of 'Window' color as
6402           long as the user hasn't specifically set a color
6404 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
6406         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
6407           since that won't be updated if the user types text (only if it's
6408           programatically set)
6410 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
6412         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
6413           layout changes do to app-triggered resizes will have the proper
6414           display rectangle for layout
6416 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
6418         * ThemeWin32Classic.cs:
6419           - Make use of the SystemBrushes and SystemPens wherever possible
6420           - Corrected some highlight colors
6421           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
6422             drawing
6423         * Theme.cs: Added Empty field to CPColor struct
6425 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
6427         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
6428           is displayed when calculating the display rectangle. Thanks to Mike
6429           for teaching me the err of my ways.
6431 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
6433         * ScrollableControl.cs:
6434           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
6435             (instead of 0,0) and we now return the real width/height instead of
6436             just the clientrectangle, adjusted for padding. The rectangle is
6437             now cached and created by the new CalculateDisplayRectangle method.
6438           - Created new CalculateDisplayRectange method, which basically does
6439             what get_DisplayRectangle() did originally, but now using the 
6440             right edge instead of DisplayRectangle to determine the size of
6441             our scrollbars
6442           - get_Canvas(): Fixed it to properly calculate canvas for 
6443             right/bottom controls which seem to be placed to the right/bottom
6444             of any controls that have a fixed location
6445           - Removed TODO that's taken care of
6446           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
6447             and SetDisplayRectLocation according to new MSDN2 docs
6448           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
6449             event when that is called, this is added for compatibility
6450           - ScrollControlIntoView(): Implemented.
6451           - Switched scrollbars to be implicit, they shouldn't be selectable
6452         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
6453           call it when the active control is set/changed
6454         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
6455         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
6456           implicit_control variable (used for native Win32 message generation)
6457         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
6458           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
6459         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
6460         * XplatUIStructs.cs: Added ScrollBarCommands enum
6462 2006-04-10  Jackson Harper  <jackson@ximian.com>
6464         * ButtonBase.cs:
6465         * CheckedListBox.cs:
6466         * ComboBox.cs:
6467         * DataGrid.cs:
6468         * DataGridView.cs:
6469         * Form.cs:
6470         * GroupBox.cs:
6471         * ListBox.cs:
6472         * PrintPreviewControl.cs:
6473         * ProgressBar.cs:
6474         * PropertyGrid.cs:
6475         * Splitter.cs:
6476         * StatusBar.cs:
6477         * TrackBar.cs:
6478         * UpDownBase.cs: Fixup base event overrides.
6479         
6480 2006-04-06  Mike Kestner  <mkestner@novell.com>
6482         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
6483         all user-initiated value changes to min <= value <= max-thumbsz+1.
6484         (set_Value): check for vert/horiz when calculating new thumb position.
6485         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
6486         like MS does.
6487         (OnMouseMoveSB): refactor the thumb dragging code and refine
6488         invalidation logic to reduce flicker.
6489         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
6490         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
6491         (UpdateThumbPosition): small code readability cleanup
6493 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
6495         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
6496           different
6498 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
6500         * ThemeNice.cs: Use a better graphics effect when a button is pressed
6502 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
6504         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
6505         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
6506           This dramatically reduces the number of Pen.Dispose calls. 
6507           Where possible call ResPool methods only once instead of calling it
6508           over and over again (for example for the same color).
6510 2006-04-06  Mike Kestner  <mkestner@novell.com>
6512         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
6513         Also remove an unused private field on the collection. Fixes #77972.
6515 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
6517         * ThemeNice.cs: Added ToolBar drawing code
6519 2006-04-06  Mike Kestner  <mkestner@novell.com>
6521         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
6522         I'm assuming that means we need to look up the toplevel for the
6523         provided control. Fixes the crash trace in #77911 but exposes another
6524         crash in some strange reflection usage in NDocGui.
6526 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
6528         * ThemeNice.cs: Gave it a little silver touch and added Images
6529           method
6530         * FontDialog.cs: FontDialog is not resizable
6531         * FileDialg.cs: Added SizeGripStyle.Show
6533 2006-04-05  Jackson Harper  <jackson@ximian.com>
6535         * KeyboardLayouts.cs: Remove warning.
6537 2006-04-05  Jackson Harper  <jackson@ximian.com>
6539         * Control.cs: Enable OnPaintInternal so we can use it for drawing
6540         all of our controls instead of Paint +=.
6541         * ListBox.cs:
6542         * ListView.cs:
6543         * MenuAPI.cs:
6544         * MessageBox.cs:
6545         * NotifyIcon.cs:
6546         * ProgressBar.cs:
6547         * ScrollBar.cs:
6548         * Splitter.cs:
6549         * StatusBar.cs:
6550         * TabControl.cs:
6551         * TextBoxBase.cs:
6552         * ToolBar.cs:
6553         * TrackBar.cs:
6554         * UpDownBase.cs:
6555         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
6556         use OnPaintInternal. Remove Width/Height and Visible checks in
6557         paint handler, this is done at a higher level now.
6558         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
6559         * PaintEventArgs.cs: Add a handled flag so controls that don't
6560         want anymore painting after OnPaintInternal can make sure OnPaint
6561         isn't called.
6563 2006-04-05  Mike Kestner  <mkestner@novell.com>
6565         * Form.cs: fix the menu WndProc hacks to respect the native enabled
6566         state of the form, so that we don't process events when Modal dialogs
6567         are up. Fixes #77922.
6569 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
6571         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
6572           checking is done.
6574 2006-04-05  Mike Kestner  <mkestner@novell.com>
6576         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
6578 2006-04-05  Mike Kestner  <mkestner@novell.com>
6580         * ListView.cs (HeaderMouseMove): null guarding for the over column
6581         when setting up the drag_to_index.  Fixes #78015.
6583 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
6585         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
6586           in the taskbar. Transient windows seem to accomplish that.
6588 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
6590         * Form.cs:
6591           - Re-enabled CreateParams.X/Y code for FormStartPosition
6592           - Added code for manual placement when creating the Control
6593           - Incomplete patch to treat MDI forms differently when
6594             setting the ClientSizeCore. (Still need to figure out handling
6595             x/y coords there)
6596         * XplatUIX11.cs:
6597           - When we're explicitly setting the X/Y position of a non-Child
6598             window, let the WM know. Metacity really wants this.
6600 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
6602         * ThemeNice.cs: Added CPDrawButton
6604 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
6606         * ThemeNice.cs: Changed the color for focused buttons and activated
6607           the arrows for small scroll buttons.
6609 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
6611         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
6612           anymore. Changed some method modifiers to protected (virtual)
6613         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
6614           changes
6615         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
6616           Updated drawing of menus, buttons and progressbars; added
6617           CPDrawBorder3D 
6619 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6621         * ImageListStreamer.cs: implemented serialization/deserialization
6622         of the images.
6624 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
6626         * ThemeWin32Classic.cs:
6627           - Removed all the DrawFrameControl stuff; CPDrawButton,
6628             CPDrawCheckBox and CPDrawRadioButton are now handled directly
6629             inside the methods
6630           - Updated and corrected the drawing code of CPDrawButton,
6631             CPDrawCheckBox and CPDrawRadioButton to better match ms
6632           - Updated theme checkbox and radiobutton code to use the CP*
6633             methods
6635 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
6637         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
6638           bug is fixed
6640 2006-03-31  Jackson Harper  <jackson@ximian.com>
6642         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
6643         sometimes.
6644         * UpDownBase.cs: Don't CreateGraphics manually, use a
6645         Refresh. Ideally we would invalidate the correct areas here.
6647 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
6649         * XplatUIX11.cs: 
6650           - We now track the mapping state of windows. If a window (or 
6651             one of it's parents) is not mapped we no longer permit
6652             WM_PAINT messages to be generated since we'd otherwise get 
6653             lots of BadMatch X errors. Jackson did all the work figuring
6654             out the problem.
6655           - Destroying the caret if the window it's contained in is 
6656             destroyed. Can't use regular DestroyCaret method since it
6657             might fall into a drawing function (trying to remove the
6658             caret) and with that generate new BadMatch errors. Again,
6659             Jackson tracked this down.
6660           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
6661             make sure we send the messages to all windows. (The old code
6662             would send the WM_DESTROY to the window, and then all child
6663             windows would be 'gone' because the WM_DESTROY handle lookup
6664             would no longer find the destroyed window)
6665         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
6666         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
6668 2006-03-31  Jackson Harper  <jackson@ximian.com>
6670         * ScrollableControl.cs: Dont recalc if we are not visible.
6672 2006-03-31  Mike Kestner  <mkestner@novell.com>
6674         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
6675         the visibility branch.
6677 2006-03-31  Jackson Harper  <jackson@ximian.com>
6679         * ScrollBar.cs: Cap values when incrementing/decrementing.
6681 2006-03-31  Mike Kestner  <mkestner@novell.com>
6683         * MenuAPI.cs: setup menu.tracker for popup/context menus.
6684         * ToolTip.cs: guard against timer expirations with no active control.
6685         Not sure why it happened.
6687 2006-03-31  Mike Kestner  <mkestner@novell.com>
6689         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
6690         text.
6691         * ToolTip.cs: Position the tooltip based on where the cursor is at
6692         popup time, not at MouseEnter time.  Add a Down state so that we don't
6693         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
6694         positioning offset. Lookup DisplaySize at positioning time, since it
6695         can theoretically change during invocation.
6696         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
6697         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
6699 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
6701         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
6702           Fixes behaviour when the Text property of the box is String.Empty
6704 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
6706         * XplatUIX11.cs: Only send mouseleave for our client windows, not
6707           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
6708           a window)
6710 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
6712         * FileDialog.cs: Visual enhancement for the popup buttons in 
6713           PopupButtonPanel
6715 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
6717         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
6718           code
6720 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
6722         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
6723           highlighted menu items to match ms
6725 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
6727         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
6729 2006-03-30  Mike Kestner  <mkestner@novell.com>
6731         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
6732         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
6733         go active to account for HotLight to Selected transition.
6734         * MenuItem.cs: add internal Selected prop. Fill out the Status
6735         property by calculating it from item info. Add HotLight,
6736         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
6738 2006-03-30  Mike Kestner  <mkestner@novell.com>
6740         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
6742 2006-03-29  Jackson Harper  <jackson@ximian.com>
6744         * Form.cs: Implement TODO.
6746 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
6748         * PrintPreviewDialog.cs: Implemented missing methods and events; still
6749           missing proper dialog setup in the constructor
6751 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
6753         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
6754         * Control.cs:
6755           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
6756           - Fixed ResetBindings and removed TODO
6757           - Added check for cross-thread calls to get_Handle()
6758           - Added Marshaller attribute for set_Font to satisfy class status
6759         * FontDialog.cs: Removed TODOs that seemed implemented
6760         * UpDownBase.cs: Removed unneeded TODO and Fixme
6761         * MessageBox.cs: Implemented support for Default button and removed TODO
6762         * FileDialog.cs: Removed obsolete TODO
6763         * DomainUpDown.cs: Removed obsolete TODO
6764         * ButtonBase.cs: Removed obsolete TODO
6765         * XplatUIWin32.cs: Removed obsolete TODO
6766         * Form.cs:
6767           - Removed obsolete TODO
6768           - Calling CheckAcceptButton when the acceptbutton is changed to allow
6769             internal status updates
6770           - Making sure the active control is selected when the control is created
6771         * CurrencyManager.cs: Removed obsolete TODO
6773 2006-03-29  Mike Kestner  <mkestner@novell.com>
6775         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
6776         of PrintPreviewDialog and RichTextBox.
6778 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
6780         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
6781           DarkDark, Light and LightLight colors for a specific color
6782         * ThemeWin32Classic.cs:
6783           - Use Button drawing code to draw RadioButtons and CheckBoxes with
6784             Appearance = Button 
6785           - Make use of the new ResPool helper CPColor
6786           - Draw ProgressBar and StatusBar with correct 3D borders
6788 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
6790         * ColorDialog.cs: Return selected color. Fixes bug #77940.
6792 2006-03-28  Mike Kestner  <mkestner@novell.com>
6794         * ListView.cs: fix Icon layout to plan for scrollbar widths when
6795         calculating col/row counts.
6797 2006-03-28  Mike Kestner  <mkestner@novell.com>
6799         * ColumnHeader.cs:
6800         * ListView.cs:
6801         * ListViewItem.cs:
6802         * Menu.cs: 
6803         switch to explicit interface method implementation for some methods
6804         corcompare identifies as inconsistent with MS.
6806 2006-03-28  Mike Kestner  <mkestner@novell.com>
6808         * MainMenu.cs: 
6809         * Menu.cs:
6810         add a few missing methods from the class status output.
6812 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
6814         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
6815           correct.
6817 2006-03-28  Mike Kestner  <mkestner@novell.com>
6819         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
6821 2006-03-27  Mike Kestner  <mkestner@novell.com>
6823         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
6824         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
6826 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
6828         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
6830 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
6832         * ThemeWin32Classic.cs:
6833           - GroupBox: Inserted a little gap between the text and the lines
6834             on the right side
6835           - Made the code in CPDrawBorder3D more readable
6836           - Corrected the drawing location of the up and down arrows in 
6837             CPDrawScrollButton
6839 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
6841         * ControlPaint.cs: Corrected line widths in DrawBorder for
6842           ButtonBorderStyle Inset and Outset
6844 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
6846         * ThemeWin32Classic.cs:
6847           - Rewrote the totally broken CPDrawBorder3D method. That was
6848             one of the main problems for the terrific ThemeWin32Classic
6849             look
6850           - Updated and corrected Button drawing
6851           - Correct the dimensions of the SizeGrip to match ms ones
6852           - Removed a small drawing glitch in DrawComboBoxEditDecorations
6853         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
6854           Border3DStyle.Sunken to match ms.
6856 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
6858         * ThemeWin32Classic.cs: First small part of the "de-uglify
6859           ThemeWin32Classic" effort, SizeGrip
6861 2006-03-24  Jackson Harper  <jackson@ximian.com>
6863         * XplatUIX11.cs: Give a max idle time of one second, this matches
6864         MS and forces an Idle event every second when there are no other
6865         events in the queue.
6867 2006-03-24  Mike Kestner  <mkestner@novell.com>
6869         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
6870         * ListView.Item.cs: fix layout issues with null image lists and images
6871         smaller than checkbox size.
6872         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
6873         mode like MS does.  It's weird, but consistent.  ;-)
6874         Fixes #77890.
6876 2006-03-24  Mike Kestner  <mkestner@novell.com>
6878         * ListView.cs: Scroll wheel support for the item control.  Fixes
6879         #77839.
6881 2006-03-23  Jackson Harper  <jackson@ximian.com>
6883         * ScrollableControl.cs: Special case negative sized areas, not
6884         zero.
6885         * MonthCalendar.cs: Save the rect of the clicked date so we can
6886         use it for invalidation.
6887         - Try to cut down on the number of invalidates
6888         - Invalidate the rect the mouse is over and was over when moving
6889         the mouse, so we get the focus box following the cursor.
6891 2006-03-23  Mike Kestner  <mkestner@novell.com>
6893         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
6894         focus rectangle drawing. Fixes #77835.
6896 2006-03-23  Mike Kestner  <mkestner@novell.com>
6898         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
6899         the if and else if and reverting back to the original == check on the
6900         None conditional.
6902 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
6904         * FontDialog.cs: Update the example panel if the selected index of
6905           the fontListBox changes.
6907 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
6909         * FileDialog.cs: Make FileDialog remember which directory it was in
6910           last in the same execution.
6912 2006-03-22  Mike Kestner  <mkestner@novell.com>
6914         * FileDialog.cs: make the DropDownMenu on the toolbar display
6915         RadioChecks since they are mutually exclusive and that's what MS does.
6917 2006-03-22  Mike Kestner  <mkestner@novell.com>
6919         * Theme.cs: add Color param to CPDrawMenuGlyph.
6920         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
6921         checks and radio marks and arrows are visible on highlighted items.
6922         * ControlPaint.cs: update to use new Theme signature.
6924 2006-03-22  Mike Kestner  <mkestner@novell.com>
6926         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
6927         is active. Fixes #77870.
6929 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
6931         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
6932           to be focused/selected after startup
6934 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
6936         * ColorDialog.cs: 
6937           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
6938             CustomColors and ShowHelp properties
6939           - Some internal rewrites to get better results when using the
6940             ColorMatrix
6942 2006-03-22  Mike Kestner  <mkestner@novell.com>
6944         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
6945         HoverSelection.  Fixes #77836.
6947 2006-03-22  Mike Kestner  <mkestner@novell.com>
6949         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
6950         ToggleButtons.  (De)Sensitize the Back button around a stack count of
6951         1, not 0.  Update ButtonSize based on a pixel count of the win32
6952         control.  Adjust the toolbar size/location for new button size.
6954 2006-03-22  Jackson Harper  <jackson@ximian.com>
6956         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
6957         true.
6958         * ScrollBar.cs: When doing increments and decrements we need to
6959         set the Value property so that ValueChanged gets raised. A
6960         possible optimization here would be to make an internal SetValue
6961         that doesn't invalidate immediately.
6962         * ToolTip.cs: Tooltips get added to their container (when
6963         supplied) so they get disposed when the container is disposed.
6964         - Don't create tooltips for String.Empty. This prevents all these
6965         little 2-3 pixel windows from showing up when running nunit-gui
6966         and driving me mad.
6967         * Form.cs: Don't set topmost when setting the owner if the handles
6968         haven't been created yet.  The topmost set will happen when the
6969         handles are created.
6971 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
6973         * XplatUIX11.cs:
6974           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
6975           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
6976             visible (to allow them to recalculate their sizes)
6978 2006-03-21  Mike Kestner  <mkestner@novell.com>
6980         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
6981         methods. Removed a ton of redundant code.  Still not really happy with
6982         the border rendering, but I think that's mainly because of the
6983         ControlDarkDark being black instead of a dark grey. Depending on how 
6984         close we want to be, we might want to revisit those color choices.
6985         Among the new features added during the refactor were DropDownArrow
6986         pressed rendering, Disabled image rendering.  Proper flat appearance
6987         boundary rendering.  Removed the Divider and Wrapping dividers since I
6988         can't figure out any combination of themes and conditions to make the
6989         MS control draw a horizontal line on a toolbar despite what the
6990         Divider property docs indicate.
6991         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
6992         conditions and incorrect layout.  Updated to coding standard.
6993         * ToolBarButton.cs: refactored layout and positioning code from
6994         ToolBar to here.  Invalidate wherever possible instead of forcing
6995         redraws of the whole toolbar. 
6996         (Known remaining issues: explicit ButtonSize smaller than provided
6997         images.)
6999 2006-03-21  Mike Kestner  <mkestner@novell.com>
7001         * ContextMenu.cs (Show): use the position parameter instead of just
7002         showing at the MousePosition.
7004 2006-03-21  Jackson Harper  <jackson@ximian.com>
7006         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
7007         control handle this.
7008         * TreeNodeCollection.cs: If we are clearing the root node we need
7009         to reset top_node so calcs can still happen.
7010         * ThemeWin32Classic.cs: This is a Flags so we need to check
7011         properly.
7012         
7013 2006-03-21  Jackson Harper  <jackson@ximian.com>
7015         * DataGrid.cs: Create columns when the binding context has been
7016         changed.
7017         * X11Structs.cs: Keysyms are uints.
7018         - Add size to fix build.
7020 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
7022         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
7023           XplatUIOSX.cs: 
7024           - Added ResetMouseHover method to allow controls to retrigger
7025             hovering if they need it more than once
7026           - Implemented MouseHoverTime and MouseHoverSize properties
7027         * Timer.cs: Start() must reset the interval
7028         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
7029           properties
7031 2006-03-21  Jackson Harper  <jackson@ximian.com>
7033         * X11Keyboard.cs: improved layout detection. Move the nonchar
7034         tables into this file.
7035         * KeyboardLayouts.cs: Move the tables into resource files.
7037 2006-03-21  Mike Kestner  <mkestner@novell.com>
7039         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
7041 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
7043         * Mime.cs: Various speed optimizations. Looking up mime types
7044           is now 2 times faster than before
7046 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
7048         * CreateParams.cs: Added internal menu field
7049         * Control.cs: 
7050           - Switched call order for UpdateBounds; now we always call
7051             the one that also takes ClientSize, and we're calculating the 
7052             client size via driver method in the others. The previous
7053             method of tracking client size by difference wasn't working
7054             for forms where even the starting client size wouldn't match
7055             the overall form size (due to borders) (Part of fix for #77729)
7056           - CreateParams(): Do not use parent.Handle unless the handle is
7057             already created. Causes havoc with Nexxia and throws off our
7058             creation of controls
7059         * XplatUIX11.cs:
7060           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
7061           - Switched handling of ConfigureNotify over to new PerformNCCalc 
7062             method (consolidates code)
7063           - Changed RequestNCRecalc to use new PerformNCCalc method
7064           - Added calls to RequestNCRecalc when menus and borders are changed
7065             to allow app to set NC size. (Part of fix for #77729) This matches
7066             when MS send a WM_NCRECALC on Win32 windows.
7067           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
7068             (Part of fix for #77729). This matches what MS does, they also
7069             send that message when the form is made visible.
7070           - XException.GetMessage: Improved usability of X errors by including
7071             a translation of the window into Hwnd and Control class
7072           - Improved debug info for window creation, reparenting and destruction
7073           - Created helper method WindowIsMapped() [Currently not used]
7074         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
7075         * Form.cs:
7076           - CreateParams: Now setting our menu on the new internal menu field
7077           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
7078             avoid calculating the same property twice
7079         * Hwnd.cs:
7080           - Improved usability of ToString() for debugging purposes
7081           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
7082             determine the height of the menu, instead of just the font. This
7083             required to also create a graphics context and to keep a bmp 
7084             around (for performance reasons)
7086 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
7088         * MenuAPI.cs: Added OnMouseUp method
7089         * Form.cs:
7090           - Now remembering the requested client size, avoids size errors
7091           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
7092             instead of base if the menu is active. This is required due to
7093             control now capturing and releasing on down/up and it would
7094             prematurely release our menu capture
7096 2006-03-17  Jackson Harper  <jackson@ximian.com>
7098         * KeyboardLayouts.cs: Add the czech layouts.
7100 2006-03-16  Jackson Harper  <jackson@ximian.com>
7102         * Control.cs: Use the viewport space when sizing not the controls
7103         client size, so things like ScrollableControl that effect the
7104         viewport size (when scrollbars are added) are computed correctly.
7105         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
7106         of ManagerEntrys.
7107         - Handle creating BindingManagers for null data sources.
7108         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
7109         source, otherwise when rows are added they are added to the 'fake'
7110         datasource and we will crash when trying to set the position in
7111         those rows.
7112         - Use Implicit scrollbars on the datagrid so they arent
7113         selectable.
7114         
7115 2006-03-16  Jackson Harper  <jackson@ximian.com>
7117         * Binding.cs:
7118         * InternalWindowManager.cs:
7119         * MdiWindowManager.cs:
7120         * X11Keyboard.cs: I really want Mike to love me again (fix
7121         compiler warnings).
7123 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
7125         * DataGrid.cs:
7126           - OnMouseDown: Switch to editing mode when clicking on the cell
7127                          even if we're clicking on the cell that's currently 
7128                          selected
7129           - ProcessGridKey: Left/Right now wrap like MS.Net does
7130           - ProcessGridKey: Tab now knows to add a new row when tab is
7131                             pressed in the cell of the last column of the 
7132                             last row
7133           - ProcessGridKey: Enter now adds another row  if pressed in the last
7134                             row and selectes the new row, same column cell
7135           - ProcessGridKey: Home/End navigate columns, not rows, like 
7136                             originally implemented
7137           - Broke ProcessKeyPreview code out into an extra Internal method
7138             so it can be called from the edit code
7139         * DataGridTextBox.cs (ProcessKeyMessage):
7140           - Switched to accept Tab keypresses
7141           - Added F2 handling to allow jumping to the end of the edited cell
7142           - Added logic to allow moving caret left/right inside edited cell
7143             and making the edited cell jump when the caret hits cell borders
7144           - Tab and Enter are now passed to the datagrid after being handled
7145         * TextBoxBase.cs:
7146           - Removed capture code now that Control handles it
7147           - set_SelectionStart now ensures caret is visible
7149 2006-03-16  Jackson Harper  <jackson@ximian.com>
7151         * TrackBar.cs: Debackwards the increment/decrement for handling
7152         mouse clicks on the bar with vertical trackbars.
7153         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
7154         bottom to match MS.
7156 2006-03-16  Mike Kestner  <mkestner@novell.com>
7158         * ListView.cs: make shift/ctrl keyboard and mouse selection 
7159         consistent with the MS control. Fix a bug in
7160         SelectedListViewItemCollection.Clear that was pissing me off for the
7161         better part of a day because the collection was being altered
7162         underneath us as we walked the list.
7164 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
7166         * Control.cs: Not sure how we could miss this so long, but it seems
7167           that MS.Net has Capture set all the way from before calling 
7168           OnMouseDown through sending the mouse events until after
7169           OnMouseUp. This will fix DataGrid's selection being set to end
7170           at the location of the MouseUp.
7172 2006-03-15  Jackson Harper  <jackson@ximian.com>
7174         * BindingContext.cs: Check the binding after its added so that it
7175           can initialize the binding managers and hookup to events.
7176         * Binding.cs: Data members seem to sometimes include rows/cols in
7177           the format Row.Column we now take this into account.
7178           - Hookup to the position changed event so we can update the
7179           control when the position has changed in the data set.
7180         * CurrencyManager.cs: Take into account the row/col naming
7181           convention when creating dataset tables.
7182         * BindingContext.cs: Using a newer better way of storing
7183           datasource/datamember pairs.  Hopefully this better matches MS for
7184           looking up binding managers.
7187 2006-03-15  Jackson Harper  <jackson@ximian.com>
7189         * BindingContext.cs: The currency manager needs the data member
7190         name, if the member is a data set we use the name to find the
7191         correct table.
7192         * CurrencyManager.cs: When creating the list prefer an IList over
7193         an IListSource.
7194         - Attempt to create a DataTable from a DataSet (TODO: might need
7195         some better error checking here, although MS doesn't seem to have much)
7196         - If we have a DataTable create a view and use it as our list.
7198 2006-03-15  Mike Kestner  <mkestner@novell.com>
7200         * ListView.cs: keep a matrix of the icon mode layout to facilitate
7201         keyboard navigation. Support Up/Down/Left/Right selection correctly
7202         for all 4 View modes.
7203         * ListViewItem.cs: add internal row/col fields for icon layouts.
7205 2006-03-15  Jackson Harper  <jackson@ximian.com>
7207         * TabControl.cs: Redraw the tabs when we resize so their newly
7208         calculated sizes are drawn on screen.
7209         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
7210         composite characters.
7211         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
7212         - filter events so that composite characters can be created
7213         patches by peter
7214         * X11Structs.cs: Add XIMProperties enum.
7216 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
7218         * Control.cs (BringToFront, SendToBack): Don't use window or handle
7219           unless it's created
7221 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
7223         * Control.cs (PerformLayout): We don't need to consider visiblity
7224           for anchoring, only for docking. This fixes 'whacky' alignment
7225           in listbox and other controls that use implicit scrollbars after
7226           the previous PerformLayout patch
7227         * ListBox.cs: Switched to use implicit scrollbars
7228           
7229 2006-03-14  Mike Kestner  <mkestner@novell.com>
7231         * ToolBar.cs: 
7232         * VScrollBar.cs:
7233         - chain up the "new event" overrides to base and use
7234         OnEvent to raise them.  Part of fix for bug #76509.
7236 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
7238         * FileDialog.cs: Do not select an item in the parent directory
7239           on backspace
7241 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
7243         * Control.cs (PerformLayout): It would seem that we considered
7244           invisible windows for our layout. Not quite the right thing
7245           to do. Now we don't any longer, thereby fixing bug #76889.
7247 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
7249         * Control.cs (CanFocus): I goofed. A control can have focus 
7250           even though it's not selectable. Made it match MS docs.
7252 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
7254         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
7255           center by default (fixes #76895)
7256         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
7257           all uses of Border3DSides.All with the explicit ORd together
7258           Left|Right|Top|Bottom because I assume that nobody was aware 
7259           that All also implies a center fill. Most places I checked had
7260           a fill right above.
7261         * ProgressBarStyle.cs: Added
7263 2006-03-13  Mike Kestner  <mkestner@novell.com>
7265         * ListView.cs: fix breakage in drag shadow header positioning 
7266         from Peter's csc compilation fix.
7268 2006-03-13  Mike Kestner  <mkestner@novell.com>
7270         * ListView.cs: fix NRE produced by backspacing twice in a focused
7271         FileDialog.
7273 2006-03-13  Mike Kestner  <mkestner@novell.com>
7275         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
7277 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
7279         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
7280           be changed
7281         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
7282           the allowed size before making programmatic size changes
7284 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
7286         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
7287           set, metacity is broken and will still use the emty sizes in 
7288           the struct. (Fix for #77089)
7290 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
7292         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
7293           WindowExStyles and marked both enums as Flags
7294         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
7295           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
7296           to match WindowStyles split
7297         * XplatUIX11.cs:
7298           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
7299           - Updated to match WindowStyles split
7300         * XplatUIWin32.cs:
7301           - Fixed FosterParent creation, was using ExStyle on the Style field
7302             (This should help with Popup focus issues)
7303           - Updated to match WindowStyles split
7305 2006-03-13  Jackson Harper  <jackson@ximian.com>
7307         * MdiWindowManager.cs: Use the system menu height. Fixes some
7308         strange sizing issues.
7310 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
7312         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
7313         * TextBoxBase.cs:
7314           - Scroll to caret after inserting text (#77672)
7315           - Make scroll range one pixel higher, fixes off-by-one error (and
7316             makes underlines visible on the last line)
7318 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
7320         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
7321           the keyboard state from being stuck with keys in 'pressed' state when
7322           focus is switched away via keyboard
7323         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
7324           reset the keyboard if no X11 KeyUp events are expected to come
7325         * X11Structs.cs: Switched type of Visible to bool to match driver
7327 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
7329         * TextControl.cs:
7330           - Switched caret to be just 1 pixel wide, matches MS and looks less
7331             clunky
7332           - Moved caret display 1 pixel down from the top of the control
7333             to improve view
7334           - InsertCharAtCharet: Update the selection start if moving the caret
7335             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
7336           - No longer always creating the caret when the caret methods are
7337             called. Only the actual ShowCaret/HideCaret will do that now
7338           - Only setting caret visible if the owner control has focus
7339           - UpdateView: Added invalidation-shortcut logic for center and right 
7340             aligned text. Previously we'd update all according to the left
7341             logic which caused drawing errors. Also fixed height of invalidated
7342             areas, now properly invalidating the whole area (was off-by-one)
7343           - owner_HandleCreated: Always generate the document when the
7344             handle is created; this ensures that 
7345         * TextBoxBase.cs:
7346           - Fixed situation where caret would disappear under the right
7347             window border, also improved scrolling behaviour on left-
7348             aligned textboxes
7349           - Fixed right-aligned textboxes to have a border to the
7350             right instead of the caret being under the right border
7351         * XplatUIX11.cs:
7352           - Switched from 'nested' to simple visible/not visible tracking 
7353             for caret (part of fix for #77671)
7354           - No longer passing through translated FocusIn/FocusOut messages
7355             since we were notifying too often and the wrong windows. Instead
7356             we just notify our focussed window of receiving or loosing focus
7357         * XplatUIWin32.cs: Switched from 'nested' show/hide 
7358           counting for caret to simple visible yes/no behaviour (part of 
7359           fix for #77671)
7361 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
7363         * Mime.cs: Remove debug code...
7365 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
7367         * MimeGenerated.cs: Removed
7368         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
7369           and subclasses) from /usr/(local/)share/mime and
7370           $HOME/.local/share/mime.
7372 2006-03-10  Jackson Harper  <jackson@ximian.com>
7374         * MdiWindowManager.cs: Recalc the NC area when a window is
7375         maximized/restored so that the menu area is drawn on forms that
7376         don't have a menu.
7378 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
7380         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
7381           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
7382           us to force a WM_NCCALCRESIZE message being sent. This is needed
7383           for MDI maximizing.
7385 2006-03-10  Jackson Harper  <jackson@ximian.com>
7387         * Form.cs: We need to use the ActiveMenu when calculating menu
7388         height.
7389         - Fix nullref when the window manager hasn't been created yet.
7390         * Control.cs: Fix nullref when we try to bring a control to the
7391         front that has no parent.
7392         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
7393         height.
7394         - Add a dummy item to the maximized menu so it always has the
7395         correct height. Otherwise when there are no menus we don't get our
7396         icon and buttons.
7397         
7399 2006-03-10  Jackson Harper  <jackson@ximian.com>
7401         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
7402         stuff.
7403         * Form.cs: Make the window_state internal so the window managers
7404         can track it.
7405         - When an MDI child is maximized let its window manager create the
7406         main menu (so it can add its icon).
7407         - Notify the window managers of state changes
7408         - Let the window manager paint its buttons and handle button
7409         clicks on the menu when it is maximized.
7410         * InternalWindowManager.cs: Move the prev_bounds into the mdi
7411         window manager, since tool windows don't use it, only mdi windows.
7412         - Tell the main form that we don't want it to handle NCPAINT
7413         itself to avoid extra painting.
7414         - Handle clicks on a maximized windows menu.
7415         - Handle window state changes
7416         - Handle minimize/maximize clicks correctly by setting the window state.
7417         * MdiWindowManager.cs: Add an icon menu that (the menu you get
7418         when clicking on the forms icon).
7419         - New method to create a forms maximized menu. This is its normal
7420         menu + an icon.
7421         - Handle window state changes.
7422         - Handle sizing of maximized windows.  Maximized windows are just
7423         drawn bigger then the parent visible area. All controls are still
7424         there, they are just outside the visible area (this matches windows).
7425         * MdiClient.cs: No scrollbars when a child window is maximized.
7426         - Let the children windows figure out how big they should be when
7427         sizing maximized windows.
7428         - Implement a version of ArrangeIconicWindows somewhat similar to
7429         Windows version.  There are some little differences, but I don't
7430         think any app will rely on the layout of minimized mdi windows.
7432 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
7434         * Padding.cs: Several fixes to allow compiling with csc 2.0
7436 2006-03-09  Jackson Harper  <jackson@ximian.com>
7438         * Menu.cs:
7439         * MenuItem.cs: Cheap hack so we can add items to the list without
7440         the events being raised.  This allows adding mdi items during
7441         drawing. TODO: Should probably find a better time to add the items.
7443 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
7445         * ThemeWin32Classic.cs:
7446           - CheckBox_DrawText: Added logic to not wrap if not enough space
7447             is available (Fix for bug #77727)
7448           - RadioButton_DrawText: Added logic not to wrap if not enough
7449             space is available (Fix for bug #77727). Also removed some
7450             duplicate code, DrawString always drawing the regular text
7451             before hitting the if statement.
7453 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
7455         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
7457 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
7459         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
7460         * ContainerControl.cs: Partial implementation of some 2.0 scaling
7461           methods. Moved the new 2.0 properties into alphabetical order with
7462           other properties and added MonoTODO tags
7464 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
7466         * AutoScaleMode.cs: Added. Fix build.
7468 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
7470         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
7471           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
7472           and was requiring premature handle creation for calls from above
7473         * Form.cs, Control.cs: Removed handle arguments from calls to
7474           CalculateClientRect()
7476 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
7478         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
7479           drag_column.column_rect is MarshalByRef and can't be used that way
7481 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
7483         * AxHost.cs: Added deserialization constructor for 
7484           AxHost+State (fixes 77743)
7486 2006-03-09  Mike Kestner  <mkestner@novell.com>
7488         * ListView.cs: 
7489         - Added column drag reordering for details view.
7490         - fixed behavior when mouse is dragged off column and
7491         AllowColumnReorder is false.
7492         * ColumnHeader.cs: clone the format too in Clone.
7493         * Theme.cs: add DrawListViewHeaderDragDetails method.
7494         * ThemeWin32Classic.cs:
7495         - impl new method for drawing drag column shadows and targets.
7496         - support column offset for details mode in DrawListViewItem.
7498 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
7500         * TextControl.cs: Reset the char_count when the document is cleared
7501           (Fixes bug reported on mono-winforms mailing list)
7503 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
7505         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
7506           of calling base we simply process the key ourselves, since both
7507           DefWindowProc and the handled method would set m.Result. 
7508           (Fixes #77732)
7510 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
7512         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
7513           method also moves the window; instead implemented a copy of
7514           Control.ScaleCore (Part of fix for #77456)
7515         * TextBoxBase.cs: 
7516           - Created new CreateGraphicsInternal method to allow providing
7517             a graphics context when no handle is created without triggering
7518             handle creation. (Part of fix for #77456)
7519           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
7520         * TextControl.cs: 
7521           - Switched Constructor to require TextBoxBase instead of Control (to
7522             allow uncast access to CreateGraphicsInternal)
7523           - Safeguarded use of owner.Handle property. No longer accessing it
7524             unless the handle is already created.
7525           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
7526           - Now triggering a recalc when owning control becomes visible
7527         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
7528           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
7529           premature handle creation (Part of fix for #77456)
7530         * Control.cs:
7531           - We now only destroy our double-buffering buffers when the
7532             control is resized or disposed, but not when visibility
7533             changes. (The code even re-created them twice every time)
7534           - Now requiring a redraw of the buffer on visibility changes
7535             (fixes bug 77654 part 2)
7536           - Not passing OnParentVisibleChanged up unless the control
7537             is visible
7538           - CanFocus: Fixed to match MS documentation
7539           - Focus: Fixed to return actual focus state and to check if
7540             setting focus is legal before setting it
7542 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
7544         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
7545           when to draw focus rectangle by looking at parent focus and
7546           selected state instead. This fixes TabPages on Linux sometimes
7547           having none or multiple focus rectangles.
7548         * XplatUIX11.cs (SetFocus): 
7549           - Don't set the focus if the same window already has focus
7550           - Use SendMessage instead of PostMessage (like it's Win32
7551             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
7552             to match MS behaviour
7553         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
7554           are not selectable.
7556 2006-03-07  Jackson Harper  <jackson@ximian.com>
7558         * PictureBox.cs: Revert line I accidently committed last week.
7560 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
7562         * Control.cs: 
7563           - Added new IsRecreating and ParentIsRecreating properties to
7564             allow testing if RecreateHandle has been called on ourselves
7565             or one of our parents
7566           - WndProc(WM_DESTROY): If our control handle is being recreated
7567             we immediately need to create the handle when receiving the
7568             destroy, that way our child windows find a valid parent handle
7569             when they themselves are being recreated upon WM_DESTROY receipt
7570             (fix for bug #77654 part 1)
7571         * XplatUIX11.cs:
7572           - DestroyWindow: WM_DESTROY must be sent to our own window before
7573             notifying any child windows. MS documents that child windows
7574             are still valid when WM_DESTROY is received. (Control now relies on
7575             this behaviour)
7576           - Added some fine-grain debug options
7578 2006-03-06  Jackson Harper  <jackson@ximian.com>
7580         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
7581         box and base calculations off this.
7582         * MdiChildContext.cs:
7583         * MdiWindowManager.cs: Don't need to ensure scrollbars here
7584         anymore.
7585         
7586 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
7588         * Splitter.cs: In situations where the affected control is added
7589           to the parent's control list after the splitter, we would not
7590           populate affected. Now we try populating it on mousedown, if
7591           it's not already set, and force it to be re-set whenever our
7592           parent changes.
7594 2006-03-03  Matt Hargett  <matt@use.net>
7596         * Control.cs: implement Control.Padding
7597         * Padding.cs: -Padding.All returns -1 when constructing with the
7598         implicit default ctor
7599         -Padding.ToString() matches MS.NET
7600         * ContainerControl.cs: implement
7601         ContainerControl.AutoScaleDimensions
7602         * ListControl.cs: implement ListControl.FormattingEnabled
7603         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
7604         * ButtonBase.cs:
7605         * TabPage.cs: Implement UseVisualStyleBackColor.
7606         * PictureBox.cs: Implement PictureBox.InitialImage.
7608 2006-03-03  Mike Kestner  <mkestner@novell.com>
7610         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
7611         event declarations to proxy to base event.
7612         * ListViewItem.cs: update to use ItemControl.
7613         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
7614         * ThemeWin32Classic.cs: update to new ListView theme API and fix
7615         column header label rendering for 0 width columns.
7617 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
7619         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
7620           that causes the control to be created. Fixes #77476.
7622 2006-03-02  Jackson Harper  <jackson@ximian.com>
7624         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
7625         expose_pending.
7627 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
7629         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
7630           passed in for the EventArgs (fixes #77690)
7632 2006-03-01  Jackson Harper  <jackson@ximian.com>
7634         * ScrollBar.cs: Refresh afterbeing resized.
7636 2006-02-28  Mike Kestner  <mkestner@novell.com>
7638         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
7639         Clean up a tracker compile warning.
7640         * MenuItem.cs: add internal PerformPopup method.
7641         [Fixes #77457]
7643 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
7645         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
7646           implicit expose) when the text is set to null
7648 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
7650         * RichTextBox.cs (FlushText): When newline is true, we always
7651           need to split the line, even if no text is on it and we may
7652           never eat newlines. (Fixes #77669)
7654 2006-02-28  Mike Kestner  <mkestner@novell.com>
7656         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
7657         and set Selected instead.
7658         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
7659         collections.
7661 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
7663         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
7665 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
7667         * FontDialog.cs:
7668           - Got rid of the panel. All controls are now directly added to
7669             the dialog form
7670           - It is now possible to set a font with the Font property
7671           - MinSize and MaxSize property do now what they should
7672           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
7673           - Searching and selecting a font with the font textbox works now,
7674             the same applies to the style and size textbox
7675           - Draw the correct 3D border in the example panel
7676           - Fixed a little mem leak (unused fonts didn't get disposed)
7677           - Many other internal updates/rewrites...
7678           - Fix typo
7680 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
7682         * TextControl.cs: 
7683           - InsertRTFFromStream: Added 'number of characters inserted' argument
7684           - set_SelectedRTF: Now using the number of characters to calculate
7685             the new location for the selection and cursor (x/y cannot be used
7686             due to potentially already wrapped text)
7688 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
7690         * TextControl.cs: Added property and implemented means to allow 
7691           disabling recalculation of a document (can be used to speed up
7692           multiple inserts and is needed to make RTF inserts predictable, see
7693           bug #77659)
7694         * RichTextBox.cs: Using the new NoRecalc property of Document to
7695           keep x/y insert locations predictable. Also makes it faster inserting
7696           large chunks of RTF
7698 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
7700         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
7701           it's easier for a child control to handle the other messages without
7702           having to duplicate the special functionality
7703         * TextBoxBase.cs
7704           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
7705             code to handle processing the key ourselves, in order to get 
7706             access to the result of KeyEventArgs.Handled. We now only call 
7707             ProcessKey if they key hasn't been handled already. Fixes #77526.
7708           - set_Text: If null or empty string is given, just clear the 
7709             document. Fixes part of #77526
7711 2006-02-27  Jackson Harper  <jackson@ximian.com>
7713         * SizeGrip.cs: Paint the background color before painting the grip
7714         so things look right.
7715         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
7717 2006-02-27  Mike Kestner  <mkestner@novell.com>
7719         * ListView.cs:
7720           - Restructure layout and invalidation model to remove a ton of
7721           flicker from the control and speed up performance in general.
7722           - Add manual column resize, flickers like crazy, but I already have
7723           some ideas on how I'll fix that. (#76822)
7724           - Merge the three Icon-based views into a single layout method.
7725           - Move item selection interaction logic from the item since 
7726           interaction with the collections is more appropriate to the view.
7727           - Deselection on non-item clicks.
7728         * ListViewItem.cs:
7729           - Encapsulate most of the layout. Add some internal props to trigger
7730           layout.  Move to a model where Items invalidate themselves instead
7731           of just invalidating the whole control every time something changes.
7732           - Invalidate on Text/Caption changes.
7733           - switch to an offset based layout model to avoid having to absolute
7734           position every element on item moves.
7735           - correct checkbox layout to conform to MS layout.
7736         * ThemeWin32Classic.cs:
7737           - refactor some column header drawing code.
7738           - fix string justification for column headers (#76821)
7739           - make SmallIcon labels top justified for compat with MS impl.
7740         * ThemeClearlooks.cs:
7741           - adjust to new ListViewItem internal checkbox bounds api.
7743 2006-02-27  Jackson Harper  <jackson@ximian.com>
7745         * Control.cs:  Change where implicit controls fall in the zorder.
7746         They are now on top of all children.
7747         - Synced AddImplicit code with Add
7748         - Removed unused enumerator.
7749         * SizeGrip.cs: Remove the TODO as its been TODONE.
7751 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
7753         * TextControl.cs(Insert): Combine the last lines unless the insertion
7754           string ends with \n\n, otherwise we leave one line too many (Fixes
7755           something I noticed with the testapp for #77526; the bug itself was
7756           already fixed in the previous checkin)
7758 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
7760         * RichTextBox.cs:
7761           - SelectionColor and SelectionFont methods no longer set absolute
7762             styles. Instead, the keep font or color respectively (This 
7763             resolves a long-standing FIXME in the code)
7764           - When flushing RTF text, the insert code now considers text trailing
7765             behind the insertion point (Fixes the bug where when replacing
7766             the selected text via SelectedRTF the remainder of the line behind 
7767             the selection would stay on the first insertion line)
7768         * TextBoxBase.cs:
7769           - AppendText now updates the selection points after inserting text
7770           - AppendText now ensures that the last tag (sometimes 0-length) of
7771             the document is used for the style information (Fixes part of 
7772             bug #77220)
7773         * TextControl.cs:
7774           - Created new FontDefiniton class to allow describing partial style
7775             changes
7776           - StreamLine() now takes a lines argument, to allow it to decide
7777             whether an encountered zero-length tag is the last in the document
7778             (which must be kept to not loose the font/color contained in it,
7779             for later appends)
7780           - Created Combine() and Split() methods for Marker structs, to 
7781             support marker updates due to reformatted documents (soft line
7782             wraps)
7783           - Implemented Document.CaretTag setter
7784           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
7785             of the last line (Not the cause, but also exposed by bug #77220)
7786           - Added LineTag argument to InsertString method, to allow callers
7787             to force a certain tag to be used (required to force use of the
7788             trailing zero-length tag of a document)
7789           - Now updating markers in Combine(), to avoid stale tag markers
7790           - Added some method descriptions to aid maintenance
7791           - Implemented new FormatText concept, allowing additive/subtractive
7792             formatting by only specifying the components that are to be 
7793             changed. This was needed for resolving the RTB.SelectedColor/
7794             RTB.SelectedFont fixmes
7795           - Added Break() support method to allow breaking up linetags (used
7796             for partial formatting)
7797           - Added GenerateTextFormat() method. It is used for partial 
7798             formatting and allows to generate a full font/color from given
7799             attributes and an existing tag.
7801 2006-02-26  Jackson Harper  <jackson@ximian.com>
7803         * XplatUIX11.cs:  Use the correct caption height.
7804         - Translate hittest coordinates to screen coords to match MS.
7805         * XplatUIWin32.cs: When we create MDI windows we need to reset
7806         some of the style flags, so we get a nice blank window, and can
7807         draw all the decorations ourselves.
7808         - Set a clipping rectangle on the non client paint event, the
7809         window manager drawing code needs one.
7810         * Form.cs: The window manager needs to know when the window state
7811         has been updated.
7812         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
7813         don't need to factor in border and title sizes in these
7814         methods. TODO: Remove the args and fix the call points.
7815         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
7816         properly.
7817         - Let the driver set the cursors.
7818         - Improve active window handling
7819         - Correct sizes for title bars and buttons.
7820         - Match MS drawing better
7821         * MdiWindowManager.cs: We don't need to handle border style
7822         updates specially anymore.
7823         - Check for scrollbars when windows are done moving
7824         - Handle Active properly.
7825         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
7826         correctly. I am spewing the exception though, so we don't hide the
7827         bugs.
7828         
7829 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
7831         * DataGridViewRowPostPaintEventArgs.cs,
7832           DataGridViewCellPaintingEventArgs.cs,
7833           DataGridViewRowCollection.cs,
7834           DataGridViewRowPrePaintEventArgs.cs,
7835           DataGridViewCell.cs: Clear a few warnings and implement a few
7836           exceptions that should be thrown.
7838 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
7840         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
7841           'inheriting' our parent's (non-default) cursor. (Part of
7842            the fix for #77479)
7844 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
7846         * XplatUIX11.cs: Fixed cast to make csc happy
7848 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
7850         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
7851           it's for the client area (part of fix for #77479 and needed
7852           for MDI window cursor handling)
7853         * XplatUIX11.cs
7854           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
7855             the appropriate default cursors and also passing the message
7856             up the parent chain 
7857           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
7858             for non-client areas
7860 2006-02-15  Jackson Harper  <jackson@ximian.com>
7862         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
7863         is a real MDI window
7865 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
7867         * X11DesktopColors.cs: Instead of checking the desktop session
7868           string for "KDE" check if it starts with "KDE"
7870 2006-02-10  Jackson Harper  <jackson@ximian.com>
7872         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
7873         systems).
7875 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
7877         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
7878           errors
7879         * ColorDialog.cs:
7880           - Got rid of the panel. All controls are now directly added to
7881             the dialog form
7882           - Changed to mono coding style
7884 2006-02-10  Jackson Harper  <jackson@ximian.com>
7886         * InternalWindowManager.cs: We don't need the set visibility to
7887         false hack anymore now that peter has written beautiful shutdown
7888         code.
7890 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
7892         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
7893           where already explicitly destroyed
7895 2006-02-10  Jackson Harper  <jackson@ximian.com>
7897         * MdiClient.cs: Handle the case where windows are too high or to
7898         the left and we need scrollbars.
7900 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
7902         * MimeIcon.cs: Added some icons
7903         * FileDialog.cs:
7904           - Fixed bug #77477
7905           - Got rid of the panel. All controls are now directly added to
7906             the dialog form
7907           - Changed to mono coding style
7908           - On Linux "My Computer" and "My Network" will now show some
7909             more usefull information. A new class, MasterMount, gathers
7910             this information from /proc/mount. Updated MWFFileView to make
7911             use of this information
7912           - Fixed a bug that caused FileDialog to crash when
7913             ".recently_used" file had a zero size
7914           - FilterIndex does now what it should
7915           - Some Refactoring
7916         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
7917             FileDialog changes
7919 2006-02-09  Jackson Harper  <jackson@ximian.com>
7921         * ComboBox.cs: Don't touch if null.
7923 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
7925         * Cursor.cs: 64bit safeness fix
7926         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
7928 2006-02-09  Jackson Harper  <jackson@ximian.com>
7930         * Form.cs: If a form is made into an MDI form update the styles so
7931         all the props can get set correctly.
7932         - Kill the mdi_container when we dont need it anymore.
7933         * InternalWindowManager.cs: Add missing NOT
7935 2006-02-08  Jackson Harper  <jackson@ximian.com>
7937         * InternalWindowManager.cs: Respek clipping when drawing MDi
7938         decorations.
7940 2006-02-08  Jackson Harper  <jackson@ximian.com>
7942         * Hwnd.cs: Add bits to track non client expose events.
7943         * XplatUIX11.cs: Track non client expose events on the hwnd. This
7944         gives us a proper invalid rect and will allow for some nice
7945         optimizations with NC client drawing
7946         - MDI windows are children windows, so move their style handling
7947         into the child window block.
7948         * InternalWindowManager.cs: Remove a state reset that was
7949         getting invoked at the wrong time. Fixes managed windows getting
7950         into a 'stuck' captured state.
7952 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
7954         * TextControl.cs (Document.ctor): Now initializing 
7955           selection_anchor. Fixes #77493
7957 2006-02-07  Jackson Harper  <jackson@ximian.com>
7959         * TrackBar.cs: The increment/decrements were backwards.
7961 2006-02-07  Mike Kestner  <mkestner@novell.com>
7963         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
7964         to the instance itself.
7966 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
7968         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
7969           on ulongs and pointers, the size differs between 32bit and 64bit
7970           systems. 
7972 2006-02-07  Mike Kestner  <mkestner@novell.com>
7974         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
7975         for 64 bit platforms to work around a metacity bug. 
7977 2006-02-07  Jackson Harper  <jackson@ximian.com>
7979         * TrackBar.cs: Process the input keys we need, and hookup to
7980         KeyDown instead of using WndProc, so we get key messages.
7982 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
7984         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
7985           machine we're on. 
7986         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
7987           we need to translate the XdndVersion atoms array before sending it
7989 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
7991         * XplatUIX11.cs: 
7992           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
7993             number of bits for the property, not the number of bytes. The
7994             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
7995             but would not crash since it specified 8 bits instead of 4 bits)
7996           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
7997             defined as XID -> long in the C headers)
7998           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
7999             references since those are now IntPtr to begin with
8000           - Switched all Atom.XXX 'int' casts to IntPtr casts
8001           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
8002           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
8003           - Added XChangeActivePointerGrab DllImport (for X11DnD)
8004         * X11Structs.cs:
8005           - Changed 'int' type for Atoms in XEvent structures to IntPtr
8006           - Changed atom in HoverStruct to be IntPtr
8007         * X11DnD.cs:
8008           - Removed local DllImports, switched code to use those from XplatUIX11
8009           - Removed/fixed casts related to the switch of Atom to be a IntPtr
8011 2006-02-06  Mike Kestner  <mkestner@novell.com>
8013         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
8014         method signatures in the import region.  There may still be some
8015         lingering struct marshaling issues, as I didn't drill down into those.
8016         Yet.
8018 2006-02-06  Jackson Harper  <jackson@ximian.com>
8020         * ComboBox.cs: Dont manually set the top_item, this is computed
8021         when the scrollbar position is set.
8023 2006-02-06  Mike Kestner  <mkestner@novell.com>
8025         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
8026         startup crashes on amd64.  There's other fixes needed.  All pinvoke
8027         usage of Atom needs to be mapped to IntPtr for example.  And there are
8028         likely other int/long issues to be addressed.
8030 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
8032         * FileDialog.cs: One more...
8034 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
8036         * FileDialog.cs: Next try
8038 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
8040         * FileDialog.cs: First part of fix for #77464
8042 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
8044         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
8045           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
8046           AcceptButton border drawing.
8048 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
8050         * Form.cs: Moved positioning of form after auto scaling is applied,
8051           otherwise it would possibly use wrong form size.
8053 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
8055         * Control.cs (RecreateHandle): No need to re-create any child
8056           controls, the child windows will get destroyed automatically by
8057           the windowing system or driver, and re-created when the handle
8058           is being accessed the first time. Fixes #77456
8059         * Form.cs: No longer setting the form to closing if the handle is 
8060           being recreated. This seems like the right thing to do, don't
8061           have a bug or testcase for this, though.
8063 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
8065         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
8066           controls to avoid unwanted side effects
8068 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
8070         * Control.cs: 
8071           - ScaleCore needs to scale the bounds, not the ClientSize of the 
8072             control. Fixes #77416.
8073           - DefaultSize is 0,0 for control
8074         * TextBoxBase.cs: 
8075           - DefaultSize is 100, 20
8076           - SetBoundsCore: Now enforcing the height, no matter if the provided
8077             height is more or less than the preferred one, as long as AutoSize
8078             is on
8079         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
8081 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
8083         * Control.cs:
8084           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
8085             call unless both performLayout is true *and* we have a pending
8086             layout change
8087           - ResumeLayout: MS does not completely nest Suspend and Resume,
8088             they bottom out at 0, fixed our code to match that.
8089           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
8090             SetBoundsCore, we were updating even when we shouldn't. This fixes
8091             swf-anchors mis-anchoring when resizing the app fast and lots.
8092           - UpdateDistances: Now only setting the left and top distance if 
8093             we have a parent and are not suspended, this is based on
8094             a suggestion by Don Edvaldson in bug #77355.
8095           - OnVisibleChanged: Fixed logic when to create the control. We may
8096             not create the control if we have no parent or if it's not visible;
8097             switched to using Visible property instead of is_visible field 
8098             since the property also considers parent states. This fixes a bug
8099             when starting Paint.Net
8101 2006-02-02  Jackson Harper  <jackson@ximian.com>
8103         * Form.cs: If the forms handle hasn't been created yet don't call
8104         into xplatui to make it top most, just set the topmost flag on the
8105         form in CreateParams
8106         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
8108 2006-02-01  Jackson Harper  <jackson@ximian.com>
8110         * ScrollableControl.cs: Refactored the Recalculate method a
8111         little, this wasn't handling all the variants of bottom and right
8112         bars needed to be added and added/removed based on their
8113         counterparts being added/removed (which changes the drawable
8114         size). Also we special case client widths and heights of 0 and
8115         don't add the scrollbar for those.
8117 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
8119         * XplatUIX11.cs: 
8120           - Added method to get AbsoluteGeometry(); currently unused, but might
8121             be used in the future, if we try again to figure out toplevel
8122             coordinates with some more crappy window managers
8123           - Added FrameExtents() method to retrieve the WM set decoration size
8124           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
8125             to deal with at least KDE, FVWM and metacity (Fixes #77092)
8126         * Hwnd.cs: 
8127           - Added whacky_wm tracking var for metacity
8128           - Added logic to have default menu height if the actual menu height
8129             has not yet been calculated (part of fix for #77426)
8130         * Form.cs: Keep track whether client size has been set and re-set 
8131           it if a menu is added/removed afterwards (Fixes #77426)
8133 2006-01-31  Jackson Harper  <jackson@ximian.com>
8135         * Control.cs: When a new Site is set on the component attempt to
8136         pull the AmbientProperties from it.
8138 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
8140         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
8141           in the background of the owning form. Fixes #77332
8143 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
8145         * MimeIcon.cs: Fix for #77409
8147 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
8149         * XplatUIX11GTK.cs: Initial import
8151 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
8153         * FixedSizeTextBox: fixes class signature
8155 2006-01-30  Jackson Harper  <jackson@ximian.com>
8157         * FixedSizeTextBox.cs: New internal class that represents a
8158         textBox that will not be scaled.
8159         * TreeView.cs:
8160         * ComboBox.cs:
8161         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
8162         standard TextBox.
8163                 
8164 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
8166         * XplatUIX11.cs: Retrieve default screen number instead of
8167           assuming 0. Attempted fix for #77318
8169 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
8171         * XplatUIWin32.cs: 
8172           - GetWindowPos: When a window is parented by FosterParent, use 
8173             the desktop instead of FosterParent as the base to get coordinates
8174           - CreateWindow: Don't make FosterParent the parent window for Popups
8175             if we don't want a taskbar entry, Popups automatically don't get one
8176         * Hwnd.cs: Need to call remove to actually remove the key from the
8177           hash table
8179 2006-01-30  Mike Kestner  <mkestner@novell.com>
8181         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
8183 2006-01-30  Jackson Harper  <jackson@ximian.com>
8185         * TreeView.cs:
8186         * TreeNode.cs: Raise events no matter how the treenode is
8187         checked. Patch by Don Edvalson.
8189 2006-01-30  Jackson Harper  <jackson@ximian.com>
8191         * TreeNode.cs: Signature fix.
8193 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
8195         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
8197 2006-01-20  Mike Kestner  <mkestner@novell.com>
8199         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
8200         event forwarding when menus are active.
8201         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
8202         Most of the patch is pdb's with a little rework.
8204 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
8206         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
8207           Removed GetMenuDC and ReleaseMenuDC methods; replaced
8208           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
8209         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
8210         * InternalWindowManager.cs: Added use of PaintEventStart/End to
8211           handling of WM_NCPAINT message, now passing the PaintEventArgs to
8212           the PaintWindowDecorations method
8213         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
8214         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
8215         * MenuAPI.cs: Made tracker window invisible
8216         * XplatUIWin32.cs:
8217           - Removed GetMenuDC and ReleaseMenuDC methods
8218           - Implemented the client=false path for PaintEventStart and
8219             PaintEventEnd
8221 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
8223         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
8224         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
8225           styles
8226         * Form.cs: 
8227           - MaximizeBox, MinimizeBox: Recreate the handle when setting
8228             the style
8229           - CreateParams: Reworked the styles to match MS look'n'feel,
8230             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
8231             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
8233 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
8235         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
8236           window is not mapped, since otherwise every form that's being 
8237           created is considered minimized, which is wrong.
8238         * Form.cs: Catching the exception and returning our internal value
8239           instead
8241 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
8243         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
8244           SetWindowMinMax() to have means to tell the driver about the minimum,
8245           maximum and maximized state window sizes. (Part of the fix for #76485)
8246         * Form.cs:
8247           - Implemented tracking of minimum and maximum window size, now calling
8248             new SetWindowMinMax() driver method to tell the driver (Part of the
8249             fix for #76485)
8250           - Finished handling of WM_GETMINMAXINFO method, now setting all values
8251             (Completes fix for #76485)
8252           - Calling new SetWindowMinMax driver method when the handle for a 
8253             form is created, to make sure the driver knows about it even if
8254             the values have been set before the window was created
8255           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
8256             to avoid messing up our anchoring calculations (partial fix
8257             for #77355)
8258         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
8259         * XplatUIX11.cs:
8260           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
8261           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
8262             (and presumably other freedesktop.org compliant WMs). Left the
8263             assumption unmapped=minimized, needed for SetVisible to work.
8264           - Now setting the window state when creating windows
8265           - Fixed SetVisible to consider/set the window state when mapping
8266             a Form. We cannot set the state before it's mapped, and we cannot
8267             use Form.WindowState once it's mapped (since it would ask the
8268             driver and get 'normal'. Therefore, we grab the state before
8269             mapping, map, and then set state.
8270           - Implmemented SetWindowMinMax method; Metacity does not seem to
8271             honor the ZoomHints, though.
8272         * XplatUIWin32.cs:
8273           - Removed MINMAXINFO (moved to XplatUIStructs)
8274           - Added SetWindowMinMax stub (on Win32 the only way to set that
8275             information is in response to the WM_GETMINMAXINFO message, which
8276             is handled in Form.cs)
8277           - Added logic to SetVisible to set the proper window state when a 
8278             form is made visible (fixes #75720)
8280 2006-01-26  Jackson Harper  <jackson@ximian.com>
8282         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
8283         same way we handle them with Invoke.
8285 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
8287         * Form.cs:
8288           - Added tracking of window state so CreateParams can return
8289             the appropriate style
8290           - Moved setting of WS_CAPTION style in CreateParams to allow
8291             styles without caption
8292         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
8293           control if the TextBox property is accessed. Fixes #77345
8294         * Control.cs:
8295           - get_Created: now uses is_disposed and is_created to determine
8296             return value (suggested by Jackson)
8297           - CreateHandle: No longer exits if the handle is being recreated
8298           - RecreateHandle: If the handle is not yet created call the 
8299             appropriate method to create either control or handle. If the
8300             control is already created CreateHandle will simply exit instead
8301             of just creating the handle
8302         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
8303           now SendMessage WM_DESTROY directly to the control when DestroyWindow
8304           is called.
8305         * XplatUIX11.cs: 
8306           - When DestroyWindow is called, instead of waiting for the 
8307             DestroyNotification from X11, we directly post it to the WndProc
8308             and immediately dispose the hwnd object.
8309             Same applies to DestroyChildWindows, and this obsoletes the
8310             expose_pending tracking. Contrary to Win32 behaviour we destroy our
8311             child windows before our own, to avoid X11 errors.
8312           - Removed the direct sending of WM_PAINT on UpdateWindow
8313         * XplatUIWin32.cs:
8314           - Reworked DoEvents and GetMessage to allow access to internal queue
8315             even when trying non-blocking access to the queue.  Fixes #77335. 
8316             Based on a patch suggestion by Don Edvalson. The new private
8317             GetMessage can now also be used as a backend for a PeekMessage
8318             frontend version.
8319         * XplatUI.cs: Improved debug output for CreateWindow
8321 2006-01-25  Jackson Harper  <jackson@ximian.com>
8323         * Help.cs: Allow param to be null. Patch by Don Edvalson.
8325 2006-01-24  Jackson Harper  <jackson@ximian.com>
8327         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
8328         when we have a MaxDropItems lower then the selected index.
8330 2006-01-24  Jackson Harper  <jackson@ximian.com>
8332         * Control.cs: Don't allow selection of non visible controls, allow
8333         selection of controls without parents.
8335 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
8337         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
8338         * DataGridDrawingLogic.cs: Add editing row only when is necessary
8340 2006-01-23  Jackson Harper  <jackson@ximian.com>
8342         * UpDownBase.cs: Make the textbox handle all the selection and
8343         tabbing. This fixes tabing to updown controls.
8345 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
8347         * TextBoxBase.cs: fixes exception thown the object was null
8349 2006-01-23  Jackson Harper  <jackson@ximian.com>
8351         * ButtonBase.cs: Just use the base CreateParams. They set
8352         visibility and enabled correctly.
8353         * ComboBox.cs:
8354         * TrackBar.cs:
8355         * MonthCalendar.cs: Lets let the base set as much of the
8356         createparams as possible so we don't have duplicate code all over
8357         the place.
8359 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
8361         * ThemeGtk.cs: Added TrackBar and some experimental code to
8362           get double buffering back
8364 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
8366         * DataGrid.cs: Allows row number set internally higher than the last
8367         when creating a new row. Restores the editing functionality.
8369 2006-01-20  Mike Kestner  <mkestner@novell.com>
8371         * MimeIcon.cs: delay Image creation until the icons are accessed
8372         instead of creating 190 scaled images on GnomeHandler startup.
8374 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
8376         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
8377           first call base before processing the event. Fixes #77279
8379 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
8381         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
8382           that the stride for the GDI bitmap would match the stride of
8383           a DIB or a Cursor.
8385 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
8387         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
8389 2006-01-19  Jackson Harper  <jackson@ximian.com>
8391         * ComboBox.cs: Hookup the text controls keydown event so we get
8392         those when the text control has the focus.
8394 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
8396         * Label.cs: Now using the base events instead of defining new ones;
8397           this allows us to just call the base properties without having to
8398           duplicate all base property logic 
8400 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
8402         * Label.cs: A label by default is not a tabstop (Fixes one of our
8403           failing nunit tests)
8405 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
8407         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
8408         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
8410 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
8412         * Cursor.cs: Reimplemented creating cursor bitmaps without using
8413           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
8414           This fixes #77218
8415         * XplatUIWin32.cs: 
8416           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
8417             constructor creates images that can't be saved. Part of the fix
8418             for #76103
8419           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
8420           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
8421             bug fix for handling window state in forms properly)
8423 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
8425         * ThemeGtk.cs: Simplify ScrollBar drawing
8427 2006-01-18  Jackson Harper  <jackson@ximian.com>
8429         * Splitter.cs: Set the default dock style for the splitter control
8430         in the constructor.
8432 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
8434         * ThemeGtk.cs: Corrected StateType and ShadowType for
8435           gtk_paint_box
8437 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
8439         * Control.cs: Make use of Theme.DoubleBufferingSupported
8440         * ThemeGtk.cs:
8441           - Added drawing for flat style buttons
8442           - Added ScrollBar drawing
8444 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
8446         * ThemeClearlooks.cs: Removed some unneeded code.
8447         * ThemeGtk.cs: First part of ThemeGtk enhancements.
8449 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
8451         * LinkLabel.cs: We need to update the hover drawing when
8452           leaving the control as well.
8454 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
8456         * DataGrid.cs: Clicking on non empty areas in the columns
8457            area was giving an exception
8459 2006-01-17  Jackson Harper  <jackson@ximian.com>
8461         * ThemeWin32Classic.cs:
8462         * ListView.cs: Do not draw/clip the headers when the header style
8463         is None.
8465 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
8467         * DataGrid.cs: Fixes 77260
8468         
8469 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
8471         * DataGrid.cs: Clicking on a column on a empty grid was giving
8472           an exception
8474 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
8476         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
8477           or any keypress will crash the grid.
8479 2006-01-17  Mike Kestner  <mkestner@novell.com>
8481         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
8482         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
8483         invisible/previously-visible items.
8484         [Fixes #76909]
8486 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
8488         * ThemeClearlooks.cs:
8489         - Added CL_Draw_Button method; now other theme controls that are 
8490           not derived from button or do not have a button can draw buttons
8491           too
8492         - Updated ComboBox drawing
8493         - Beautified RadioButton drawing
8494         - Corrected drawing of bottom and left tabs
8495         - Beautified DateTimePicker and MonthCalendar
8496         - Added CPDrawButton and CPDrawRadioButton
8498 2006-01-16  Jackson Harper  <jackson@ximian.com>
8500         * ComboBox.cs: Set the initial value of the scrollbar to the
8501         current index. Reduce the numbers of refreshs and IndexOfs called.
8503 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
8505         * FileDialog.cs: When the file listview is focused hitting the
8506           backspace key moves the fileview to the parent directory
8508 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
8510         * Form.cs: 
8511           - Added RecreateHandle call when changing taskbar visibility to 
8512             trigger reparenting in Win32 driver (Fixes #75719)
8513           - If a window has minimize or maximize buttons, it cannot have
8514             a help button
8515         * XplatUIWin32.cs:
8516           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
8517             the toplevel form with FosterParent (A toolwindow not on the
8518             taskbar) (Fixes #75719)
8519           - Made FosterParent a toolwindow
8521 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
8523         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
8525 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
8527         * ToolTip.cs: If SetToolTip is called from a control and the mouse
8528           is currently over that control, make sure that tooltip_window.Text
8529           gets updated
8531 2006-01-13  Mike Kestner  <mkestner@novell.com>
8533         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
8535 2006-01-13  Jackson Harper  <jackson@ximian.com>
8537         * TreeView.cs: On MS GetNodeAt never actually factors in the X
8538         value passed.  Also redraw the selected node when we recieve
8539         focus, so tabbing between trees works correctly.
8541 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
8543         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
8544           ~/.gconf/%gconf-tree.xml, so use
8545           .gconf/desktop/gnome/interface/%gconf.xml
8547 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
8549         * TextControl.cs: Draw text in gray if control is disabled
8551 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
8553         * TreeView.cs: Draw the focus rectangle outside the highlight, to
8554           make sure it's always visible. Fixes #76680.
8556 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
8558         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
8560 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
8562         * PageSetupDialog.cs: Added.
8563         * PrintDialog.cs: Attributes.
8564         * PrintPreviewControl.cs: Updates.
8565         * PrintPreviewDialog.cs: Updates.
8566         
8567 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
8569         * Control.cs: Undid my selection check fix, since it's not needed
8570         * TextBoxBase.cs:
8571           - Now considering the presence of hscroll/vscroll when sizing
8572             vscroll/hscroll respectively. Fixed bug #77077
8573           - Added Left/Up/Down/Right to IsInputKey list to prevent
8574             ContainerControl from stealing them. This fixes what I broke
8575             with my last checkin.
8577 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
8579         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
8580           I finally understand how the property can be set without a setter :-)
8582 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
8584         * Application.cs:
8585           - Switched RunLoop to use static Message.Create to create a 
8586             Message object
8587           - Added PreProcessMessage call in runloop for keyboard events; this
8588             is part of the fix for #77219, I overlooked this originally in the
8589             MSDN doc for PreProcessMessage
8590         * Control.cs:
8591           - Removed call to PreProcessMessage from handling of keyboard 
8592             messages; it's supposed to be done in the message pump
8593           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
8594             per MSDN documentation.
8595           - IsInputChar: All chars are input chars by default; removed the 
8596             parent calling chain, MS does not document that
8597           - PreProcessMessage: If IsInputChar is true, we want to return false
8598             to allow dispatching of the message
8599           - When selecting the next control, now also check that we're not
8600             selecting ourselves again and therefore return a false positive.
8601         * TextBoxBase.cs:
8602           - Tried to match return values for IsInputKey and ProcessDialogKey
8603             to what MS returns; moved processing of our special keys outside
8604             ProcessDialogKey since MS does not seem to return true on those.
8605           - Moved code that previously was in ProcessDialogKey into new private
8606             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
8607           - Reworked handling of WM_CHAR to not have to duplicate code from
8608             Control.cs anymore, instead we simply call down to base.
8609            
8610 2006-01-12  Jackson Harper  <jackson@ximian.com>
8612         * ComboBox.cs: We always need to refresh the text area when
8613         EndUpdate is called. Fixes the combobox in the file dialog.
8614         * Control.cs: Don't create the creator_thread until the controls
8615         handle is created.  Also in InvokeRequired we check if the
8616         creator_thread is null. This gives the effect of InvokeRequired
8617         returning true if the controls handle is not created yet, and
8618         matches MS.
8620 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
8622         * XplatUI.cs:
8623           - Added StartLoop() driver method. This is used to allow drivers to
8624             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
8625             loop for a particular thread
8626           - Added EndLoop() driver method. This is called once the message
8627             pump for the thread is shut down
8628           - Added SupportsTransparency method to allow the driver to indicate
8629             opacity support for windows
8630         * Form.cs:
8631           - Removed TODO attribute, completed AllowTransparency property
8632           - Added documented logic to Opacity
8633         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
8634           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
8635           versions of CompatibleTextRendering
8636         * X11Structs.cs: Added opacity atom to our atom enumeration
8637         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
8638           of a form might be set before it's reparented by the WM, and we need
8639           the opacity value without calling up to Form)
8640         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
8641           SupportsTransparency() driver methods
8642         * Application.cs: Now calling StartLoop and EndLoop driver methods
8643         * XplatUIX11.cs:
8644           - Added opacity atom registration
8645           - Added StartLoop()/EndLoop() methods. They're empty right now but
8646             will need to get implemented when we switch to a per-thread queue
8647           - Implemented SupportsTransparency() method
8648           - Implemented SetWindowTransparency() method
8649           - Added support for setting the opacity value when a window is
8650             reparented (since the opacity needs to be set on the WM frame)
8651         * XplatUIOSX.cs, XplatUIWin32.cs:
8652           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
8654 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
8656         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
8658 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
8660         * FileDialog.cs: Added ToolTip for MWFFileView
8661         * MimeIcon.cs: Rewrote GnomeHandler.
8662           - Get currently used gnome icon theme from
8663             ($HOME)/.gconf/%gconf-tree.xml
8664           - Make use of inherited icon themes
8665           - Support SVG icon themes like Tango via librsvg
8667 2006-01-12  Miguel de Icaza  <miguel@novell.com>
8669         Revert's Jackson's revert which broke 2.0 builds.   Fix both
8670         builds. 
8671         
8672         * Application.cs: Move the use_compatible_text_rendering outside
8673         the NET_2_0 define.  If we ever need to use the
8674         use_compatible_text_rendering on the individual controls they will
8675         access the variable from the common shared code paths.
8677 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
8679         * XplatUI.cs:
8680           - Added more granular debug options
8681           - Added method to print both window text and id
8682           - Switched debug output to use new Window() debug method
8683           - Added IsEnabled() driver method
8684           - Added EnableWindow() driver method
8685         * Form.cs:
8686           - Removed end_modal; no longer needed, new loop handles termination
8687             via 'closing' variable
8688           - If form is modal, setting DialogResult will now initiate loop
8689             termination via 'closing' variable
8690           - Added support for is_enabled/WS_DISABLED to CreateParams
8691           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
8692             does all the work
8693           - Removed code that's now in RunLoop from ShowDialog()
8694           - Added various documented sanity checks to ShowDialog()
8695           - Added handling of WM_DESTROY message; we set 'closing' on getting
8696             the message to indicate the message pump to terminate
8697           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
8698             send by the Application.ExitThread method. (We send the message
8699             to destroy the window after all other events have been
8700             processed through the queue, instead of destroying the handle 
8701             directly)
8702           - Moved code from Close() method to WM_CLOSE handler; added logic
8703             to only send close-related events if the form is not displayed
8704             modal
8705         * Splitter.cs (..ctor): Fixed typo in resource name
8706         * Control.cs:
8707           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
8708             brush now
8709           - set_Cursor: Now only setting calling into XplatUI if the handle for
8710             the control is already created; this avoids implict handle creation
8711             or crashes if it's not created
8712           - set_Enabled: Now setting the enabled state via the new driver method
8713             instead of just tracking it
8714           - CreateParams: Added logic to set WS_DISABLED based on enabled state
8715           - CreateControl: Reordered event firing and method calls to more
8716             closely fire events in the order MS does. Now setting the
8717             enabled state in the driver when creating the control.
8718           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
8719             match MS order
8720         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
8721           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
8722         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
8723         * Hwnd.cs:
8724           - Added tracking of window enabled state (get_Enabled/set_Enabled)
8725           - Added EnabledHwnd property to easily allow a driver to find the
8726             handle of the first enabled window in the parent chain (this is
8727             used by drivers to pass up input events of disabled windows)
8728         * XplatUIDriver.cs: Added IsEnabled() method
8729         * Application.cs:
8730           - Removed crude and obsolete exiting tracking variable
8731           - Removed internal ModalRun(); replaced by RunLoop()
8732           - Implemented private CloseForms() method to allow closing all 
8733             windows owned by a particular (or all) threads
8734           - Exit() now properly closes all windows without forcing the message
8735             pump to quit
8736           - Removed obsolete InternalExit() method
8737           - Changed Run() methods to use new RunLoop() message pump
8738           - Implemented new RunLoop() method for both modal and non-modal forms
8739         * CommonDialog.cs:
8740           - get_CreateParams: Added setting of WS_DISABLED
8741           - Simplified ShowDialog(); now all the work is done in RunLoop(),
8742             invoked via Form.ShowDialog()
8743         * NativeWindow.cs: We don't remove the window from the collection when
8744           the handle is destroyed; there might still be messages for it in the
8745           queue (mainly the resulting WM_DESTROY); instead it will be removed
8746           when Control calls InvalidateHandle in the WM_DESTROY handler
8747         * XplatUIX11.cs:
8748           - CreateWindow: Added logic to handle the WS_DISABLED window style
8749           - EnableWindow: Implemented based on Hwnd.Enabled
8750           - GetMessage: Reset PostQuitState so the method can be called again
8751           - Implemented support for disabled windows (passing messages to the
8752             first enabled parent) in handling all input messages
8753           - Added optimizations for handling Expose events
8754           - Implemeted new driver method IsEnabled()
8755           - Now always resetting paint pending tracking vars when we start paint
8756           - Re-implemented UpdateWindow via just sending a WM_PAINT message
8757         * XplatUIOSX.cs: Added IsEnabled method stub
8758         * XplatUIWin32.cs: Implemented new IsEnabled() method
8760 2006-01-11  Jackson Harper  <jackson@ximian.com>
8762         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
8763         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
8764         variables a little.
8765         * ColorDialog.cs: Clear out the old form before adding the new
8766         panel.  
8768 2006-01-11  Jackson Harper  <jackson@ximian.com>
8770         * X11Dnd.cs: Make sure to add all the text formats when adding
8771         strings to the data object.
8772         * TreeNodeCollection.cs: When adding to a sorted tree we need to
8773         do some redrawing too.  Also change the UpdateNode to an
8774         UpdateBelow so the newly added node gets painted.
8775         
8776 2006-01-11  Miguel de Icaza  <miguel@novell.com>
8778         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
8779         LinkLabel.cs, PropertyGrid.cs: Implement the
8780         UseCompatibleTextRendering property for 2.x
8782         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
8784 2006-01-11  Jackson Harper  <jackson@ximian.com>
8786         * TreeView.cs: Use the property for setting the selected node so
8787         the correct events get raised.
8788         * TreeNode.cs: Update the tree when the fore/back colours of a
8789         node are set.
8791 2006-01-10  Jackson Harper  <jackson@ximian.com>
8793         * TreeView.cs: Allow setting SelectedNode to null.
8795 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8797         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
8799 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8801         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
8803 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8805         * PrintDialog.cs: Added attributes and set default property values.
8807 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8809         * PrintControllerWithStatusDialog.cs: 
8810         Added PrintControllerWithStatusDialog.
8812 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8814         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
8815         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
8817 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8819         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
8821 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
8823         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
8824         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
8826 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
8828         * MimeIcon.cs: Added internal class SVGUtil.
8830 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
8832         * FileDialog.cs: Don't crash if there are two files with the
8833           same name but different locations.
8835 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
8837         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
8838         dates across multiple month grids. Used to not highlight entire 
8839         month, but does now.
8840         
8841 2006-01-06  Jackson Harper  <jackson@ximian.com>
8843         * MonthCalendar.cs: Removed DoEvents call to prevent a running
8844         message loop. Change timer intervals to numbers that seem more
8845         natural.
8847 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
8849         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
8850           object for location info since screen object is now implemented.
8852 2006-01-05  Jackson Harper  <jackson@ximian.com>
8854         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
8855         * AsyncMethodResult.cs: We no longer use a WeakReference for the
8856         AsyncMethodResult, this is because we ALWAYS want the
8857         ManualResetEvent to get set.
8858         * Control.cs: When disposing use an async invoke to call shutdown
8859         code, so that thigns don't block on the finalizer thread.  Also
8860         check if we even have a message loop before trying to send
8861         messages, if we don't then don't bother sending messages.
8862         - No more weak references for async methods
8863         * XplatUIDriver.cs: No more weak references for async methods.
8865 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
8867         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
8868           returns two FontFamily with the same name
8870 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
8872         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
8873           drawing disabled text. Instead using the ColorGrayText color
8875 2006-01-04  Jackson Harper  <jackson@ximian.com>
8877         * TreeNode.cs: redraw the node when its image index is changed.
8879 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
8881         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
8882           time I checked there are no others like it.
8884 2006-01-04  Jackson Harper  <jackson@ximian.com>
8886         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
8887         this gives the behavoir I was looking for.
8888         * Control.cs: Special case Invoking EventHandlers, this matches MS
8889         and fixes part of bug #76326.
8891 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
8893         * ThemeClearlooks.cs, FileDialog.cs:
8894           - Reflect the latest Theme class changes
8895           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
8896             with DateTime
8897             
8898 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
8900         * Theme.cs: Cache UI resource images and resize them if needed
8902 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
8904         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
8905           is called. This fixes the crash in Nexxia when setting the font
8906           attributes in the chat. [However, RTF needs a look-over to make sure
8907           that all SelectionXXX methods handle the special case that selection
8908           is empty and therefore the change must be applied to all text starting
8909           at the cursor/selection start]
8911 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
8913         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
8914           XplatUIOSX.cs: Added SendMessage and PostMessage methods
8915         * X11Keyboard.cs: Switched to new way of calling PostMessage
8917 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
8919         * Theme.cs: Added theme interface for images to allow the theme to
8920           control what images are used for things like FileDialog, MessageBox
8921           icons, etc.
8922         * MessageBox.cs: Now uses the new Theme icon/image interfaces
8924 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
8926         * FileDialog.cs:
8927           - Removed some dead code
8928           - Opening a recently used file does work now
8929           - Small UI enhancements
8930           - Refactoring
8932 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
8934         * FileDialog.cs: Forgot too add __MonoCS__
8936 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
8938         * FileDialog.cs: We are able to read recently used files now let's
8939           go on and write them.
8941 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
8943         * FileDialog.cs: Breathe some life into "last open"/"recently used"
8944           button
8945         * MimeIcon.cs: Do a check for the top level media type also
8947 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
8949         * ThemeClearlooks.cs:
8950           - Added CPDrawStringDisabled
8951           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
8952             some chars if the text doesn't fit into text_rect
8953           - DrawListViewItem: If View = View.LargeIcon center the image;
8954             rewrote the drawing of ListViewItem.Text if View = 
8955             View.LargeIcon
8957 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
8959         * MimeIcon.cs: Use default KDE icon theme if there is no
8960           "48x48" directory for the current icon theme, fixes #77114
8961         * Mime.cs: Disable not working and actually not used code. 
8962         * ThemeWin32Classic.cs:
8963           - Replace "new SolidBrush" in GetControlBackBrush and
8964             GetControlForeBrush with ResPool.GetSolidBrush
8965           - Changed DrawListViewItem from private to protected virtual
8966         * FileDialog.cs:
8967           - Added form.MaximizeBox = true
8968           - Don't throw an exception if there is a broken symbolic link
8970 2005-12-23  Jackson Harper  <jackson@ximian.com>
8972         * TabControl.cs: Give the panels focus, keyboard navigation is
8973         fixed so this works correctly now.
8974         - We need these key events also.
8975         * ToolBar.cs: Remove some of the poor mans double buffering.
8976         
8977 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
8979         * ComboBox.cs: The internal TextBox now returns the focus.
8981 2005-12-23  Jackson Harper  <jackson@ximian.com>
8983         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
8985 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
8987         * Control.cs: Removed debug code
8988         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
8989           implicit children
8991 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
8993         * Control.cs: When creating the control, update the Z-order after
8994           all it's children are created, too. (Fixes nexxia not showing
8995           picturebox bug)
8997 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
8999         * Control.cs: Do not update the anchoring distances if layout is
9000           suspended, instead do it once layout is resumed
9002 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
9004         * Control.cs: 
9005           - After many hours of debugging, for both Jackson and
9006             myself, it turns out that it helps to set the parent of a control
9007             if you want to actually see it onscreen. In the spirit of that
9008             discovery, we're now setting the parent of the control and
9009             it's children when the control's handle is created. This fix
9010             will make Lutz Roeder's Reflector run happily. 
9011           - now just creating the handle instead of the whole control when
9012             getting a graphics context for the control.
9014 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
9016         * ScrollableControl.cs: When calculating the canvas, don't consider
9017           the scrollbar widths. Instead, predict if horizontal scrollbar
9018           will affect canvas when deciding on vertical display and vice versa.
9020 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
9022         * RichTextBox.cs: Set default RTF font for documents that don't
9023           have a font table (Fixes #77076)
9025 2005-12-22  Jackson Harper  <jackson@ximian.com>
9027         * TextBoxBase.cs: It's difficult to do, but you can have an empty
9028         clipboard. This prevents a NullRef in that case.
9029         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
9030         clipboard. PRIMARY is for the currently selected text only. (We
9031         should implement PRIMARY at some point.
9033 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
9035         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
9036           a Unicode function with a structure that was defined in Ansi way.
9037           This fixes #76942.
9039 2005-12-21  Jackson Harper  <jackson@ximian.com>
9041         * StatusBar.cs: Statusbar handles its fore/back colours on it's
9042         on. Because thats how it rolls. (and this avoids it using ambient
9043         colours).
9044         * ThemeWin32Classic.cs: Use the proper back color for filling.
9045         * Menu.cs: Use the system menu bar color for drawing menu
9046         bars. Using the window back color will bring ambient colours into
9047         the picture.
9049 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
9051         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
9052           Bitmaps were created and not disposed.
9054 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
9056         * Control.cs (CreateControl): Don't do anything if the control is
9057           already created, otherwise we'd fire the OnCreated event more than
9058           once
9060 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
9062         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
9063           will always match. Instead return -1. Fixes #76464.
9065 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
9067         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
9068           neither the beginning nor the end of the line (Fixes bug #76479)
9070 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
9072         * Control.cs:
9073           - ControlNativeWindow.ControlFromHandle(): Now handling situation
9074             where handle is invalid
9075           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
9076             instead of slower linear search
9077         * NativeWindow.cs: Don't remove the window from the hashtable until
9078           after the driver has destroyed it (since the driver might use
9079           Control.FromHandle to lookup the control object
9080         * Hwnd.cs: Added DestroyPending property to track if a window is 
9081           already destroyed as far as the driver is concerned and only hasn't
9082           yet notified the control
9083         * XplatUIX11.cs:
9084           - Activate(): Check if the window is still valid before using the 
9085             handle
9086           - Implemented DestroyChildWindow() method to mark child windows as
9087             destroyed when a window is destroyed. This prevents situations 
9088             where we might call an X method based on queued events for a
9089             window that already has been destroyed but we haven't yet pulled
9090             the destroy method from the queue.
9091           - Added a call to the new DestroyChildWindow() method to the drivers
9092             DestroyWindow code. Also now marking the destroyed window itself
9093             as pending
9095 2005-12-20  Jackson Harper  <jackson@ximian.com>
9097         * StatusBar.cs:
9098         * StatusBarPanel.cs: Don't calculate panel sizes on draw
9099         anymore. Just do them when needed, also track the rects of panels
9100         so that we can optimize refreshing more in the future.
9102 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
9104         * ColorDialog.cs: Fixed focus drawing in small color controls
9106 2005-12-19  Jackson Harper  <jackson@ximian.com>
9108         * InternalWindowManager.cs:
9109         * MdiWindowManager.cs: Cleanup some coordinate system changes so
9110         moving windows works properly.
9112 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
9114         * Control.cs: 
9115           - Removed call to InitLayout() from SetBoundsCore(); doc says
9116             it's only called when a control is added to a container
9117           - Split InitLayout logic, moved to separate UpdateDistances() method
9118             since we need to perform those calculations more often than just
9119             when adding the control to a container. (Needed to fix #77022)
9120           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
9121           - Reduced the OnBindingContextChanged events count, don't send them
9122             unless the control is created, we still aren't totally matching
9123             MS, but I can't quite figure out some of their rules
9125 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
9127         * ThemeClearlooks.cs: Corrected distance between ProgressBar
9128           stripes
9130 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
9132         * ThemeClearlooks.cs:
9133           - Updated ProgressBar drawing
9134           - Corrected drawing of ScrollBars and scroll buttons
9135           - Some temporary fixes for minor pixel artefacts
9137 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
9139         * Control.cs:
9140           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
9141             cause events to be sent in the same order as MS does.
9142           - Added ChangeParent() method to trigger various OnXXXChanged events
9143             that need to be fired when a parent changes (This is a reworking
9144             of the patch from r54254, with the X11 errors fixed)
9145           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
9146             since on MS we get OnLayoutChanged events when calling Clear()
9147           - Changed Enabled property to consider parent state as well, if a
9148             parent is not enabled, the control will not be either
9149           - Changed Parent property to simply call Controls.Add() since that
9150             now does all the work required, this way we avoid code duplication
9151           - Threw in a few OnBindingsContextChanged calls to try and match
9152             when MS sends them. We seem to send a few too many, though.
9153           - Added call to CreateControl when adding the control to a parent.
9154             We were never calling CreateControl. Still needs some work, in
9155             some places we treat HandleCreated and ControlCreated as equal, 
9156             which is wrong
9157           - Removed obsolete commented out code from UpdateZOrder()
9159 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
9161         * ThemeClearlooks.cs: Updated TrackBar drawing.
9163 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
9165         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
9167 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
9169         * FileDialog.cs: Add the Help button and the open readonly
9170           checkbox only if needed
9172 2005-12-16  Jackson Harper  <jackson@ximian.com>
9174         * Control.cs: Make sure we have an active menu before trying to
9175         process commands on it. Prevents menu-less forms from crashing
9176         when Alt is pressed.
9177         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
9178         Dieter Bremes.
9179         * RichTextBox.cs: Expand statement to help out gmcs and fix the
9180         2.0 build.
9182 2005-12-16  Jackson Harper  <jackson@ximian.com>
9184         * InternalWindowManager.cs: Don't translate tool windows screen
9185         coordinates. This fixes windows 'bouncing' around when being moved.
9187 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
9189         * TextBoxBase.cs:
9190           - MaxLength now treats 2^31-1 equal to unlimited length (this is
9191             not quite MS compatible, MS uses that number only for single line
9192             and 2^32-1 for multi-line, but I figure it won't hurt keeping
9193             the limit at 2GB)
9194           - Now enforcing the MaxLength limit when entering characters
9195           - Added argument to internal Paste() method to track if it's called
9196             from programatically or via keyboard, since keyboard driven pastes
9197             need to enforce max-length
9198           - Added logic to Paste to only paste as many chars as MaxLength 
9199             allows
9200         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
9201         * TextControl.cs:
9202           - Added Length property to return number of characters in document
9203           - Added private CharCount property which only tracks actual chars
9204             in the document (no linefeeds) and fires event when CharCount
9205             changes
9206           - Added tracking of character count to all methods that alter it
9207           - Added LengthChanged event to allow applications to subscribe
9208             to any changes to the document
9210 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
9212         * TextBox.cs: 
9213           - Removed local password_char field (moved to TextBoxBase)
9214           - Now setting the document's password var when password is
9215             set
9216         * TextBoxBase.cs:
9217           - Added password_char field (needed here so MultiLine can
9218             access it)
9219           - Added logic to MultiLine property setter to set the document's
9220             variable when password display is allowed
9221           - Removed debug code and made some debug code conditional
9222         * TextControl.cs:
9223           - Added RecalculatePasswordLine() method to handle special password
9224             char only lines
9225           - Added PasswordChar property, also added related tracking vars
9226           - Draw() method now uses local text var for grabbing text to draw,
9227             this var is set to line.text unless we're doing password display,
9228             then it is set to the pre-generated all-password-chars line
9229           - Added calling RecalculatePasswordLine() method for password lines
9231 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
9233         * Hwnd.cs: 
9234           - Added Reparented property to allow tracking of Window Manager
9235             reparenting actions (which affect X/Y calculations of toplevel 
9236             windows)
9237           - Made ToString() print window handles in hex
9238         * XplatUIX11.cs:
9239           - AddConfigureNotify(): Now uses reparented state off Hwnd to
9240             determine if X/Y needs offsetting
9241           - AddConfigureNotify(): Fixed offset calculations
9242           - Now adds ReparentNotify messages into the queue
9243           - Now processes ReparentNotify messages and causes a 
9244             WM_WINDOWPOSCHANGED message to be sent upstream if a window
9245             is reparented (as most likely it's X/Y coordinates are changed
9246             due to that)
9248 2005-12-14  Jackson Harper  <jackson@ximian.com>
9250         * XplatUIX11.cs: Tool windows still need to respek focus.
9252 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
9254         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
9255           have a working release
9257 2005-12-13  Jackson Harper  <jackson@ximian.com>
9259         * Form.cs: Update styles after setting the border style regardless
9260         of whether or not the window is using a window manager.
9262 2005-12-13  Jackson Harper  <jackson@ximian.com>
9264         * Form.cs: We now hook into an internal window manager instead of just an
9265         MDI subsystem, this is so we can have properly behaving tool windows.
9266         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
9267         * InternalWindowManager.cs: New internal class that acts as a
9268         window manager for tool windows and as a base for mdi windows.
9269         * MdiWindowManager.cs: New class that acts as a window manager for
9270         mdi windows.
9272 2005-12-12  Jackson Harper  <jackson@ximian.com>
9274         * Control.cs: Updates so we match behavoir for for implicit
9275         controls. Fixes explosions in MDI.
9277 2005-12-12  Jackson Harper  <jackson@ximian.com>
9279         * Control.cs: Implement Invalidate (Region).
9281 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
9283         * Control.cs: 
9284           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
9285             the same events as MS does. MS fires events for each property 
9286             except, for unknown reasons, Cursor, when the control is reparented. 
9287             I can't seem to totally match add/remove since MS also fires some 
9288             VisibleChanged events, which makes no sense. Consolidated the
9289             parenting code into a separate method so it can be called from
9290             both Add and Remove. set_Parent no longer needs any special logic
9291             as it calls the parent's add method which implicitly fires
9292             all events
9293           - Removed some obsolete code and debug output
9294           - Enabled state is inherited from parents, if this is enabled
9296 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
9298         * Form.cs: Removed commented out code
9300 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
9302         * Control.cs:
9303           - Added internal version of Invoke, with additional argument 
9304             indicating if we're calling it from a Dispose() handler. That
9305             way we can avoid BeginInvoke throwing an exception if we're
9306             calling for an already destroyed window.
9307           - Added a dispose argument to BeginInvokeInternal, and made the
9308             check if a valid window handle chain exists conditional on
9309             it not being a dispose call
9310           - Removed code in DestroyHandle to destroy our children. Since we
9311             now handle the WM_DESTROY message we will catch all our children
9312             being destroyed.
9313           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
9314         * Form.cs:
9315           - Added a field to track the application context of the form.
9316           - No need to set closing variable as response to WM_CLOSE, instead
9317             we destroy the window. We also call PostQuitMessage if the form
9318             has an application context (which makes it the main app form,
9319             which, when closed terminates the app)
9320         * XplatUI.cs:
9321           - Dropped Exit() method, it's naming was confusing
9322           - Added PostQuitMessage() which causes GetMessage to return false
9323             once the message queue is empty
9324         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
9325           PostQuitMessage()
9326         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
9327           no longer a valid XplatUI method, but left it in since it's used
9328           internally. Added empty PostQuitMessage() method.
9329         * MenuAPI.cs: Replaced call to Exit() with call to
9330           PostQuitMessage, even though this is probably no longer needed.
9331         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
9332         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
9333         * Application.cs:
9334           - Replaced call to XplatUI.Exit() with PostQuitMessage()
9335           - Removed old debug code that would call XplatUI for exception
9336             display, enabled standard exception handling (Still not enabled
9337             though, until NativeWindow's ExternalExceptionHandler define
9338             is removed
9339         * NativeWindow.cs:
9340           - Added internal method to allow control to update NativeWindow
9341             after a window has been destroyed
9342           - Added handling of already destroyed windows when calling i
9343             DestroyWindow
9344           - Added removal of handle from list on ReleaseHandle
9345         * XplatUIX11.cs:
9346           - Dropped GetMessageResult var and related code
9347           - Added PostQuitState to field to track if PostQuitMessage has been
9348             called
9349           - Dropped Exit() method
9350           - Added PostQuitMessage() method
9351           - GetMessage now will return false if PostQuitState is set and no
9352             more messages are in the queue.
9353           - Expose handler will no longer generate WM_PAINT messages if we are
9354             in PostQuitState since it's very likely any windows have already
9355             been destroyed, and since Hwnd won't get updated until we have
9356             processed the DestroyNotify we'd be causing X errors.
9357         
9358 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9360         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
9361           Thanks to Mike for pointing out the err of my ways.
9363 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9365         * Control.cs(PreProcessMessage): Moved menu handling back, but
9366           after all other key handling, to match MS (who handles Menu in
9367           DefWndProc)
9368         * Menu.cs (WndProc): Removed my brainfart
9370 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9372         * Control.cs(PreProcessMessage): Removed special menu handling 
9373         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
9375 2005-12-07  Mike Kestner  <mkestner@novell.com>
9377         * Control.cs : special case SYSKEYUP so that we can adjust keynav
9378         state according in tracker.
9379         * Menu.cs : promote tracker field to base class and provide a tracker
9380         lookup capability.  Add/Remove shortcuts dynamically if the top menu
9381         has a tracker. Unparent items that are removed from the collection.
9382         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
9383         * Theme*.cs: add always_show_hotkeys field to support configurability
9384         of mnemonic display.  win32 doesn't show mnemonics until Alt is
9385         pressed.
9387 2005-12-07  Jackson Harper  <jackson@ximian.com>
9389         * MdiChildContext.cs: Use Control.ResetCursor.
9390         * Control.cs: ResetCursor needs to set the property so that the
9391         correct XplatUI call gets made.
9393 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9395         * Control.cs: More fixes to make our key events match MS. We
9396           were not setting the modifier state on KeyData, and we were
9397           not generating any events when Alt was pressed with a key
9398           since handling of WM_SYSxxx was missing for the OnKey methods.
9400 2005-12-07  Jackson Harper  <jackson@ximian.com>
9402         * MdiChildContext.cs: reenable the sizing code.
9403         - When the mouse leaves a window reset its cursor.
9405 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
9407         * ThemeClearlooks.cs: Reflect latest Hwnd changes
9409 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9411         * Hwnd.cs: Now using the theme 3d bordersize to calculate
9412           widths of Fixed3D borders
9414 2005-12-07  Jackson Harper  <jackson@ximian.com>
9416         * MdiClient.cs: Fix warnings. Earn Mike's love.
9418 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
9420         * ThemeClearlooks.cs:
9421           - Adjusted mouse over button color
9422           - Added first parts of CheckBox drawing
9423           - Added correct color for selected text background
9424           - Fixed ComboBox drawing
9425           - Added CPDrawBorder3D and CPDrawBorder
9427 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
9429         * XplatUIX11.cs: Added call to XBell for AudibleAlert
9431 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
9433         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
9434           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
9435           alert users via sound. We could add an enum arg with different
9436           types of alerts in the future
9438 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
9440         * Control.cs: Fix behaviour problems pointed out by Mike
9442 2005-12-05  Mike Kestner  <mkestner@novell.com>
9444         * StatusBarPanel.cs: add Invalidate method and hook it into all the
9445         prop setters.  Calls parent.Refresh for now, but could be maybe be
9446         optimized with an internal method on StatusBar at some point.
9447         [Fixes #76513]
9449 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
9451         * RichTextBox.cs: Implemented get_SelectionColor
9453 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
9455         * ThemeClearlooks.cs:
9456           - Removed dead code
9457           - Draw black button border only if button is Form.AcceptButton
9458           - Draw correct button color for pressed RadioButton if the mouse 
9459             has entered the button
9460           - Updated ProgressBar drawing!
9461           - Updated CPDrawSizeGrip drawing
9462           - Updated StatusBarPanel drawing
9464 2005-12-05  Mike Kestner  <mkestner@novell.com>
9466         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
9467         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
9469 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
9471         * ThemeClearlooks.cs: Initial check-in, activate with
9472           export MONO_THEME=clearlooks
9473         * ThemeEngine.cs: Added ThemeClearlooks
9475 2005-12-03  Mike Kestner  <mkestner@novell.com>
9477         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
9478         [Fixes #76897]
9480 2005-12-02  Jackson Harper  <jackson@ximian.com>
9482         * Form.cs: If the child form has no menu the default main menu is
9483         used as the active menu.
9485 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
9487         * ListBox.cs: Check if any items exist before trying to resolve 
9488           coordinates into items
9490 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
9492         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
9493           as the second color for the background hatch
9495 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
9497         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
9498         * RichTextBox.cs: FormatText position arguments are 1-based, now making
9499           sure that what we pass to FormatText is always 1-based. Fixes #76885
9501 2005-11-29  Miguel de Icaza  <miguel@novell.com>
9503         * NumericUpDown.cs (EndInit): When we are done initializing,
9504         reflect any updates on the UI.
9506 2005-12-02  Jackson Harper  <jackson@ximian.com>
9508         * ImplicitHScrollBar.cs:
9509         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
9510         their container controls.
9511         * TreeView.cs: Use the new implicit scrollbars.
9513 2005-12-02  Jackson Harper  <jackson@ximian.com>
9515         * TreeView.cs: Make top_node internal so the TreeNodeCollections
9516         can play with it.
9517         * TreeNodeCollection.cs: If we remove the topnode we need to
9518         update topnode to the next node in line.
9519         - When clearing nodes go through the same process as removing
9520         them, so they get depareneted and checked if they are top node.
9522 2005-12-01  Jackson Harper  <jackson@ximian.com>
9524         * TreeView.cs: When imagelists are used the image area is
9525         selectable as well as the text.
9526         - If there are no selected nodes select the first one.
9527         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
9528         so don't do it more then we need to.
9530 2005-12-01  Jackson Harper  <jackson@ximian.com>
9532         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
9533         that arrows can be scaled.
9535 2005-12-01  Jackson Harper  <jackson@ximian.com>
9537         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
9538         fail. Patch by Dieter Bremes
9540 2005-11-30  Jackson Harper  <jackson@ximian.com>
9542         * Form.cs: Property is 2.0 only
9543         * PrintDialog.cs: Signature fix.
9545 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
9547         * TextControl.cs: 
9548           - No longer artificially moves text 2 pixels down (now that we have
9549             borders this is no longer needed)
9550           - Added calcs for left, hanging and right indent
9552 2005-11-23  Mike Kestner  <mkestner@novell.com>
9554         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
9556 2005-11-30  Jackson Harper  <jackson@ximian.com>
9558         * MdiChildContext.cs: Set the cloned menus forms, as these don't
9559         get cloned as part of CloneMenu ().
9560         * Menu.cs: Make sure the parent of the items get set correctly
9561         when they are added.  And the owners are notified of the changes.
9562         * Form.cs: Create an ActiveMenu property, so that when MDI is used
9563         we can change the menu being displayed/handled by the form without
9564         changing the menu assosciated with the form.
9565         - Don't let Mdi children draw/handle menus.
9566         
9567 2005-11-30  Jackson Harper  <jackson@ximian.com>
9569         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
9570         a MenuChanged event. Just to make the API a little more
9571         consistent.
9572         * MainMenu.cs:
9573         * MenuItem.cs: Use the new OnMenuChanged
9574         * MdiChildContext.cs: Handle menu merging.
9575         * Form.cs: Implement MergedMenu.
9576         
9577 2005-11-30  Jackson Harper  <jackson@ximian.com>
9579         * Menu.cs: We were misusing Add. Add goes behind the specified
9580         index according to the docs, and does not replace the specified
9581         index. So I added an Insert method.
9583 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
9585         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
9586           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
9587           is for Jackson
9588         * RichTextBox.cs: Added calls to base for DnD events
9590 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
9592         * TextControl.cs:
9593           - Fixed drag-selection related crash; style fixes
9594           - Implemented undo class
9595             o Implemented method to capture document state for specified
9596               range in document tree
9597             o Implemented method to restore captured document state
9598             o Implemented cursor tracking
9599             o Implemented basic undo stack
9600           - Added undo cursor tracking to methods altering cursor location
9601           - Added undo tracking to selection deletion (still missing
9602             other text-altering hookups)
9603         * RichTextBox.cs:
9604           - Added SelectionLength property
9605           - Implemented CanPaste()
9606           - Implemented Paste()
9607           - Added missing protected methods
9608           - Fixed RTF->Document conversion; now uses font index 0 and color 
9609             index 0 as the default font for the parsed text
9610           - Fixed RTF<->Document font size translation
9611           - Fixed RTF generation, now properly handles cross-tag boundaries
9612             for single line selection
9613           - No longer always appends blank line to generated RTF
9614           - Removed TODOs
9615           - Added missing attributes
9616           - Hooked up undo-related methods
9617         * TextBoxBase.cs:
9618           - Implemented Copy()
9619           - Implemented Paste()
9620           - Implemented Cut()
9621           - Fixed caret mis-behaviour on backspace across line-boundaries
9623 2005-11-29  Jackson Harper  <jackson@ximian.com>
9625         * MdiClient.cs: Add a method for activating mdi children. Very
9626         basic right now. I imagine someday it might need more girth.
9627         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
9628         children windows names are added to the menu item.
9629         * ThemeWin32Classic.cs: Draw the arrow if the item is an
9630         mdilist. This happens regardless of whether or not there are any
9631         mdi windows to see in the list, and according to my tests happens
9632         before the items are even added. Also happens if there isn't even
9633         an mdi client to get windows from.
9635 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
9637         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
9638         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
9640 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
9642         * DataGridTableStyle.cs:
9643           - Create always the styles for the missing columns even if they are
9644             provided by the user (not default table style)
9645         * DataGrid.cs:
9646           - Fixes bug 76770
9647           - Fixes SetDataBinding (always re-attach source)
9648           - Fixes SetNewDataSource (only clear styles if they are not for 
9649             this source)
9650          -  Expands OnTableStylesCollectionChanged to handle style refresh 
9651             and remove properly
9653 2005-11-29  Jackson Harper  <jackson@ximian.com>
9655         * FileDialog.cs: Implement missing bits, remove some dead
9656         code.
9657         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
9658         creation of the panel so that the options set on the dialog are
9659         seen when the panel is created.
9660         * TreeView.cs: raise a click when items are clicked.
9661         
9662 2005-11-29  Jackson Harper  <jackson@ximian.com>
9664         * MdiClient.cs: Pass some signature methods through to base.
9666 2005-11-28  Jackson Harper  <jackson@ximian.com>
9668         * ListView.cs: Raise the click event when items are clicked.
9670 2005-11-28  Jackson Harper  <jackson@ximian.com>
9672         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
9673         a nullref.
9675 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
9677         * ThemeNice.cs: - Removed 1 pixel bitmaps
9678           - Use SmoothingMode.AntiAlias where it makes sense
9679             (ScrollButton arrow for example)
9680           - Enhanced Button focus drawing
9681           - Fixed ComboBox drawing (no artefacts anymore, focus
9682             rectangle is back again, reduced size of ComboButton, etc.)
9683           - Fixed RadioButton focus drawing for Appearence.Button
9684           - Slight ScrollButton redesign
9685           - Some LinearGradientBrush size fixes
9686           - GroupBoxes have now rounded edges
9687           - Fixed StatusBar drawing
9689 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
9691         * ThemeNice.cs: - Remove dead code
9692           - use correct background colors for menus, etc.
9693           - Fake pixel drawing with 1 pixel bitmaps
9695 2005-11-24  Jackson Harper  <jackson@ximian.com>
9697         * MdiClient.cs: Size the scrollbars when resizing the window.
9698         - Resize the maximized windows when the client is resized
9699         * Form.cs: Make the child context available
9700         
9701 2005-11-23  Jackson Harper  <jackson@ximian.com>
9703         * MdiChildContext.cs: Don't size windows if they are maximized.
9705 2005-11-23  Mike Kestner  <mkestner@novell.com>
9707         * ContextMenu.cs: use MenuTracker.
9708         * Control.cs: remove menu handle usage.
9709         * Form.cs: remove menu handle usage.
9710         * Hwnd.cs: remove menu handle usage.
9711         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
9712         motion and clicks to the new Tracker handlers.
9713         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
9714         and handle usage.
9715         * MenuAPI.cs: refactored to combine popup and menubar event handling.
9716         Killed the MENU and MENUITEM data types and associated collections
9717         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
9718         MenuTracker class that exposes the leftovers from the old MenuAPI
9719         static methods. Restructured Capture handling so that only one grab is
9720         done for the entire menu hierarchy instead of handing off grabs to
9721         submenus. Tracker now has an invisible control to Capture when active.
9722         * MenuItem.cs: add sizing accessors, kill Create
9723         and handle usage.
9724         * Theme.cs: remove menu handle and MENU(ITEM) usage.
9725         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
9726         MENU(ITEM). remove menu handle usage, use Menu directly.
9727         * XplatUIDriver.cs: remove menu handle usage.
9728         * XplatUIOSX.cs: remove menu handle usage.
9729         * XplatUIWin32.cs: remove menu handle usage.
9730         * XplatUIX11.cs: remove menu handle usage.
9732 2005-11-22  Jackson Harper  <jackson@ximian.com>
9734         * Hwnd.cs: Don't compute the menu size for
9735         DefaultClientRectangle.
9736         - Reenable menu sizes being computed for GetClienRectangle.
9737         * Form.cs: Remove comment of trechery
9738         
9739 2005-11-22  Jackson Harper  <jackson@ximian.com>
9741         * Hwnd.cs: The adjustments for the menu bar are made when it is
9742         attached to the form.
9744 2005-11-19  Jackson Harper  <jackson@ximian.com>
9746         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
9747         (just like on windows).
9749 2005-11-19  Jackson Harper  <jackson@ximian.com>
9751         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
9752         use real buttons anymore because they are in non client area. The
9753         one TODO here is that I need to somehow invalidate a section of
9754         the non client area.
9756 2005-11-18  Jackson Harper  <jackson@ximian.com>
9758         * Control.cs: Put the enum check back in now that MDI doesnt have
9759         to use this to set border styles.
9760         * Form.cs: Only set mdi child windows borders if the handle has
9761         been created.
9762         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
9763         this directly on to the driver.
9764         - Get the move start position before adjusting for the titlebar
9765         height, this fixes the windows "skipping" when they are first
9766         moved.
9768 2005-11-18  Jackson Harper  <jackson@ximian.com>
9770         * XplatUIX11.cs: Just compute the mdi borders separately as they
9771         don't totally match up with normal form borders.
9773 2005-11-18  Jackson Harper  <jackson@ximian.com>
9775         * Control.cs: Set WS_ styles for borders, so that the driver does
9776         not have to retrieve the control instance to figure out what kind
9777         of borders it should have.
9778         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
9779         driver can know its an mdi child easily.
9780         * XplatUIX11.cs: Get the border styles and whether the window is
9781         MDI from the Styles and ExStyles params instead of having to get a
9782         control. This prevents a chicken and egg problem.       
9784 2005-11-18  Jackson Harper  <jackson@ximian.com>
9786         * MdiClient.cs: Fix typo so scrollbars show up correctly.
9788 2005-11-18  Jackson Harper  <jackson@ximian.com>
9790         * MdiClient.cs: Calculate when to add and remove scrollbars
9791         correctly.
9792         * MdiChildContext.cs: Adjust the y position to take the titlebar
9793         into account.
9794         - No height for FormBorderStyle.None
9796 2005-11-18  Jackson Harper  <jackson@ximian.com>
9798         * Control.cs: Allow non enum values to be used for
9799         InternalBorderStyle.  MDI does this to set a special border style.
9800         - New utility methods for converting points to/from client coords
9801         - Add the newly created control to the Controls collection before
9802         updating its style. This way UpdateStyle can walk the control
9803         heirarchy to find the control if needed.
9804         so I don't need to create a new Point object all the time.
9805         * Form.cs: Let MDI windows handle their border styles.
9806         - Set styles on MDI windows so the correct title style is derived.
9807         * MdiChildContext.cs: Move all the painting and window handling
9808         into the non client area.
9809         - Use correct sizing and put correct buttons on frames based on
9810         the FormBorderStyle.
9811         - Notify the mdi client about scrolling
9812         - Need to handle the buttons ourselves now, because they are all
9813         in non client areas and we can't add controls there.
9814         * MdiClient.cs: Halfway to scrolling, this implementation is
9815         somewhat broken though, we need to check to make sure other
9816         windows aren't causing scrolling before removing the bars. Also
9817         the bars need to be drawn on top, maybe I can switch implicit
9818         controls to be on top.
9819         * Hwnd.cs: caption_height and tool_caption_height are now
9820         properties of an hwnd, this way they can be set by the driver
9821         based on the type of window they are.  In X11 the window manager
9822         handles the decorations so caption_height is zero unless its an
9823         MDI window.
9824         - Add 3 pixel borders for MDI windows (0xFFFF).
9825         - Get rid of some code duplication, have DefaultClientRectanle
9826         just call GetClientRectangle.
9827         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
9828         Hwnd now.
9829         - Set border styles differently for mdi windows.
9830         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
9831         Hwnd now.
9832         
9833 2005-11-15  Mike Kestner  <mkestner@novell.com>
9835         * Menu.cs: when adding an item to the collection, if item is already 
9836         parented, remove it from the parent.
9838 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
9840         * X11DesktopColors.cs: Added KDE support
9842 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
9844         * XplatUIWin32.cs: 
9845           - Clipboard methods now can translate Rtf format
9846           - No longer removes clipboard contents whenever a new format is added
9847             to allow placing multiple formats on the clipboard
9848         * Clipboard.cs: Clipboard now supports getting a IDataObject and
9849           will place all formats contained in it onto the clipboard. Also
9850           now cleans the clipboard before placing a new object onto it
9851         * RichTextBox.cs:
9852           - Implemented set_Rtf
9853           - Implemented set_SelectedRtf
9854           - Created InsertRTFFromStream() method to allow single code base
9855             for all properties and methods that insert RTF into document
9856           - Removed debug output
9857         * TextControl.cs:
9858           - Fixed Delete(int) to fix up line numbers
9859           - Fixed ReplaceSelection to combine start and end line
9860           - Fixed serious DeleteChars bug that would leave the document tree
9861             broken
9862           - Improved DumpTree with several logic checks to detect broken
9863             document trees
9864           - Removed debug lines
9865           - Fixed Caret.WordForward/WordBack moving code, now always also 
9866             updates caret.tag (fixes crash when word-selecting across tag
9867             boundaries via keyboard)
9868           - Added Insert() method for inserting multiline text into documents
9869           - Fixed DeleteChars() calculation errors that would cause a broken
9870             tag chain with multiple tag lines
9871           - DeleteChars() no longer crashes on multi-tag lines if not all tags
9872           - Split() no longer moves caret if split is at caret location
9873           - ReplaceSelection() now updates the cursor and re-displays it
9874           - ReplaceSelection() now uses new Insert() method to avoid code
9875             duplication
9876           - FormatText() can now handle formatting partial lines
9877         * TextBoxBase.cs:
9878           - Append now uses new TextControl.Insert() method (this avoids 
9879             duplicate code)
9880           - Implemented Ctrl-X (Cut) (
9881           - Implemented Ctrl-C (Copy)
9882           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
9883             regeneration when pasting text; roundtripping Copy&Paste within
9884             edit control still fails due to some calculation bugs in GenerateRTF)
9885           - The Delete key will now remove the current selection if it is visible
9886         * TextBox.cs: Removed debug lines
9887         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
9888           driver to be initialized and can't therefore be done via a static ctor)
9890 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
9892         * TextControl.cs: Added backend code for finding char arrays and strings
9893         * TextBoxBase.cs:
9894           - Added mouse wheel scroll support
9895           - Added support for VScroll and HScroll events
9896         * RichTextBox.cs:
9897           - Implemented all seven Find() variants
9898           - Implemented GetCharFromPosition()
9899           - Implemented GetCharIndexFromPosition()
9900           - Implemented GetLineFromIndex()
9901           - Implemented GetPositionFromCharIndex();
9902           - Implemented SaveFile for PlainText and UnicodeText
9903           - Fixed set_Font, now setting a new font applies that font to
9904             the whole document
9905           - Implemented generic Document to RTF converter
9906           - Implemented SaveFile for RichText format (still missing unicode
9907             conversion for non-ansi chars)
9908           - Implemented get_Rtf
9909           - Implemented get_SelectedRtf
9911 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
9913         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
9914           to allow any captures to be released before triggering OnClick. This
9915           way a click handler may capture the mouse without interference.
9916         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
9917           This way we send them even though X may not allow a grab (if the window
9918           isn't visible, for example)
9920 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
9922         * DataGridViewRowEventArgs.cs: DataGridView implementation
9923         * DataGridViewElement.cs: DataGridView implementation
9924         * DataGridViewComboBoxCell.cs: DataGridView implementation
9925         * DataGridViewDataErrorContexts.cs: DataGridView implementation
9926         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
9927         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
9928         * ImageLayout.cs: DataGridView implementation
9929         * DataGridViewComboBoxColumn.cs: DataGridView implementation
9930         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
9931         * DataGridViewSelectionMode.cs: DataGridView implementation
9932         * IDataGridViewEditingControl.cs: DataGridView implementation
9933         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
9934         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
9935         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
9936         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
9937         * DataGridViewColumnSortMode.cs: DataGridView implementation
9938         * DataGridView.cs: DataGridView implementation
9939         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
9940         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
9941         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
9942         * Padding.cs: DataGridView implementation
9943         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
9944         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
9945         * DataGridViewRowEventHandler.cs: DataGridView implementation
9946         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
9947         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
9948         * DataGridViewButtonCell.cs: DataGridView implementation
9949         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
9950         * DataGridViewEditMode.cs: DataGridView implementation
9951         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
9952         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
9953         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
9954         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
9955         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
9956         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
9957         * DataGridViewCellEventHandler.cs: DataGridView implementation
9958         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
9959         * DataGridViewCellStyleConverter.cs: DataGridView implementation
9960         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
9961         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
9962         * DataGridViewColumnEventArgs.cs: DataGridView implementation
9963         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
9964         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
9965         * QuestionEventArgs.cs: DataGridView implementation
9966         * IDataGridViewEditingCell.cs: DataGridView implementation
9967         * DataGridViewTriState.cs: DataGridView implementation
9968         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
9969         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
9970         * DataGridViewColumnCollection.cs: DataGridView implementation
9971         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
9972         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
9973         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
9974         * DataGridViewColumn.cs: DataGridView implementation
9975         * DataGridViewCellBorderStyle.cs: DataGridView implementation
9976         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
9977         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
9978         * DataGridViewRow.cs: DataGridView implementation
9979         * DataGridViewImageCellLayout.cs: DataGridView implementation
9980         * DataGridViewImageCell.cs: DataGridView implementation
9981         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
9982         * DataGridViewCheckBoxCell.cs: DataGridView implementation
9983         * DataGridViewHeaderCell.cs: DataGridView implementation
9984         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
9985         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
9986         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
9987         * DataGridViewTextBoxColumn.cs: DataGridView implementation
9988         * QuestionEventHandler.cs: DataGridView implementation
9989         * DataGridViewCellStyleScopes.cs: DataGridView implementation
9990         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
9991         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
9992         * DataGridViewCell.cs: DataGridView implementation
9993         * DataGridViewCellEventArgs.cs: DataGridView implementation
9994         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
9995         * DataGridViewCellStyle.cs: DataGridView implementation
9996         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
9997         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
9998         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
9999         * TextFormatFlags.cs: DataGridView implementation
10000         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
10001         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
10002         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
10003         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
10004         * DataGridViewButtonColumn.cs: DataGridView implementation
10005         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
10006         * HandledMouseEventArgs.cs: DataGridView implementation
10007         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
10008         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
10009         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
10010         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
10011         * DataGridViewRowCollection.cs: DataGridView implementation
10012         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
10013         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
10014         * DataGridViewHitTestType.cs: DataGridView implementation
10015         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
10016         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
10017         * DataGridViewColumnEventHandler.cs: DataGridView implementation
10018         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
10019         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
10020         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
10021         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
10022         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
10023         * DataGridViewContentAlignment.cs: DataGridView implementation
10024         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
10025         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
10026         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
10027         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
10028         * DataGridViewPaintParts.cs: DataGridView implementation
10029         * DataGridViewCellCollection.cs: DataGridView implementation
10030         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
10031         * DataGridViewImageColumn.cs: DataGridView implementation
10032         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
10033         * DataGridViewElementStates.cs: DataGridView implementation
10034         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
10035         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
10036         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
10037         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
10038         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
10039         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
10040         * DataGridViewRowHeaderCell.cs: DataGridView implementation
10041         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
10042         * DataGridViewTextBoxCell.cs: DataGridView implementation
10043         * DataGridViewBand.cs: DataGridView implementation
10044         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
10045         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
10046         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
10047         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
10048         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
10049         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
10050         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
10051         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
10052         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
10053         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
10054         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
10056 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
10058         * ThemeWin32Classic.cs: 
10059           - Draw the outside focus rectangle around buttons
10060           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
10061             doesn't use end caps for every dash of a line anymore. This
10062             workaround ignores the forecolor.
10064 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
10066         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
10067           endian safe.
10069 2005-11-07  Jackson Harper  <jackson@ximian.com>
10071         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
10073 2005-11-07  Jackson Harper  <jackson@ximian.com>
10075         * ScrollableControl.cs: Calculate the maximum and change vars
10076         (more) correctly so that scrollbars appear as a sensible size.
10078 2005-11-04  Jackson Harper  <jackson@ximian.com>
10080         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
10081         collection.
10082         * TreeView.cs: When the tree is sorted null out the top_node so
10083         that it is recalculated.
10084         - Use dotted lines instead of dashed lines to match MS better.
10086 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
10088         * ListView.cs: 
10089           - Implements key search for items. Useful when browsing files with FileDialog
10090           - When changing view mode or when clear the items reset scrollbar positions
10092 2005-11-04  Jackson Harper  <jackson@ximian.com>
10094         * CurrencyManager.cs: Implement the MetaDataChanged event, the
10095         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
10096         as to what the method may do as there is no real way of creating a
10097         derived CurrencyManager and calling the method. 
10099 2005-11-03  Jackson Harper  <jackson@ximian.com>
10101         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
10102         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
10103         method which seems to just be used internally to refresh the tabs.
10105 2005-11-03  Jackson Harper  <jackson@ximian.com>
10107         * TabControl.cs: Implement the remove method. Fix some broken
10108         comments.
10110 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
10112         * DateTimePicker.cs:
10113           - Added missing DateTimePickerAccessibleObject class
10114           - Added missing events
10115           - Added OnFontChanged method
10116         * Form.cs: Added missing attributes
10117         * TreeView.cs: Added missing attributes
10119 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
10121         * GridItemCollection.cs: Fix signatures
10123 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
10125         * XplatUI.cs: Updated build rev/date
10126         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
10127           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
10128         * Application.cs: Trigger context-specific ExitThread events
10130 2005-11-03  Jackson Harper  <jackson@ximian.com>
10132         * Menu.cs:
10133         * MainMenu.cs:
10134         * GridTableStylesCollection.cs:
10135         * Timer.cs:
10136         * TabPage.cs:
10137         * HelpProvider.cs:
10138         * StatusBar.cs:
10139         * MonthCalendar.cs: Signature fixes
10141 2005-11-03  Jackson Harper  <jackson@ximian.com>
10143         * TreeNodeCollection.cs: Remove should not be virtual.
10144         * TreeView.cs: Implement the last of the missing methods.
10146 2005-11-03  Jackson Harper  <jackson@ximian.com>
10148         * TreeNodeConverter.cs: Implement to get off my class-status back.
10150 2005-11-03  Jackson Harper  <jackson@ximian.com>
10152         * TreeView.cs: Hookup the bits for drag and drop.
10153         * TreeNode.cs: Don't cache the tree_view or index anymore, now
10154         that nodes can be moved from tree to tree easily this just causes
10155         all sorts of problems.
10156         * TreeNodeCollection: Don't need to give treenodes an index and
10157         treeview anymore when they are added, these are computed on the
10158         fly. Also make sure to remove a node before its added.
10160 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
10162         * TextControl.cs:
10163           - Added CaretSelection enum
10164           - Added comparison methods to Marker struct, makes selection code
10165             more readable
10166           - Added SelectionStart and SelectionEnd as 'moveable' location for
10167             the CaretDirection enum and handler
10168           - Added selection_prev variable to track optimized invalidation for
10169             word and line selection
10170           - Added SelectionVisible property (returns true if there is a valid 
10171             selection)
10172           - Switched CaretHasFocus to only display the caret if there is no
10173             visible selection
10174           - Avoiding StringBuilder.ToString to retrieve a single char, instead
10175             using the direct character index; should be much faster
10176           - Added various conditional debug statements
10177           - Fixed invalidation calculation for selection ranges
10178           - Added ExpandSelection() method to support word and line selection
10179           - Switched SetSelectionToCaret to use new Marker compare overloads
10180           - Added central IsWordSeparator() method to determine word 
10181             separators/whitespace and FindWordSeparator() to streamline common
10182             usage of IsWordSeparator()
10183         * TextBoxBase.cs:
10184           - Removed unneeded grabbed variable, it was just mirroring
10185             Control.Capture
10186           - No longer firing OnTextChanged event when Text setter is called,
10187             since the base will fire the event for us
10188           - Added handling of Ctrl-Up/Down selection
10189           - Added handling of Shift-Cursorkey selection
10190           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
10191             words
10192           - Added handling of Shift and Ctrl-Shift-Home/End selection
10193           - Removed some debug output
10194           - Added handling for single/double/tripple-click to place caret/
10195             select word/select line respectively (Fixes bug #76031)
10196           - Added support for drag expansion of word/line selection
10197         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
10198           current selection
10200 2005-11-02  Jackson Harper  <jackson@ximian.com>
10202         * X11Dnd.cs: If the drag is going to and from a MWF window just
10203         copy the data instead of sending it out through the X Selection
10204         mechanism.
10206 2005-11-02  Jackson Harper  <jackson@ximian.com>
10208         * X11Dnd.cs:
10209         * XplatUIX11.cs: When in a drag we don't want motion notify
10210         messages to get passed on to the other controls. This prevents
10211         mouse move messages from showing up in the drag source.
10213 2005-11-02  Jackson Harper  <jackson@ximian.com>
10215         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
10216         the correct button is release to end a drag.
10217         * XplatUIX11.cs: Make the button state internal so the drag system
10218         can access it.  Dragging needs to know about all button releases,
10219         not just left button.
10221 2005-11-02  Miguel de Icaza  <miguel@novell.com>
10223         * Form.cs (Icon): If the icon is null, reset the icon to the
10224         default value. 
10226         * Cursor.cs: When writing the AND-mask bitmap do not include the
10227         number of colors, but hardcode those to two (black and white),
10228         fixes the loading of color cursors (Paint Dot Net).
10230         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
10231         turn off autoscaling.
10233         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
10235 2005-11-02  Jackson Harper  <jackson@ximian.com>
10237         * X11Dnd.cs: Make sure to send a status message if the pointer
10238         enters a control that can not accept a drop, otherwise the cursor
10239         isn't updated correctly. Also tried to compress the lines of code
10240         a bit.
10242 2005-11-02  Jackson Harper  <jackson@ximian.com>
10244         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
10245         set actions correctly.  This isn't perfect as XDND and win32 have
10246         some differences on how you allow actions. I'll clear this up by
10247         adding a path for drag from MWF to MWF windows.
10248         * XplatUIX11.cs: Hook into the dnd system.
10250 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
10252         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
10253         previously shown but they are no longer need it. Very obvious when 
10254         browsing files with FileDialog.
10256 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
10258         * Control.cs: We always need to call OnPaintBackground. We pretty much
10259           ignore AllPaintingInWmPaint and always do the painting there, whether 
10260           it's set or not, since we always ignore the WM_ERASEBKGND message 
10261           (which we don't generate on X11). This fixes #76616.
10262         * Panel.cs: Removed unneeded background painting. This happens properly
10263           in Control.cs already
10265 2005-10-31  Mike Kestner  <mkestner@novell.com>
10267         * Menu.cs: Add items to collection before setting their index.
10268         * MenuItem.cs : add range checking with ArgumentException like MS.
10269         [Fixes #76510]
10271 2005-10-31  Jackson Harper  <jackson@ximian.com>
10273         * ListBox.cs: Invalidate if the area is visible at all not just
10274         contained in the visible rect. Fixes unselection of semi visible
10275         items.
10277 2005-10-31  Jackson Harper  <jackson@ximian.com>
10279         * Control.cs: Consistently name the dnd methods. Make them
10280         internal so we can override them to match some MS behavoir
10281         internally.
10282         * Win32DnD.cs: Use the new consistent names.
10284 2005-10-31  Jackson Harper  <jackson@ximian.com>
10286         * TreeView.cs: Don't draw the selected node when we lose focus.
10288 2005-10-31  Jackson Harper  <jackson@ximian.com>
10290         * X11Dnd.cs: We still need to reset the state even though a full
10291         reset isn't being done, otherwise status's still get sent all over
10292         the place.
10294 2005-10-31  Jackson Harper  <jackson@ximian.com>
10296         * Control.cs: Make the dnd_aware flag internal so the dnd
10297         subsystem can check it. Catch exceptions thrown in dnd handlers to
10298         match MS behavoir.
10299         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
10300         * X11Dnd.cs: Handle null data in the converters. Set the XDND
10301         version when sending a XdndEnter. Use the control/hwnd dnd_aware
10302         flags to reduce the number of dnd enters/status's sent.
10304 2005-10-31  Jackson Harper  <jackson@ximian.com>
10306         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
10308 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
10310         * PictureBox.cs: Fixes 76512
10312 2005-10-28  Jackson Harper  <jackson@ximian.com>
10314         * X11Dnd.cs: Early implementation to support winforms being a drag
10315         source for data on X11. Also restructured the converters so they
10316         can go both ways now.
10317         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
10318         
10319 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
10321         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
10322           clipboard requests
10324 2005-10-27  Jackson Harper  <jackson@ximian.com>
10326         * TreeNode.cs: Implement serialization so my DnD examples will work.
10328 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
10330         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
10331           TreeView.cs: Don't dispose objects that are not owned.
10332           
10333 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
10335         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
10336           should retrieve the current cursor and report that, but XplatUI
10337           doesn't (yet) have an interface for that (and I'm not sure I even
10338           can, on X11)
10339         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
10340           until any message loop processing is done (and the WM_SETCURSOR
10341           replaces the cursor to the proper one)
10342         * XplatUIX11.cs: 
10343           - Fixed override behaviour, we can't set the cursor globally on X11, 
10344             just for our windows.
10345           - Invalidating the System.Drawing X11 display handle when we are
10346             shutting down
10347         * Control.cs: Fix to make csc happy
10349 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
10351         * TextBoxBase.cs: 
10352           - get_Text: Add last line (without trailing newline) to returned
10353             value (Fixes 76212)
10354           - get_TextLength: Count last line in returned length
10355           - ToString: Call Text property instead of duplicating code
10357 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
10359         * ImageList.cs: Dispose ImageAttributes objects.
10361 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
10363         * ImageList.cs: Use attribute constructors with less arguments where
10364           possible.
10366 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
10368         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
10369           Use typeof instead of strings when assembly is referenced. Added
10370           some more comments.
10372 2005-10-21  Jackson Harper  <jackson@ximian.com>
10374         * ListView.cs: Raise a double click event. Also tried to somewhat
10375         fix when the selectedindexchanged event is raised. Its still
10376         broken though.
10378 2005-10-21  Jackson Harper  <jackson@ximian.com>
10380         * TreeView.cs: New method to invalidate the plus minus area of a
10381         node without invalidating the whole node (maybe this can be used
10382         in some more places).
10383         * TreeNodeCollection.cs: When adding to an empty node we need to
10384         invalidate its plus minus area so the little block shows up.
10385         
10386 2005-10-21  Jackson Harper  <jackson@ximian.com>
10388         * TreeView.cs: Make sure that when we invalidate a node the bounds
10389         are big enough to cover the selected box and the focus
10390         rectangle. Use a different colour for the lines connecting nodes
10391         so they show up with all themes.
10393 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
10395         * NativeWindow.cs: Don't call anything that could call into the driver,
10396           we might be on a different thread.
10398 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
10400         * Control.cs(Dispose): Since Dispose might run on a different thread,
10401           make sure that we call methods that could call into the driver via
10402           invoke, to avoid thread issues
10404 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
10406         * XplatUI.cs: Removed finalizer
10407         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
10408           not allowing to be called on the finalizer thread.
10410 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
10412         * ImageList.cs:
10413           - Reverted r51889 and r51891.
10414           - Added ImageListItem class that stores unmodified image items and image
10415             properties required to create list images until handle is created.
10416           - Added AddItem and moved image creation logic to AddItemInternal.
10417           - Added CreateHandle method that creates images based on unmodified items.
10418           - Added DestroyHandle that changes state to store unmodified items.
10419           - Add and AddStrip methods no more create handle.
10420           - ReduceColorDepth has no return value.
10421           - Dispose destroys handle.
10422           - Modified other methods to reflect the above changes.
10423           - Implemented key support.
10424           - Added profile 2.0 members and attributes.
10425           - Added private Reset and ShouldSerialize methods that provide the same
10426             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
10427             them as they are private.
10428           - Added some more comments about implementation details.
10430 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
10432         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
10434 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
10436         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
10438 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
10440         * DataGridDrawingLogic.cs: Fixes column hit calcultation
10441         * DataGridColumnStyle.cs: Remove debug message
10443 2005-10-20  Jackson Harper  <jackson@ximian.com>
10445         * TreeView.cs: We can always get input keys regardless of whether
10446         or not editing is enabled. They are used for navigation.
10448 2005-10-20  Jackson Harper  <jackson@ximian.com>
10450         * TreeNode.cs: Use the viewport rect for determining if a node
10451         needs to be moved for visibility. Don't use Begin/End edit. This
10452         calls a full refresh when its done.
10453         * TreeView.cs: New SetBottom works correctly.  Make the viewport
10454         rect property internal so the treenodes can see it. When clicking
10455         on a node we need to ensure that its visible because it might just
10456         be partly visible when clicked.
10458 2005-10-20  Jackson Harper  <jackson@ximian.com>
10460         * TreeNodeCollection.cs: Remove debug code.
10462 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
10464         * Datagrid.cs: Implements column sorting in Datagrid
10465         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
10467 2005-10-20  Jackson Harper  <jackson@ximian.com>
10469         * TreeNodeCollection.cs: Remove items properly. Update the correct
10470         area after removing them.
10472 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
10474         * Datagrid.cs: Should not call base.OnPaintBackground
10476 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
10478         * XplatUIX11.cs (GetMessage):
10479           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
10480             window instead of client window
10481           - Now properly calculates NC_xBUTTONUP message coordinates
10482           - ScreenToMenu now properly calculates it's coordinates of whole 
10483             window, since menus are in the whole window, not in the client
10484             window
10485           - Added WholeToScreen coordinate translation method
10487 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
10489         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
10490           want to return a message, loop back to the beginning of the function
10491           and grab the next real message to process instead.
10493 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
10495         * Splitter.cs: Properly set limits if no filler control is used
10497 2005-10-19  Jackson Harper  <jackson@ximian.com>
10499         * ColorDialog.cs: Don't show the help button if it is not enabled
10500         instead of disabling it (this is what MS does). Don't create the
10501         panel until the dialog is run, otherwise the vars (such as
10502         ShowHelp) are not set yet.
10504 2005-10-19  Jackson Harper  <jackson@ximian.com>
10506         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
10507         are reduced when adding nodes.
10508         * TreeNode.cs:
10509         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
10510         tree.
10511         
10512 2005-10-19  Jackson Harper  <jackson@ximian.com>
10514         * FolderBrowserDialog.cs: End editing our treeview so the window
10515         actually gets refreshed.
10517 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
10519         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
10520           Obsoleted handling of WM_ERASEBKGND, now always draws our background
10521           inside of WM_PAINT
10523 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
10525         * MenuAPI.cs: Returns after Hidding window
10526         * XplatUIX11.cs: Added TODO found while debugging menu issues
10528 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
10530         * XplatUIX11.cs: Do not re-map the whole window when it's size
10531           becomes non-zero unless it's supposed to be actually visible
10533 2005-10-18  Jackson Harper  <jackson@ximian.com>
10535         * TreeView.cs: We don't need to keep a count anymore.
10536         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
10537         use the Grow method.
10539 2005-10-18  Jackson Harper  <jackson@ximian.com>
10541         * TreeNodeCollection.cs: Insert is not supported on arrays, so
10542         implement it manually here.
10544 2005-10-18  Jackson Harper  <jackson@ximian.com>
10546         * ImageList.cs: Dont kill the list when the colour depth is
10547         changed, just change the colour depth of all the images.
10548         - Same goes for setting the image size. Just resize them all
10549         instead of killing the list softly.
10551 2005-10-18  Jackson Harper  <jackson@ximian.com>
10553         * Control.cs: Don't invalidate empty rectangles.
10555 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
10557         * ListViewItem.cs:
10558           - Adds checked item to the Checked/Item lists (where empty before)
10559           - Do not add items to the Selected lists if they are already present
10560         * ListView.cs:
10561           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
10562           - When deleting items make sure that we delete them for the Selected
10563           and Checked list also.
10565 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
10567         * Label.cs: Dispose objects no longer used
10568         * ThemeWin32Classic.cs: Dispose objects no longer used
10570 2005-10-18  Jackson Harper  <jackson@ximian.com>
10572         * TabControl.cs: Don't refresh the whole control when the tabs are
10573         scrolled, we just need to refresh the tab area.
10575 2005-10-17  Jackson Harper  <jackson@ximian.com>
10577         * XplatUIX11.cs: Compress code a little bit. Only calculate the
10578         after handle when we need it.
10580 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
10582         * Control.cs: When the parent size changes, recalculate anchor 
10583           positions. Partial fix for #76462
10585 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
10587         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
10588           drawn. Fixes #76462
10590 2005-10-17  Jackson Harper  <jackson@ximian.com>
10592         * MonthCalendar.cs: Don't create the numeric up down until our
10593         handle is created. Otherwise our handle is created in the
10594         constructor and we don't know if we are a WS_CHILD or WS_POPUP
10595         yet.
10597 2005-10-17  Jackson Harper  <jackson@ximian.com>
10599         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
10600         correctly.
10602 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
10603         * TreeNode.cs : small logical fix (was using local var instead of field)
10604         
10605 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
10607         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
10609 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
10611         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
10613 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
10615         * Control.cs: 
10616           - Re-implemented anchoring code. My first version was really broken.
10617             This fixes bug #76033. Unlike the previous implementation we will
10618             no longer have round errors since all numbers are calculated from
10619             scratch every time. Removed various anchor-related obsolete vars.
10620           - InitLayout no longer causes layout event firing and layout to be 
10621             performed
10623 2005-10-16  Jackson Harper  <jackson@ximian.com>
10625         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
10626         which was broken).
10628 2005-10-16  Jackson Harper  <jackson@ximian.com>
10630         * TabControl.cs: Remove debug code.
10632 2005-10-16  Jackson Harper  <jackson@ximian.com>
10634         * XEventQueue.cs: Increase the default queue size (very simple
10635         apps needed to grow the queue).
10636         * Hwnd.cs: No finalizer so we don't need to suppress
10637         finalization. Compute the invalid area manually so a new rectangle
10638         does not newto be created.
10639         * ScrollableControl.cs: Don't set any params (otherwise visibility
10640         isn't set correctly).
10641         * MdiChildContext.cs: New constructor takes the mdi parent so it
10642         doesn't have to be computed and avoids a crash on windows. Draw
10643         the window icon properly, and allow the text to be seen.
10644         * Form.cs: Use new MdiChildContext constructor. Make sure the
10645         child context isn't null in wndproc.
10646         * TabControl.cs: Don't set focus, this is muddling keyboard
10647         behavoir. Expand the tab rows when a window size increase will
10648         allow extra tabs to be seen. Don't allow tabs smaller than the
10649         width of a window to be scrolled out of view.
10650         * TreeNode.cs:
10651         * TreeView.cs: Use measure string to calculate a nodes width, the
10652         width is cached and only updated when the text or the font is
10653         changed. Don't check for expand/collapse clicks on the first level
10654         nodes if root lines are disabled.
10655         
10656 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
10658         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
10660 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
10662         * DataGridBoolColumn.cs: fixes warning
10664 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
10666         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
10667         to match more to match more precisely the MS Net behavior
10669 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
10671         * Hwnd.cs: Added field to track if window is mapped
10672         * XplatUIX11.cs: 
10673           - Unmap windows if they become 0-size, re-map when 
10674             they are >0 again; fixes #76035
10675           - Re-set our error handler after initializing X11Desktop
10676             to override any error handlers Gtk or whatever was called
10677             may have set.
10679 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
10681         * CheckedListBox.cs: Removed unused vars
10682         * ListView.cs: Fixed signatures
10683         * RichTextBox.cs: Removed unused vars
10684         * TextBoxBase.cs: Removed unused vars
10685         * XplatUIWin32.cs: Removed unused vars
10686         * XplatUIX11.cs: Removed unused vars
10687         * XplatUI.cs: Updated version and date to latest published
10689 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
10691         * Cursor.cs: Added private .ctor to work around a bug in
10692           resourceset (Thanks to Geoff Norton for the help on this)
10693         * SplitterEventArgs.cs: Made fields accessible so we don't
10694           waste boatloads of objects and can reuse the same one
10695           in Splitter
10696         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
10697           any captions and borders when generating screen coordinates
10698         * Splitter.cs: Reimplemented control, now fully complete, uses
10699           rubberband drawing, supports and obeys all properties, has
10700           proper cursors
10702 2005-10-13  Miguel de Icaza  <miguel@novell.com>
10704         * Form.cs (Form): Setup default values for autoscale and
10705         autoscale_base_size;  Make these instance variables, not static
10706         variables. 
10708         (OnLoad): on the first load, adjust the size of the form.
10710 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
10712         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
10713           width argument to DrawReversibleRectangle()
10714         * XplatUIWin32.cs, XplatUIX11.cs: 
10715           - Implemented width for DrawReversibleRectangle()
10716           - Added logic to DrawReversibleRectangle that recognizes a zero
10717             width or height and only draws a line in that situation
10718         
10719 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
10721         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
10722         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
10723         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
10724           method (it uses our FosterParent window to get a graphics context)
10726 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
10728         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
10729           and SetWindowBackground methods
10730         * Control.cs:
10731           - Setting proper ControlStyles
10732           - We no longer call XplatUI.SetWindowBackground and XplatUI.
10733             EraseWindowBackground, instead we draw the window background
10734             ourselves in PaintControlBackground. This behaviour is
10735             required to match MS, where, when OnPaintBackground is not
10736             called, the background is not drawn.
10737           - Removed unneeded Refresh() in set_Text
10738         * Hwnd.cs: Dropped the ErasePending support. No longer needed
10739         * XplatUIX11.cs:
10740           - Created DeriveStyles method to translate from CreateParams to
10741             FormBorderStyle and TitleStyle, also handles BorderStyle (which
10742             matches FormBorderStyle enum values)
10743           - Consolidated SetHwndStyles and CalculateWindowRect border/title
10744             style calculations into single DeriveStyles method
10745           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
10746             from redrawing the whole window on any resize or expose.
10747           - Fixed CreateWindow usage of SetWindowValuemask. Before not
10748             all styles were applied to our whole/client window appropriately
10749           - Removed EraseWindowBackground() and SetWindowBackground() methods
10750           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
10751             no longer clear/redraw the background through X
10752           - Removed handling of erase_pending bit, we have no use for it (or
10753             so it seems)
10754         * XplatUIOSX.cs:
10755           - Removed generation and handling of WM_ERASEBKGND message
10756           - Removed EraseWindowBackground() and SetWindowBackground() methods
10757           - Removed handling of hwnd.ErasePending flag
10758         * XplatUIWin32.cs:
10759           - Removed EraseWindowBackground() and SetWindowBackground() methods
10760           - We no longer call EraseWindowBackground on PaintEventStart, we 
10761             ignore the fErase flag, erasing is handled in Control in the
10762             background handler
10763         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
10764           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
10765           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
10766           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
10767           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
10768           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
10769           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
10771 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
10773         * PropertyGrids.cs: Get sub properties
10774         * PropertyGridView.cs: Fix drawing code
10776 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
10778         * ListBox.cs: Fixes 76383
10780 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
10782         * DataGridTextBoxColumn.cs: Sets location and size before attachment
10783         * ThemeWin32Classic.cs: Fixes border drawing and calculations
10784         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
10787 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
10789         * ComboBox.cs: Fixes border drawing
10791 2005-10-10  Miguel de Icaza  <miguel@novell.com>
10793         * MimeIcon.cs: Ignore errors if the file can not be read.
10795 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
10797         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
10798          - Fixed border calculations
10799          - Fixed horizontal scrolling in single column listboxes
10800          - Fixed drawing issues
10802 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
10804         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
10805           FormBorderStyle enum
10806         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
10807           code to determine FormBorderStyles from CreateParams
10808         * Form.cs:
10809           - Fixed bug where we'd set the wrong window styles if we were
10810             not creating an MDI window
10811           - Added call to XplatUI.SetBorderStyle when form borders are set
10812         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
10813         * Hwnd.cs:
10814           - Removed obsolete edge style
10815           - Switched from BorderStyle to FormBorderStyle
10816         
10817 2005-10-10  Jackson Harper  <jackson@ximian.com>
10819         * Form.cs: Use the property to get the window handle instead of
10820         accessing it directly. Prevents a null reference exception.
10822 2005-10-10  Jackson Harper  <jackson@ximian.com>
10824         * TreeView.cs: Don't adjust the rect given to DrawString now that
10825         our libgdiplus draws correctly.
10827 2005-10-08  Jackson Harper  <jackson@ximian.com>
10829         * TreeView.cs: Don't try to find the clicked on node if there are
10830         no nodes in the tree.
10832 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
10834         * RichTextBox.cs:
10836           restore
10838 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
10840         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
10841           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
10842           ErrorProvider.cs:
10843           Use ResPool for brushes and dispose System.Drawing objects that
10844           are not used anymore.
10846 2005-10-07  Jackson Harper  <jackson@ximian.com>
10848         * MdiChildContext.cs: Use the new borders instead of drawing them
10849         ourselves.
10851 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
10853         * Calling UpdateBounds after changing the window's BorderStyle 
10854         since the style can change the ClientSize
10856 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
10858         * Control.cs: Made PaintControlBackground virtual
10859         * Panel.cs: Overriding PaintControlBackground instead of using paint
10860           event; paint event method was interfering with 'real' users of the
10861           event.
10863 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
10865         * ThemeWin32Classic.cs: remove border drawing since it is handled
10866         by the base control class now and was causing double border drawing.
10868 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
10870         * Panel.cs: Redraw our background on paint. Not a pretty solution,
10871           but it does seem to match MS behaviour. This fixes bug #75324
10873 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
10875         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
10876           somewhat hackish looking
10878 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
10880         * TextBoxBase.cs:
10881           - We now accept Enter even if AcceptEnter is false, if the containing
10882             form does not have an AcceptButton configured (fixes bug #76355)
10883           - Calculations are now fixed to no longer use Width/Height, but
10884             ClientSize.Width/Height, since we now support borders (this was
10885             a result of fixing borders and therefore bug #76166)
10886           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
10887             true (fixes bug #76354)
10888         
10889 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
10891         * Control.cs: 
10892           - Defaulting BorderStyle and setting it in XplatUI when our window 
10893             is created
10894           - Added enum check to InternalBorderStyle setter
10895         * XplatUIX11.cs: 
10896           - Added drawing of window borders
10897           - Now properly calculates WM decorations offset for toplevel 
10898             windows (fixes bug #74763)
10899         * XplatUIWin32.cs: 
10900           - Implemented BorderStyles for windows (we're letting win32 draw 
10901             the border for us)
10902           - Fixed the signature for SetWindowLong
10903         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
10904           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
10905           setting borders
10906         * UpDownBase.cs: Remove drawing of borders, this is handled by
10907           the driver, outside the client area
10908         * ListView.cs: Removed bogus border calculations. The control should
10909           be oblivious to borders, since those are not part of the client
10910           area. 
10911         * X11DesktopColors.cs: Commented out (currently) unneeded variables
10912         * ThemeWin32Classic.cs: Removed border calculations from ListView 
10913           drawing code
10915 2005-10-06  Jackson Harper  <jackson@ximian.com>
10917         * MdiChildContext.cs: Clear out the old virtual position remove
10918         all the unneeded calls to CreateGraphics.
10920 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
10922         * TextControl.cs: Use proper color for highlighted text; fixes #76350
10924 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
10926         * Form.cs: 
10927           - Added loading and setting of our new default icon
10928           - Only set icon if window is already created
10930 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
10932         * Label.cs:
10933           - Do not explicitly set the foreground and background colors, to
10934             allow inheriting from parents (fixes #76302)
10935           - Use Control's InternalBorderStyle property to deal with borders
10937 2005-10-06  Jackson Harper  <jackson@ximian.com>
10939         * MdiChildContext.cs: Use the new xplatui function to draw a
10940         reversible rect.
10942 2005-10-06  Jackson Harper  <jackson@ximian.com>
10944         * Form.cs: Add the parent before creating the child context cause
10945         we need the parent when setting up the child.
10947 2005-10-06  Jackson Harper  <jackson@ximian.com>
10949         * FolderBrowserDialog.cs: redo the tree population code so a
10950         second thread isn't used. Should be a lot faster and more stable
10951         now.
10953 2005-10-05  Jackson Harper  <jackson@ximian.com>
10955         * TreeView.cs: There are no expand/collapse boxes if the node has
10956         no children.
10958 2005-10-05  Jackson Harper  <jackson@ximian.com>
10960         * X11DesktopColors.cs: Get menu colours for the gtk theme.
10962 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
10964         * FileDialog.cs: Fix InitialDirectory
10966 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
10968         * ComboBox.cs:
10969                 - Fixes changing between styles
10970                 - Fixes simple mode
10971                 - Fixes last item crashing when navigating with keyboard
10973 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
10975         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
10977 2005-10-05  Jackson Harper  <jackson@ximian.com>
10979         * TreeView.cs: If updating the root node do a full refresh.
10980         * TreeNode.cs: The root node should be expanded by default. Also
10981         added a utility prop to tell if we are the root node.
10982         * TreeNodeCollection.cs: Only refresh if the node we are being
10983         added to is expanded. Also added a comment on a potential
10984         optimization.
10985         
10986 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
10988         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
10989           in dispose method. Fixes #76330
10991 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
10993         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
10995                 - Implements vertical and horizontal scrolling using XplatUI
10996                 - Fixes keyboard navagation
10997                 - Fixes EnsureVisible
10998                 - Drawing fixes
10999                 - Handles and draws focus properly
11002 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
11004         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
11005           Create handle. NET_2_0: Destroy handle when value is null.
11007 2005-10-03  Jackson Harper  <jackson@ximian.com>
11009         * ScrollBar.cs: My last scrollbar patch was broken. This is a
11010         revert and a new patch to prevent the thumb from refreshing so
11011         much.
11013 2005-10-02  Jackson Harper  <jackson@ximian.com>
11015         * ScrollBar.cs: Don't update position if it hasn't actually
11016         changed. This occurs when you hold down the increment/decrement
11017         buttons and the thumb gets to the max/min.
11019 2005-10-01  Jackson Harper  <jackson@ximian.com>
11021         * Form.cs:
11022         * MdiChildContext.cs:
11023         * MdiClient.cs: Implement ActiveMdiChild in Form.
11025 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
11027         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
11029 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
11031         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
11032           be found
11034 2005-09-30  Jackson Harper  <jackson@ximian.com>
11036         * ListBox.cs: Don't do a full refresh unless some data has
11037         actually changed.
11039 2005-09-30  Jackson Harper  <jackson@ximian.com>
11041         * TreeView.cs: Make sure that the checkboxes size is factored in
11042         even when not visible.
11044 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
11046         * FileDialog.cs: Fix Jordi's build break
11048 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
11050         * FileDialog.cs: 
11051                 - Use standard the Windows colours for the combobox as espected
11052                 - Dispose objects that use resouces when no longer need them
11054 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
11056         * X11DesktopColors.cs: Initial incomplete implementation
11057         * XplatUIX11.cs: Added call to initialize X11DesktopColors
11059 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
11061         * Theme.cs: 
11062           - Switched Theme color names to match the names defined in 
11063             System.Drawing.KnownColors. Life's hard enough, no need to make 
11064             it harder.
11065           - Added setters to all theme color properties so themes can set
11066             their color schemes. The setters also propagate the color changes
11067             to System.Drawing.KnownColors via reflection
11068         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
11069           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
11070           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
11071           use the new, more logical theme color names
11072         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
11073           post-NT colors
11074         * ThemeWin32Classic.cs:
11075           - Removed code to set the old classic Windows colors. Instead it
11076             now relies on the colors returned by System.Drawing.KnownColors
11077             which will be either modern static colors (Unix) or colors
11078             read from the user's configuration (Win32)
11079           - Updated to use the new, more logical theme color names
11080           - Switched DataGrid drawing code to use only Theme colors instead of
11081             a mix of System.Drawing.KnownColors and Theme colors
11082           - DrawFrameControl(): Removed code that fills the button area, the
11083             fill would overwrite any previous fill done by a control. This
11084             fixes bug #75338 
11085           - Added DrawReversibleRectangle() stub
11086         * ScrollableControl.cs: Set visible state to false when scrollbars
11087           are removed (pdn fix)
11088         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
11089           DrawReversibleRectangle() method to allow drawing primitive 
11090           'rubber bands'
11091         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
11093 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11095         * ImageList.cs: Add(Icon): Create handle.
11097 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
11099         * ListView.cs:
11100         * ThemeWin32Classic.cs:
11101                 - Fixes detail mode
11102                 - Sets clippings
11103                 - Issues with drawing
11105 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11107         * ImageList.cs: Moved RecreateHandle back to ImageList as event
11108           source has to be the ImageList.
11110 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11112         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
11114 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11116         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
11118 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11120         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
11122 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
11123         * GridItem.cs: Fixed TODOs
11124         * GridItemCollection.cs: Added ICollection interface
11126 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11128         * ImageList.cs: Resize icons when needed.
11130 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
11132         * ListViewItem.cs
11133                 - Fixes GetBounds and returns on screen rects
11134         * ListView.cs:
11135                 - Fixes vertical and horzintal scrolling of items
11136         * ThemeWin32Classic.cs:
11137                 - Fixes drawing
11138                 
11139 2005-09-29  Raja R Harinath  <harinath@gmail.com>
11141         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
11143 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
11145         * ImageList.cs: Added comments about handle creation. Moved Handle,
11146           HandleCreated and OnRecreateHandle implementations to ImageCollection.
11147           Handle is created in Add methods.
11149 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
11150          
11151         * DataGridDrawingLogic.cs: 
11152                 - Takes rows into account on Colum calculations
11153                 - Returns the column when clickig
11154         * DataGrid.cs:
11155                 - Fixes default HitTestInfo values
11156                 - Fixes HitTestInfo.ToString
11157                 - Fixes ResetBackColor          
11158         
11159 2005-09-28  Jackson Harper  <jackson@ximian.com>
11161         * MdiChildContext.cs: Obey rules for fixed sized windows (no
11162         sizing or cursor changes). Also added some temp code to draw the
11163         titlebars text (Makes dev a little easier).
11165 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
11167         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
11169 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
11170          
11171         * ListBox.cs: Fixes bug 76253
11173 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
11175         * ImageList.cs: Added comments about the current implementation. Added
11176           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
11177           Format32bppArgb to preserve transparency and can use Graphics.FromImage
11178           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
11179           with Bitmap.LockBits for better performance. Revised the whole file to
11180           match MS.NET behaviour and provide better performance. Non-public
11181           interface members are calling public members even when they throw
11182           NotSupportedException for better maintainability. Moved ColorDepth,
11183           ImageSize, ImageStream and TransparentColor implementations to
11184           ImageCollection for better performance as these properties are not used
11185           by ImageList.
11186         * ImageListStreamer.cs: Added a new internal constructor that takes an
11187           ImageList.ImageCollection and serializes Images based on
11188           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
11189           match ImageList property name.
11191 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
11193         * ListBox.cs: Fixes IndexFromPoint for last item
11195 2005-09-27  Jackson Harper  <jackson@ximian.com>
11197         * Form.cs: Set the position of new mdi children correctly.
11199 2005-09-27  Jackson Harper  <jackson@ximian.com>
11201         * MdiClient.cs: New mdi children need to be added to the back of
11202         the controls collection so the zorder is set correctly. Also add a
11203         count of all the child windows that have been created.
11205 2005-09-27  Jackson Harper  <jackson@ximian.com>
11207         * Form.cs (CreateParams): Setup MDI forms correctly.
11209 2005-09-27  Jackson Harper  <jackson@ximian.com>
11211         * MdiChildContext.cs:
11212         * MonthCalendar.cs:
11213         * UpDownBase.cs:
11214         * ListBox.cs:
11215         * ListView.cs:
11216         * TextBoxBase.cs:
11217         * TreeView.cs:
11218         * ScrollableControl.cs:
11219         * ComboBox.cs: Add implicit controls using the new implict control
11220         functionality in ControlCollection. Also try to block multiple
11221         control add in a suspend/resume layout to save some cycles.
11222         
11223 2005-09-27  Jackson Harper  <jackson@ximian.com>
11225         * Control.cs: Add functionality to the controls collection to add
11226         'implicit controls' these are controls that are created by the
11227         containing control but should not be exposed to the user. Such as
11228         scrollbars in the treeview.
11229         * Form.cs: The list var of the ControlsCollection is no longer
11230         available because of the potential of implicit controls getting
11231         ignored by someone accessing the list directly.
11233 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
11235         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
11236           loose it's parent. (Fixed bug introduced in r49103 when we added
11237           setting the child parent to null on Remove)
11239 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
11241         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
11242         * Splitter.cs: Added missing attributes for BorderStyle property.
11243         * TextBoxBase.cs: Marked Calculate* methods internal.
11244         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
11245         MS.NET.
11247 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
11248          
11249         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
11251 2005-09-25  Jackson Harper  <jackson@ximian.com>
11253         * TreeView.cs: Update the node bounds correctly regardless of
11254         whether the node is visible.
11256 2005-09-25  Jackson Harper  <jackson@ximian.com>
11258         * ImageList.cs: Don't dispose the image after it is added to the
11259         image list. Only reformat images that need to be resized.
11261 2005-09-25  Jackson Harper  <jackson@ximian.com>
11263         * ImageList.cs: Don't set the format when changing the image.
11265 2005-09-25  Jackson Harper  <jackson@ximian.com>
11267         * TreeView.cs: We can't just assume the node has a font. Use the
11268         treeviews font if no node font is available.
11270 2005-09-25  Jackson Harper  <jackson@ximian.com>
11272         * TreeView.cs: Allow the scrollbars to be reset with negative
11273         values.
11274         - Don't add scrollbars to negative sized windows.
11276 2005-09-23  Jackson Harper  <jackson@ximian.com>
11278         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
11279         old Mono.Posix. Also remove some stray code that shouldn't have
11280         been committed.
11282 2005-09-23  Jackson Harper  <jackson@ximian.com>
11284         * TreeView.cs: Attempt at proper sizing of the horizontal
11285         scrollbar. Also don't resize the scrollbars unless they are
11286         visible.
11288 2005-09-23  Jackson Harper  <jackson@ximian.com>
11290         * TreeView.cs: We don't need to expand the invalid area when the
11291         selection changes, as this is all drawn in the node's bounding
11292         box. The area needs to be expanded (previous typo was contracting
11293         it) when the focus rect moves.
11295 2005-09-23  Jackson Harper  <jackson@ximian.com>
11297         * TreeView.cs: Display the selection box under the correct
11298         circumstances. We were rendering white text with no selection box
11299         before.
11301 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
11303         * TextControl.cs(Split): Now updates selection start/end if it points 
11304           into a line that's being split. Fixes a FIXME and bug #75258
11306 2005-09-23  Jackson Harper  <jackson@ximian.com>
11308         * Binding.cs:
11309         * ListControl.cs: Don't use the path when retrieving binding
11310         managers from the binding context. My bat sense tells me that the
11311         path is only used on insertion.
11313 2005-09-22  Jackson Harper  <jackson@ximian.com>
11315         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
11317 2005-09-22  Jackson Harper  <jackson@ximian.com>
11319         * Splitter.cs: There are special cursors used for splitting.
11320         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
11322 2005-09-22  Jackson Harper  <jackson@ximian.com>
11324         * Splitter.cs: Change the cursor appropriately when the splitter
11325         is moused over, so the user actually knows there is a splitter
11326         there.
11328 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
11330        * Label.cs : Fix ToString method to give same output as MS.NET
11332 2005-09-22  Jackson Harper  <jackson@ximian.com>
11334         * TreeView.cs: Create the scrollbars when the handle is created
11335         and add them right away, just make them invisble. Also account for
11336         the window being shrunk vertically to the point that the vert
11337         scrollbar needs to be added.
11338         - Remove some 0.5 adjustments to get around anti aliasing issues.
11339         
11340 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
11341          
11342         * MainMenu.cs: Fixes default value
11343         * MenuItem.cs: Fixes default value
11345 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
11347         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
11349 2005-09-21  Jackson Harper  <jackson@ximian.com>
11351         * Control.cs: Don't try to set the border style on the window if
11352         it hasn't been created. When the window is created the border
11353         style will be used.
11355 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
11357         * Control.cs (Update): Don't call XplatUI if we don't have a
11358           window handle yet
11360 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
11362         * ContainerControl.cs: Instead of throwing an exception, print
11363           a one-time warning about Validate not being implemented
11364         * XplatUIWin32.cs: Removed debug output
11366 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
11368         * Control.cs: Only set XplatUI background if we expect the windowing
11369           system to handle the background. This stops controls that draw their
11370           own background from flickering
11372         * XplatUIX11.cs: Support custom visuals and colormaps for window 
11373           creation. This allows, amongst other things, using MWF X11 windows 
11374           with OpenGL.
11376 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
11378         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
11379           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
11380           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
11381           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
11382           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
11383           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
11384           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
11385           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
11386           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
11387           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
11388           GridColumnStylesCollection.cs, 
11389           IDataGridColumnStyleEditingNotificationService.cs,
11390           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
11391           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
11392           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
11393           TreeNodeCollection.cs, AmbientProperties.cs, 
11394           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
11395           DataObject.cs, ErrorProvider.cs, Splitter.cs,
11396           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
11397           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
11398           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
11399           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
11400           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
11401           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
11402           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
11403           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
11404           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
11405           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
11406           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
11407           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
11408           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
11409           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
11410           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
11411           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
11412           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
11413           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
11414           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
11415           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
11416           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
11417           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
11418           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
11419           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
11420           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
11421           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
11422           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
11423           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
11424           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
11425           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
11426           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
11427           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
11428           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
11429           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
11430           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
11432 2005-09-21  Jackson Harper  <jackson@ximian.com>
11434         * TreeNode.cs: Call Before/After Expand not Collapse when
11435         expanding.
11437 2005-09-20  Jackson Harper  <jackson@ximian.com>
11438         
11439         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
11441 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
11442          
11443         * ListViewItem.cs:
11444                 - Fixes bug 76120
11445                 - Fixes proper storing of subitems
11446                 - Fixes not updated items
11448 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
11450         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
11451           things if our window handle isn't created yet. Also disabled 
11452           debug for TextBoxBase
11454 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
11456         * MenuAPI.cs: Remove filtering of events to allow menu usage
11458 2005-09-20  Miguel de Icaza  <miguel@novell.com>
11460         * Cursor.cs: Allow null to be passed to Cursor.Current.
11462 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
11464         * ThemeWin32Classic.cs:
11465           - Change some private methods/fields to protected virtual so that 
11466             they can be accessed and overriden in derived classes
11467           - First refactoring of some methods. Derived themes now don't 
11468             need to duplicate the complete code from ThemeWin32Classic
11469         * ThemeNice.cs:
11470           - Added nice StatusBar
11471           - Derive from ThemeWin32Classic and not Theme
11472           - Removed duplicate ThemeWin32Classic code
11474 2005-09-20  Miguel de Icaza  <miguel@novell.com>
11476         * Control.cs (ControlCollection.Add): If the value null is passed
11477         the control is ignored. 
11479         Optimize this loop.
11481 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
11483         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
11484           PostQuitMessage state.
11485         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
11487 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
11489         * Application.cs: Our constructor will never get called, move 
11490           initialization to fields; fixes bug #75933
11492 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
11494         * FileDialog.cs :
11495                 - Allow files to be selected properly using file name
11496                 combo box.
11497                 - Add ability to change diretory (absolute / relative)
11498                 using file name combo box.
11500 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
11501          
11502         * ListBox.cs: 
11503                 - Fixes Multicolumn listboxes item wrong calculations
11504                 - Allows to click when only one item is in the listbox
11505                 - Fixes crash when no items using keyboard navigation
11507 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
11509         * ComboBox.cs: Reverted almost everything from the latest patch which
11510           broke ComboBox
11512 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
11513         
11514         * ToolTip.cs:
11515                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
11516         * ComboBox.cs:
11517                 - When DropDownStyle is Simple, it does not show scrollbar 
11518                 to the last item of the list.
11519                 - When DropDownStyle is Simple, it crashed when the list was 
11520                 scrolled down with the down cursor key.
11521                 - Fixed a bug that when DropDownStyle is DropDownList, the 
11522                 selected item was not shown.
11523                 - The position of the selected item was not preserved when 
11524                 the next dropdown happened.
11525         * ThemeWin32Classic.cs:
11526                 - Items were wrapped at the right end.
11527         * CheckedListBox.cs:
11528                 - Fixed Add method
11529         * ListBox.cs:
11530                 - Items should be fully shown.
11531                 - When resizing and vertical scrollbar disappeared, the item 
11532                 of index 0 should be on the top of the list.
11533                 - GetItemRectangle should consider the size of ver. scrollbar
11534         * StatusBar.cs:
11535                 - SizingGrip area should not be allocated when it is not 
11536                 displayed.
11537                 - Now it reflects MinWidth of the containing panel and 
11538                 fixed a crash that happens when its width becomes so small.
11540 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
11542         * CheckedListBox.cs: Fixes bug 76028
11543         * ListBox.cs: Fixes bug 76028
11545 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
11547         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
11548         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
11550 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
11552         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
11554 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
11556         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
11558 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
11560         * IRootGridEntry.cs: Added
11561         * PropertyGridCommands.cs: Added
11562         * PropertiesTab.cs: Added missing methods and property
11563         * PropertyGridView.cs: Made class internal
11564         * PropertyGridTextBox.cs: Made class internal
11566 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
11568         * MimeIcon.cs: Try to check some other environment variables
11569           if "DESKTOP_SESSION" returns "default"
11571 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
11573         * ThemeNice.cs: Corrected background colors (e.g. menus)
11574         * ColorDialog.cs: Use correct background colors for controls
11576 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
11578         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
11580 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
11582         * RichTextBox.cs: Added initial implementation
11583         * lang.cs: Removed. Was accidentally checked in long time ago
11584         * TODO: Removed. Contents were obsolete
11586 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
11587                                                                                 
11588         * PropertiesTab.cs : Added
11590 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
11591                                                                                 
11592         * PropertyGrid.cs : Update
11593         * PropertyGridView.cs : Update
11594         * System.Windows.Forms.resx : Added images and strings
11596 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
11598         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
11600 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
11602         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
11603           a busy loop right after the Ungrab the X11 display is otherwise 
11604           blocked
11606 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
11608         * ThemeWin32Classic.cs: Optimise the use of clipping
11610 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
11612         * DataGrid.cs: fixes recursion bug
11614 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
11616         * ThemeNice.cs: 
11617           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
11618           - Cleanup
11620 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
11622         * ThemeNice.cs: Draw nice ProgressBars
11624 2005-09-01  Miguel de Icaza  <miguel@novell.com>
11626         * VScrollBar.cs: Another buglet found by Aaron's tool. 
11628         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
11629         bug finder.
11631 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
11633         * ThemeNice.cs:
11634           - Added nicer menu drawing
11635           - Updated DrawTab
11636           - some refactoring
11638 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
11640         * CreateParams.cs (ToString): Made output match MS
11641         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
11642             handle is already created (to avoid forcing window creation)
11643         * XplatUIX11.cs: Set window text to caption after creating window,
11644           in case Text was set before window was created
11645         * Form.cs: Use this.Text instead of a static string as caption
11647 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
11649         * NotifyIcon.cs: Don't set the window to visible; this screws
11650           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
11651           OnPaint without a bitmap)
11652         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
11653           happen very often anyway; we could add the check to the WM_PAINT 
11654           event generation code
11656 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
11658         * NotifyIcon.cs: Fill the icon area with a background color, to 
11659           avoid 'residue' when transparent icons are drawn
11660         * XplatUIX11.cs:
11661           - Handle whole_window == client_window when destroying windows
11662           - SystrayAdd(): Set client_window to whole_window value to
11663             get mouse and other events passed to NotifyIcon
11665 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
11667         * Form.cs: Set proper default for Opacity property
11668         * NotifyIcon.cs:
11669           - ShowSystray(): Don't bother creating telling the OS
11670             about the systray item if no icon is provided
11671           - Now handles WM_NCPAINT message to deal with whole/client window
11672             split
11673           - Create window as visible to not get caught by Expose optimization
11674         * Hwnd.cs: Removed debug message
11675         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
11676           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
11677             PaintEventStart/End to use new client argument
11678         * TextBoxBase.cs:
11679           - Commented out debug messages
11680           - Switched PaintEventStart/End to use new client argument
11681         * XplatUI.cs: Added client window bool to PaintEventStart()/
11682           PaintEventEnd() calls, to support drawing in non-client areas
11683         * XplatUIDriver.cs: 
11684           - Added client window bool to PaintEventStart()/PaintEventEnd() 
11685             calls, to support drawing in non-client areas
11686           - Added conditional compile to allow using MWF BeginInvoke 
11687             on MS runtime
11688         * XplatUIX11.cs:
11689           - Added some conditional debug output
11690           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
11691             whole/client window split
11692           - Implemented handling of client argument to PaintEventStart()/End()
11693         * Control.cs:
11694           - Throw exception if BeginInvoke() is called and the window handle
11695             or one of the window's parent handles is not created
11696           - Added conditional compile to allow using MWF BeginInvoke on
11697             MS runtime
11698           - get_Parent(): Only sets parent if handle is created. This avoids
11699             forcing window handle creation when parent is set.
11700           - Now fires Layout and Parent changed events in proper order
11701           - Switched to use Handle instead of window.Handle for Z-Order setting,
11702             the get_Parent() patch above causes us to possibly get null for 'window'
11703           - Implemented handling of client argument to PaintEventStart()/End()
11704           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
11705             default handling)
11706           - Now sends a Refresh() to all child windows when Refresh() is called
11708 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
11710         * Form.cs: Added (non-functional) Opacity property
11711         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
11713 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
11714         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
11715           use export MONO_THEME=nice to activate it.
11716           Currently supported controls:
11717           - Button
11718           - ComboBox
11719           - ScrollBar
11720           - TabControl (TabAlignment.Top only, other will follow)
11721         * ThemeEngine.cs: Add theme nice
11722         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
11723           if enabled
11725 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
11727         * Splitter.cs: Resize docked control and its neighbor.
11729 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
11730         -- Making Windows with Menus layout correctly --
11731         * Form.cs : The first leg of the fix
11732                 Menu setter - adjust Client Size as needed to make space for the menu
11733                 SetClientSizeCore - doesn't call base version to be able to pass the 
11734                         menu handle to XplatUI.CalculateWindowRect
11735         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
11736         * XplatUIX11.cs: The critical second leg of the fix
11737                 GetWindowPos needs to use a recalculated client_rect
11738                 so that resizing the window doesn't break layout of child controls. 
11739                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
11740                 Lots of \t\n killed
11742 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
11744         * Label.cs: Now properly recalculates width and height on Font and Text
11745           changes if AutoSize is set
11747 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
11748         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
11750 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
11752         * ImageList.cs: Makes ToString method compatible with MS
11754 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
11756         * MenuAPI.cs: fixes bug 75716
11758 2005-08-11 Umadevi S <sumadevi@novell.com>
11759         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
11761 2005-08-11 Umadevi S <sumadevi@novell.com>
11762         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
11764 2005-08-10  Umadevi S <sumadevi@novell.com>
11765         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
11767 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
11769         * Menu.cs: fixes bug 75700
11770         * MenuAPI.cs: fixes navigation issues
11772 2005-08-09  Umadevi S <sumadevi@novell.com>
11773         * CheckedListBox.cs - simple fix for GetItemChecked.
11775 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
11777         * ComboBox.cs: Serveral fixes
11778         * ListBox.cs: Serveral fixes
11780 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
11782         * ComboBox.cs: Fixes FindString methods and GetItemHeight
11783         * ListBox.cs: Fixes FindString methods
11785 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
11787         * DataGrid.cs: fixes bugs exposed by new tests
11789 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
11791         * Mime.cs: Compile Mono assembly references only if compiling
11792           with Mono (Allows to build with VS.Net again)
11794 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
11796         * Control.cs (PaintControlBackground): Draw background image
11797         corrrectly.
11798         (CheckForIllegalCrossThreadCalls): Stubbed.
11799         
11800         * Form.cs (OnCreateControl): Center when should be centered.
11801         
11802         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
11804 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
11806         * Binding.cs: Binding to properties should be case unsensitive
11808 2005-07-18 vlindos@nucleusys.com
11810         * DataGrid.cs: fixes setmember order
11812 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
11814         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
11815         * FileDialog.cs: FileDialog is now resizable and uses the new
11816           MimeIconEngine
11818 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
11820         * DataGridTextBoxColumn.cs: default value
11821         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
11822         * GridTableStylesCollection.cs: fixes checking MappingName
11823         * DataGridDrawingLogic.cs: fixes drawing logic issues
11824         * DataSourceHelper.cs: rewritten to make compatible with more data sources
11825         * DataGrid.cs: fixes    
11827 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
11829         * MimeGenerated.cs: Use case sensitive comparer for
11830           NameValueCollections
11832 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
11834         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
11835         * ThemeWin32Classic.cs: bug fixes, code refactoring
11836         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
11837         * DataGrid.cs: bug fixes, code refactoring
11838         * DataGridTextBox.cs: bug fixes, code refactoring
11839         * DataGridColumnStyle.cs:  bug fixes, code refactoring
11840         * Theme.cs:  bug fixes, code refactoring
11842 2005-07-01  Peter Bartok  <pbartok@novell.com> 
11844         * TextControl.cs: Quick fix for the reported crash on ColorDialog
11845           and other text box usage
11847 2005-07-01  Jackson Harper  <jackson@ximian.com>
11849         * TabControl.cs: Make sure the bottom of the tab covers the pages
11850         border.
11852 2005-06-30  Peter Bartok  <pbartok@novell.com> 
11854         * Form.cs (ShowDialog): Assign owner of the dialog
11855         * TextBoxBase.cs: Always refresh caret size when deleting, caret
11856           might have been moved to a tag with different height
11858 2005-06-30  Jackson Harper  <jackson@ximian.com>
11860         * Form.cs: Don't create an infinite loop when setting focus
11861         * MenuItem.cs: Don't dirty the parents if we don't have any
11863 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
11865         * LibSupport.cs: Rename
11867 2005-06-29  Peter Bartok  <pbartok@novell.com>
11869         * TextBoxBase.cs: Re-align caret after deleting a character
11870         * TextControl.cs:
11871           - DeleteChars(): Ensure that tag covers the provided position
11872           - StreamLine(): Drop reference for dropped tag
11874 2005-06-29  Peter Bartok  <pbartok@novell.com> 
11876         * TextControl.cs: 
11877           - Selections now work properly, anchoring at the initial location
11878             and properly extending in either direction (SetSelectionToCaret(),
11879             SetSelectionStart() and SetSelectionEnd())
11880           - No longer redraws the whole control on selection change, now
11881             calculates delta between previous and new selection and only
11882             invalidates/redraws that area
11883           - Fixed FindPos() math off-by-one errors
11884           - Changed DeleteChars() to verify the provided tag covers the
11885             provided position, selections may have a tag that doesn't cover
11886             the position if the selection is at a tag border
11887           - Fixed off-by-one errors in DeleteChars()
11888           - Added missing streamlining check in DeleteChars() to remove
11889             zero-length tags
11890           - Implemented Invalidate() method, now properly calculates exposures
11891             between two given lines/positions
11892           - Implemented SetSelection()
11893           - Obsoleted and removed FixupSelection()
11894           - Improved RecalculateDocument() logic, removing code duplication
11896 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11898         * LibSupport.cs: changes to match different input/output arguments.
11900 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11902         * LibSupport.cs: added libsupport.so init routine.
11904 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
11905         
11906         * ControlBindingsCollection.cs
11907                 - Throws an exception on null datasource when adding
11908                 - Checks for duplicated bindings when adding
11910 2005-06-28  Jackson Harper  <jackson@ximian.com>
11912         * TreeView.cs (OnKeyDown): Support left and right properly
11913         (navigates as well as expanding and collapsing.
11914         - Add support for Multiply, this expands all the selected nodes
11915         children.
11916         - Fix some tabbing.
11918 2005-06-28  Jackson Harper  <jackson@ximian.com>
11920         * TreeView.cs: Implement keyboard navigation, currently supports,
11921         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
11922         support for toggling checkboxes with the space bar.
11924 2005-06-28  Jackson Harper  <jackson@ximian.com>
11926         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
11927         tree.
11929 2005-06-28  Jackson Harper  <jackson@ximian.com>
11931         * TreeView.cs: Add missing event.
11933 2005-06-27  Peter Bartok  <pbartok@novell.com> 
11935         * TextControl.cs:
11936           - Made line ending size configurable (now allows for counting 
11937             lineendings as \n or \r\n)
11938           - Added margin to viewport to keep caret visible on right side
11939           - Fixed translation routines for line/pos to documentpos to consider
11940             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
11941           - Fixed some line-endings to be unix style
11942           - Fixed Document.FormatText to perform it's calculations 1-based
11943           - Added descriptions for a few methods that might otherwise get 
11944             used wrong
11945           - Added NOTE section with some basic conventions to remember at 
11946             the top of the file
11947           - Major fixup for RichTextBox selection drawing:
11948             * Fixed crashes when multiple tags on a single line were selected
11949             * fixed selection box drawing not overlaying text
11950             * fixed bogus offset calculation for tags not starting at index 1
11951             * Switched behaviour from using multiple Substrings of a 
11952               StringBuilder.ToString() to using multiple 
11953               StringBuilder.ToString(start, length) statements, hoping this is
11954               faster (kept original version commented out in the code, in case
11955               original version was faster)
11956         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
11957           alignment != Left
11958         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
11959           call it as well
11961 2005-06-27  Jackson Harper  <jackson@ximian.com>
11963         * TabControl.cs: Move to the left and right with the arrow
11964         keys. These keys don't cycle beyond first and last like
11965         tab. Refresh all the tabs when scrolling them to the left or
11966         right.
11968 2005-06-27  Jackson Harper  <jackson@ximian.com>
11970         * TabControl.cs:
11971           - ToString: Added method
11972           - CreateParams: Remove TODO and comment
11973           - OnKeyDown: Cycle through bounds properly.
11974           - SelectedIndex: Scroll to the right or left if we need to
11975           display the newly selected tab.
11977 2005-06-23  Jackson Harper  <jackson@ximian.com>
11979         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
11980         set.
11982 2005-06-23  Jackson Harper  <jackson@ximian.com>
11984         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
11985         CTRL-SHIFT-TAB, and HOME, END are there any others?
11987 2005-06-23  Jackson Harper  <jackson@ximian.com>
11989         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
11991 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
11992         
11993         * DataGridTextBoxColumn.cs: fixes and enhancements
11994         * ThemeWin32Classic.cs: fixes and enhancements
11995         * DataGridBoolColumn.cs:  fixes and enhancements
11996         * DataGridDrawingLogic.cs:  fixes and enhancements
11997         * CurrencyManager.cs: fixes and enhancements
11998         * DataGrid.cs: fixes and enhancements
11999         * DataGridColumnStyle.cs:  fixes and enhancements
12001 2005-06-22  Jackson Harper  <jackson@ximian.com>
12003         * TabControl.cs: Add some missing methods that just call into the
12004         base. Make the TabPageCollection's IList interface behave in the
12005         same manner as the MS implementation.
12007 2005-06-22  Peter Bartok  <pbartok@novell.com> 
12009         * TextControl.cs: Added sanity check
12010         * TextBoxBase.cs: 
12011           - Fixed wrapping behaviour, don't set wrap on single line controls
12012             (this fixes the breakage of colordialog introduced in an earlier
12013              checkin)
12014           - Added rudimentary support for autoscrolling right-aligned controls
12015             (still needs fixing, also, center alignment scroll is missing)
12017 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
12018         
12019         * ScrollBar.cs: Fixes thumbpos on Maximum values
12021 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
12022         
12023         * PropertyGridView.cs: Pass context information to UITypeEditors 
12025 2005-06-21  Peter Bartok  <pbartok@novell.com> 
12027         * TextBoxBase.cs:
12028           - Now calling PositionCaret with absolute space coordinates
12029           - Enabled vertical scrolling
12030           - Better tracking of scrollbar changes, tied into WidthChange
12031             event
12032           - Improved cursor tracking
12033           - Removed debug output
12034         * TextControl.cs:
12035           - PositionCaret coordinates are now works in absolute space, not 
12036             the canvas
12037           - Improved tracking of document size
12038           - Added events for width and height changes
12040 2005-06-21  Peter Bartok  <pbartok@novell.com>
12042         * Form.cs: Set focus to active control when form is activated
12043         * TextControl.cs: 
12044           - Added word-wrap functionality to RecalculateLine() 
12045           - Added some short function descriptions for VS.Net to aid in
12046             writing dependent controls
12047           - Added Caret property, returning the current coords of the caret
12048           - Added ViewPortWidth and ViewPortHeight properties
12049           - Added Wrap property
12050           - Added CaretMoved event
12051           - Removed some old debug code
12052           - Split() can now create soft splits
12053           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
12054           - Added method to format existing text
12055           - Fixed size/alignment calculations to use viewport
12056           - RecalculateDocument now can handle changing line-numbers while
12057             calculating lines
12059         * TextBox.cs:
12060           - Added some wrap logic, we don't wrap if alignment is not left
12061           - Added casts for scrollbar var, base class switched types to
12062             also support RichTextBoxA
12063           - Implemented handling of scrollbar visibility flags
12065         * TextBoxBase.cs:
12066           - Switched scrollbars type to RichTextBoxScrollBars to support
12067             RichTextBox
12068           - Added tracking of canvas width/height
12069           - Switched scrollbars to be not selectable (to keep focus on text)
12070           - Added central CalculateDocument() method to handle all redraw
12071             requirements
12072           - Added ReadOnly support
12073           - Added WordWrap support
12074           - Fixed handling of Enter key (we now treat it as a DialogKey)
12075           - Fixed caret positioning when h or v scroll is not zero
12076           - Fixed placing/generation of vertical scrollbar
12077           - Added CalculateScrollBars() method to allow updating scrollbar
12078             limits and visibility
12079           - Fixed handling of horizontal scroll
12080           - Added handling of vertical scroll
12081           - Implemented auto-'jump' when caret moves to close to a left or
12082             right border and there is text to be scrolled into view (currently
12083             there's the potential for a stack overflow, until a bug in
12084             scrollbar is fixed)
12086 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
12087         
12088         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
12090 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
12092         * Mime.cs:
12093         - added inodes.
12094         - return application/x-zerosize for files with size zero
12095           (if no extension pattern matches).
12096         - check matches collection for strings too.
12097         - return only the first mime type if the name value
12098           collection has more than one mime type.
12100 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
12101         
12102         * PropertyGrid.cs: Cleaned up some TODOs
12103         * PropertyGridView.cs: Added support for UITypeEditors
12105 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
12106         
12107         * DataGrid.cs: clears cached value
12109 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
12111         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
12112         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
12113         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
12114         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
12115         
12116 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
12118         * ThemeWin32Classic.cs: fixes colour
12120 2005-06-15  Peter Bartok  <pbartok@novell.com>
12122         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
12123         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
12124         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
12125         * Control.cs: Added some MWFCategory and MWFDescription attributes
12126         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
12128 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
12130         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
12131         usage
12133 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
12135         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
12136         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
12137         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
12138         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
12139         * DataGrid.cs: default datagrid settings for Default Styles, fixes
12140         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
12142 2005-06-13  Jackson Harper  <jackson@ximian.com>
12144         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
12145         isn't printed when the user enables dropping. (X11 does accept
12146         drops).
12147         
12148 2005-06-13  Jackson Harper  <jackson@ximian.com>
12150         * TreeView.cs: Remove some TODOS.
12152 2005-06-13  Jackson Harper  <jackson@ximian.com>
12154         * Form.cs: Hook into the mdi framework.
12155         * MdiClient.cs: Use the base control collections add method so
12156         parents get setup correctly. Set the default back colour and dock
12157         style.
12158         * MdiChildContext.cs: New class, this bad actor handles an
12159         instance of an MDI window. Right now there is only basic
12160         support. You can drag, close, and resize windows. Minimize and
12161         Maximize are partially implemented.
12163 2005-06-13  Jackson Harper  <jackson@ximian.com>
12165         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
12166         freaky when both vals are negative. NOTE: There are probably other
12167         places in XplatUIX11 that this needs to be done.
12169 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
12171         * DataGrid.cs: implement missing methods, move KeyboardNavigation
12172         * DataGridColumnStyle.cs: fixes signature
12174 2005-06-12  Jackson Harper  <jackson@ximian.com>
12176         * XplatUIX11.cs: Use sizing cursors similar to the ones on
12177         windows.
12179 2005-06-11  Jackson Harper  <jackson@ximian.com>
12181         * StatusBarPanel.cs: Signature cleanups. Implement
12182         BeginInit/EndInit.
12184 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
12186         * DataGridTextBoxColumn.cs: Honors aligment
12187         * GridColumnStylesCollection.cs: Contains is case unsensitive
12188         * GridTableStylesCollection.cs: several fixes
12189         * DataGridTableStyle.cs: default column creation
12190         * DataGridDrawingLogic.cs: fixes
12191         * CurrencyManager.cs: ListName property
12192         * DataGrid.cs: multiple styles support
12193         * DataGridColumnStyle.cs: fixes
12194         
12196 2005-06-10  Peter Bartok  <pbartok@novell.com>
12198         * Control.cs(Select): Moved SetFocus call to avoid potential
12199           loops if controls change the active control when getting focus
12200         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
12201           the up/down buttons
12203 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
12205         * ImageListConverter.cs: Implemented
12207 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
12209         * MonthCalendar.cs: Wired in NumericUpDown control for year
12211 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
12213         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
12214           DoubleClick events, since they are not meant to be fired.
12216 2005-06-09  Peter Bartok  <pbartok@novell.com>
12218         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
12219           Jonathan's standalone controls into MWF, implemented missing
12220           events, attributes and methods; added xxxAccessible classes
12221         * AccessibleObject.cs: Made fields internal so other classes
12222           can change them if needed
12224 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
12226         * UpDownBase.cs: Complete implementation
12227         * NumericUpDown.cs: Complete implementation
12228         * DomainUpDown.cs: Complete implementation
12230 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
12232         * DataGridTextBoxColumn.cs: drawing fixes
12233         * DataGridCell.cs: fixes ToString method to match MSNet
12234         * DataGridTableStyle.cs: fixes
12235         * DataGridBoolColumn.cs: fixes, drawing
12236         * DataGridDrawingLogic.cs: fixes, new methods
12237         * DataGridTextBox.cs: Keyboard and fixes
12238         * DataGrid.cs:
12239                 - Keyboard navigation
12240                 - Scrolling fixes
12241                 - Row selection (single, multiple, deletion, etc)
12242                 - Lots of fixes
12243         
12244 2005-06-07  Jackson Harper  <jackson@ximian.com>
12246         * ThemeWin32Classic.cs: Clear the background area when drawing
12247         buttons.
12249 2005-06-06  Peter Bartok  <pbartok@novell.com>
12251         * ImageListStreamer.cs: Fixed signature for GetData
12252         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
12253         * ComboBox.cs:
12254           - Added missing ChildAccessibleObject class
12255           - Added missing OnXXXFocus overrides, switched to using those
12256             instead of the event handler
12257         * Control.cs:
12258           - Added Parent property for ControlAccessibleObject
12259           - Fixed signatures
12260           - Fixed attributes
12261           - Added ResetBindings()
12262         * ListBindingConverter.cs: Implemented some methods
12263         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
12264         * ImageList.cs: Implemented basic handle scheme, removed TODOs
12265         * ContainerControl.cs: Fixed signature, now subscribing to the
12266           ControlRemoved event instead of overriding the handler, LAMESPEC
12267         * CurrencyManager.cs: Added missing attribute
12268         * MonthCalendar.cs: Added missing properties
12270 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
12272         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
12273         
12274 2005-06-06  Gaurav Vaish and Ankit Jain
12276         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
12277         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
12278         
12279 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
12281         * Control.cs: fixes CreateParams Width / Height.
12283 2005-06-05  Peter Bartok  <pbartok@novell.com>
12285         * Win32DnD.cs: Removed compilation warnings
12287 2005-06-05  Peter Bartok  <pbartok@novell.com>
12289         * Control.cs (CreateParams): Since we don't know if one of the
12290           properties we use is overridden, lets make sure if we fail accessing
12291           we continue with a backup plan
12293 2005-06-05  Peter Bartok  <pbartok@novell.com>
12295         * Win32DnD.cs:
12296           - Removed debug output
12297           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
12298             struct
12299           - Plugged resource leak
12300         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
12301           MS size
12303 2005-06-05  Peter Bartok  <pbartok@novell.com>
12305         * XplatUIWin32.cs: Removed DnD code
12306         * Win32DnD.cs: Implemented drop source and drop target functionality
12308 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12310         * UpDownBase.cs: remove duplicate addition of event, enable some code
12311         that was commented out.
12312         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
12313         Validate input when a key is pressed. It works fine now for every
12314         combination of Hexadecimal. Only missing some drawing love when sharing
12315         space with other controls.
12317 2005-06-04  Peter Bartok  <pbartok@novell.com>
12319         * Control.cs:
12320           - We need to pass a window for DragDrop, so enable callback events
12321           - Added DnD callback events when being a DragSource
12322         * XplatUI.cs (StartDrag): Added window handle argument
12323         * XplatUIDriver.cs (StartDrag): Added window handle argument
12324         * QueryContinueDragEventArgs: Made fields internally accessible so
12325           drivers can set them
12326         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
12327           can set them
12329 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
12331         * DataGridTextBoxColumn.cs: column text editing
12332         * DataGridTableStyle.cs: Respect columns styles created by the user
12333         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
12334         * DataGridBoolColumn.cs: bool column editing
12335         * DataGrid.cs: fixes to scrolling, properties, etc
12336         * DataGridTextBox.cs: handle keyboard
12337         * DataGridColumnStyle.cs: fixes
12339 2005-06-02  Jackson Harper  <jackson@ximian.com>
12341         * ImageListStreamer.cs: Somewhat broken implementation of
12342         GetObjectData. The RLE needs some work to match MS properly.
12344 2005-06-02  Jackson Harper  <jackson@ximian.com>
12346         * X11Dnd.cs: Attempting to keep at least one file in MWF
12347         monostyled.
12349 2005-06-02  Peter Bartok  <pbartok@novell.com>
12351         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
12352           that way
12354 2005-06-02  Peter Bartok  <pbartok@novell.com>
12356         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
12357         * XplatUI.cs: Added DoDragDrop() method
12358         * XplatUIDriver.cs: Added DoDragDrop() method
12360 2005-06-02  Jackson Harper  <jackson@ximian.com>
12362         * Splitter.cs: Implement BorderStyle.
12364 2005-06-02  Jackson Harper  <jackson@ximian.com>
12366         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
12367         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
12368         X11 using XDND.
12370 2005-06-02  Peter Bartok  <pbartok@novell.com>
12372         * DataObject.cs:
12373           - Added Data setter
12374           - Fixed broken insertion code for SetData, now also
12375             overwrites any existing entry of the same format name
12376         * Hwnd.cs: Added list of pointers that automatically gets
12377           freed when the window is disposed
12378         * XplatUI.cs: Call driver initialization method when loading
12379           a driver
12380         * Control.cs:
12381           - OnDragLeave takes EventArgs, not DragEventArgs
12382           - Added setting of WS_EX_ACCEPTFILES style when dropping is
12383             supported
12384           - Forces style update when drop state changes
12385         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
12386           not perfect since we cannot (yet) call the IDataObject.GetData()
12387           method, we keep getting 0x80004005 error, dunno why)
12389 2005-06-02  Peter Bartok  <pbartok@novell.com>
12391         * DragEventArgs.cs: Make fields internal so we can cache the
12392           object and re-set the fields from XplatUI
12394 2005-06-02  Jackson Harper  <jackson@ximian.com>
12396         * Control.cs: Add some internal methods so the DnD subsystem can
12397         raise DnD events. Also call into the driver when AllowDrop is set.
12398         * XplatUI.cs:
12399         * XplatUIDriver.cs: New method for setting whether or not a window
12400         is allowed to accept drag and drop messages.
12401                 
12402 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
12403         
12404         * ScrollBar.cs: Make sure that values sent in Scroll events
12405         are always between Maximum and Minimum.
12407 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
12409         * Menu.cs: Call MenuChanged when menuitem visibility has been
12410         changed.
12411         * MenuItem.cs: Rebuild menu when item is (not) visible.
12412         * MainMenu.cs: MainMenu has special MenuChanged.
12413         * Theme.cs: Caption and FrameBorderSize are not fixed.
12414         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
12415         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
12416         * XplatUIX11.cs,
12417         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
12418         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
12420 2005-05-30  Jackson Harper  <jackson@ximian.com>
12422         * DataFormat.cs: We can't statically initialize this stuff because
12423         it calls into the xplatui and could create a loop. So we lazy init
12424         it.
12426 2005-05-28  Jackson Harper  <jackson@ximian.com>
12428         * Control.cs: Proper implementation of Product(Name/Version).
12430 2005-05-27  Jackson Harper  <jackson@ximian.com>
12432         * DataObject.cs: Dont crash if no data is found.
12434 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
12435         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
12436                 as per status page, guessing it should be set to true
12438 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
12440         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
12441         * DataGridTableStyle.cs: set proper formatting text, def header text
12442         * ThemeWin32Classic.cs: new themable paramaters
12443         * DataGridBoolColumn.cs: paint check box, get data, fixes
12444         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
12445         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
12446         * DataGridColumnStyle.cs: fixes
12447         * Theme.cs: new themable paramaters
12448                 
12449 2005-05-26  Peter Bartok  <pbartok@novell.com>
12451         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
12453 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
12454         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
12456 2005-05-24  Peter Bartok  <pbartok@novell.com>
12458         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
12459           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
12460           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
12461           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
12462           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
12463           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
12464           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
12465           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
12466           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
12467           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
12468           missing attributes, etc
12469         * DataGridPreferredColumnWidthTypeConverter.cs: Added
12471 2005-05-24  Peter Bartok  <pbartok@novell.com>
12473         * Help.cs: Added, implemented trivial functions, throws up MessageBox
12474           when user tries to get help
12475         * DataObject.cs, DataFormats.cs, LinkArea.cs,
12476           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
12477           to suppress warnings
12478         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
12479           avoid unreachable code warning
12481 2005-05-20  Peter Bartok  <pbartok@novell.com>
12483         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
12485 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
12487         * DataGridTextBoxColumn.cs: Basic painting methods
12488         * DataGridTableStyle.cs: Set table style in the column
12489         * ThemeWin32Classic.cs: Use Theme for colors
12490         * DataGridDrawingLogic.cs: Implement more drawing
12491         * DataGrid.cs: drawing, theming, enhacements, fixes
12492         * DataGridColumnStyle.cs: fixes, drawing
12493         * Theme.cs: theming for Datagrid
12495 2005-05-20  Peter Bartok  <pbartok@novell.com>
12497         * Cursor.cs: Implemented GetObjectData() method
12499 2005-05-20  Peter Bartok  <pbartok@novell.com>
12501         * Cursors.cs: Added setting of cursor name
12502         * Cursor.cs:
12503           - Implemented constructors
12504           - Implemented Draw and DrawStretched
12505           - Implemented Current property
12506           - Implemented == and != operators
12507           - Implemented Dispose()
12508           - Implemented ToString
12509           - Added missing attributes
12510         * XplatUIX11.cs:
12511           - Added missing reset for OverrideCursor when DoEvents is called
12512           - Fixed creation of cursor, logic was wrong
12513         * XplatUIWin32.cs:
12514           - Added missing reset for OverrideCursor when DoEvents is called
12515           - Fixed creation of cursor, bit arrays were swapped
12516         * Clipboard.cs: Removed obsolete MonoTODO attribute
12518 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
12520         * ComboBox.cs: fixes OnSelectedItemChanged
12521         * ControlBindingsCollection.cs: fixes item range check
12523 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
12525         * UpDownBase.cs:
12526                 - Calc preferred height properly
12527                 - Implement missing properties
12528                 
12529         * NumericUpDown.cs: Implement missing events
12531 2005-05-19  Jackson Harper  <jackson@ximian.com>
12533         * TabControl.cs: New method that resizes the tab pages before
12534         redrawing them. This as needed as the control is double buffered
12535         and sizing will not be recalculated unless ResizeTabPages is
12536         called.
12537         * TabPage.cs: Set base.Text instead of Text in the constructor so
12538         that UpdateOwner does not get called. Use the new Redraw method of
12539         TabControl instead of Refresh so the sizing is recalculated.
12540         * ThemeWin32Classic.cs: Draw the text for button tabs.
12542 2005-05-19  Jackson Harper  <jackson@ximian.com>
12544         * Control.cs: Paint control background images. Fix typo where
12545         PaintControlBackground was not getting called correctly.
12547 2005-05-19  Peter Bartok  <pbartok@novell.com>
12549         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
12550           I can investigate, apparently I broke FileDialog
12552 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
12554         * AxHost.cs: Some simple properties.
12555         * Control.cs: window must be accessible after ctor.
12556         * Form.cs: Added TransparencyKey property.
12557         * TextBoxBase.cs: Implemented Clear. Text property can be null.
12558         * XplatUIWin32.cs: SetBorderStyle implemented.
12560 2005-05-18  Peter Bartok  <pbartok@novell.com>
12562         * DataObject.cs: Entries are not global but particular to the
12563           DataObject, now it behaves that way
12564         * XplatUIWin32.cs: Implemented Clipboard methods
12565         * Clipboard.cs: Implemented
12566         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
12567         * XplatUIOSX.cs: Updated to final clipboard prototypes
12568         * XplatUIX11.cs: Implemented Clipboard methods
12569         * XplatUIDriver.cs: Updated to final clipboard prototypes
12570         * XplatUIStructs.cs:
12571           - Added BITMAPINFOHEADER struct
12572           - Added ClipboardFormats enum
12573         * X11Structs.cs:
12574           - Added ClipboardStruct
12575           - Added Atom enum items for clipboard types
12576           - Fixed atom types for Selection event structures
12577         * DataFormats.cs:
12578           - Added internal properties and methods for drivers to enumerate
12579             all known formats
12580           - Switched initialization method to allow drivers to assign their
12581             own IDs even for the MS predefined clipboard IDs
12582         * XplatUI.cs: Updated to final clipboard interface
12584 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
12585         * PropertyGridView.cs: Fixed compiler warnings.
12587 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
12588         * PropertyGrid.cs: Added some event calls
12589         * PropertyGridView.cs: Change drawing code to use double buffering
12590         * PropertyGridTextBox.cs: Changed Text property name
12591         * GridItem.cs: Added Bounds property.
12592         * GridEntry.cs: Added Bounds property.
12594 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
12596         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
12597         since GetType() may not return the correct type if the object is
12598         a remoting proxy.
12600 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
12602         * TreeNodeCollection.cs: fixes get/set item ranges
12603         
12604 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
12606         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
12607                 
12608 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
12610         * ComboBox.cs: Fix item range comparation
12611         * ListView.cs: Fix item range comparation
12613 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
12615         * FontDialog.cs:
12616           - Clear example panel when OnPaint is called
12617           - Better solution for displaying the example panel text
12618           - Select default indexes in the ListBoxes
12620 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
12622         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
12624 2005-05-11  Peter Bartok  <pbartok@novell.com>
12626         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
12627         * SelectionRangeConverter.cs: Implemented
12628         * PropertyGrid.cs: Fixed attribute value
12629         * Control.cs:
12630           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
12631           - Added Sebastien Pouliot's CAS Stack Propagation fixes
12632         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
12633           that's common to all drivers. First methods to go there are
12634           Sebastien Pouliot's CAS Stack Propagation helper methods
12635         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
12636           Sebastien Pouliot for CAS Stack Propagation
12638 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
12640         * OSXStructs.cs:
12641           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
12643 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
12645         * DataGridTextBoxColumn.cs: fixed some members
12646         * GridColumnStylesCollection.cs: indexed column is case insensitive
12647         * DataGridTableStyle.cs: fixes
12648         * ThemeWin32Classic.cs: add new theme parameter
12649         * Theme.cs: add new theme parameter
12650         * DataGridDrawingLogic.cs: Datagrid's drawing logic
12651         * DataGrid.cs: fixes, new internal properties, etc.
12652         * DataGridColumnStyle.cs: allows to set grid value
12653         *
12655 2005-05-10  Peter Bartok  <pbartok@novell.com>
12657         * AccessibleObject.cs:
12658           - Removed MonoTODO attribute on help, method is correct
12659           - Fixed Bounds property
12660         * AxHost.cs: Moved MonoTODO
12661         * ButtonBase.cs: Now setting AccessibleObject properties
12662         * RadioButton.cs: Setting proper AccessibleObject role
12663         * CheckBox.cs: Setting proper AccessibleObject role
12664         * ControlBindingsCollection.cs: Added properties, methods and attributes
12665         * DataFormats.cs: Fixed awkward internal API, and changed to enable
12666           userdefined DataFormats.Format items as well
12667         * ListControl.cs: Removed data_member from the public eye
12668         * OpenFileDialog.cs:
12669           - Made class sealed
12670           - Added missing attributes
12671         * SaveFileDialog.cs: Added missing attributes
12672         * ImageListStreamer.cs: Fixed code that caused warnings
12673         * LinkLabel.cs: Removed unreachable code
12674         * TreeView.cs: Fixed code that caused warnings
12675         * PropertyGridView.cs: Fixed code that caused warnings
12676         * GridColumnStylesCollection.cs: Added missing attributes
12677         * GridTableStylesCollection: Added missing attribute
12678         * PropertyManager: Added .ctor
12679         * SecurityIDType: Added
12680         * DataObject.cs: Implemented class
12681         * LinkArea.cs: Added missing attribute
12683 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
12685         * RadioButton.cs: call base method to allow to fire OnClick event
12686         * UpDownBase.cs: OnMouseUp call base method
12687         * CheckedListBox.cs: call base method before returning
12688         * TrackBar.cs: call base method before returning
12689         
12691 2005-05-10  Peter Bartok  <pbartok@novell.com>
12693         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
12694           for messages
12696 2005-05-10  Peter Bartok  <pbartok@novell.com>
12698         * DataFormats.cs: Implemented
12699         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
12700           XplatUIX11.cs: Added Clipboard APIs
12701         * XplatUIWin32.cs: Implemented Clipboard APIs
12702         * FolderBrowserDialog.cs: Added missing event, attributes
12704 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
12706         * CheckBox.cs: call base method to allow to fire OnClick event
12708 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
12710         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
12712 2005-05-06  Peter Bartok  <pbartok@novell.com>
12714         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
12715         * Screen.cs: Implemented
12716         * HelpNavigator.cs: Added
12717         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
12718           property
12719         * HelpProvider.cs: Implemented all we can do until we have a CHM
12720           help library (which means that "What's This" does work now)
12722 2005-05-06  Jackson Harper  <jackson@ximian.com>
12724         * XplatUIX11.cs: Fix waking up the main loop.
12725                 
12726 2005-05-05  Peter Bartok  <pbartok@novell.com>
12728         * XplatUI.cs: Updated revision
12729         * Form.cs: Removed enless loop
12730         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
12731         * Label.cs (OnPaint): Added call to base.OnPaint()
12732         * ToolTip.cs: Made ToolTipWindow reusable for other controls
12733         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
12734         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
12735         * AxHost.cs: Added
12736         * ButtonBase.cs: Moved base.OnPaint() call to end of method
12737         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
12738           to ToolTip.ToolTipWindow for drawing and size methods; this allows
12739           reuse of ToolTipWindow by other controls
12740         * SizeGrip.cs: Moved base.OnPaint() call to end of method
12741         * XplatUIX11.cs: Now clipping drawing area (experimental)
12742         * PictureBox.cs: Moved base.OnPaint() call to end of method
12743         * Theme.cs: Fixed ToolTip abstracts to match new format
12744         * ErrorProvider.cs: Implemented
12746 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
12748         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
12749         * LinkLabel.cs:
12750                 - Adds cursors
12751                 - Handles focus
12752                 - Implements LinkBehavior
12753                 - Fixes many issues
12755 2005-05-03  Jackson Harper  <jackson@ximian.com>
12757         * ListView.cs: Calculate the scrollbar positioning on resize and
12758         paint, so they get put in the correct place.
12760 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
12762         * ColorDialogs.cs: The small color panels are now handled by
12763           SmallColorControl. This fixes drawing of the focus rectangle
12764           and adds a 3D border.
12766 2005-05-03  Peter Bartok  <pbartok@novell.com>
12768         * Control.cs: Modified version of Jonathan Chamber's fix for
12769           double-buffering
12771 2005-05-03  Jackson Harper  <jackson@ximian.com>
12773         * ListView.cs: Remove redraw variable. Control now handles whether
12774         or not a redraw needs to be done, and will only raise the paint
12775         event if redrawing is needed.
12777 2005-05-03  Jackson Harper  <jackson@ximian.com>
12779         * Splitter.cs: No decorations for the splitter form. Cache the
12780         hatch brush.
12782 2005-05-03  Jackson Harper  <jackson@ximian.com>
12784         * TreeView.cs: Use dashed lines to connect nodes. Use the
12785         ControlPaint method for drawing the focus rect instead of doing
12786         that in treeview.
12788 2005-05-02  Peter Bartok  <pbartok@novell.com>
12790         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
12792 2005-04-29  Jackson Harper  <jackson@ximian.com>
12794         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
12795         entire image buffer. Just clear the clipping rectangle.
12797 2005-04-29  Jackson Harper  <jackson@ximian.com>
12799         * ThemeWin32Classic.cs: Don't draw list view items that are
12800         outside the clipping rectangle.
12802 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
12804         * ListBox.cs: added horizontal item scroll
12806 2005-04-29  Jackson Harper  <jackson@ximian.com>
12808         * ThemeWin32Classic.cs: Remove some old debug code that was
12809         causing flicker with the new double buffering code.
12811 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
12813         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
12814         behave like combobox and comboboxlist (still not sure if this is
12815         correct though).
12817 2005-04-28  Jackson Harper  <jackson@ximian.com>
12819         * ThemeWin32Classic.cs: Don't fill the middle of progress
12820         bars. This fills areas outside of the clip bounds that don't need
12821         to be filled.
12823 2005-04-28  Jackson Harper  <jackson@ximian.com>
12825         * Control.cs: Don't expose functionality to touch the image buffers.
12826         * ProgressBar.cs:
12827         * ListView.cs: We do not need to (and no longer can) manipulate
12828         the image buffers directly. All of this is handled by Control.
12830 2005-04-28  Peter Bartok  <pbartok@novell.com>
12832         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
12833           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
12834           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
12836 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
12838         * Combobox:
12839                 - Adjust control's height for non-simple comboboxes (bug fix)
12840                 - Remove dead code
12841         * MenuAPI.cs: remove unused var
12842         * ScrollBar.cs: remove unsed var
12843                  
12844         * ListBox.cs: unselect items when clearing
12846 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
12848         * ListControl.cs: honors OnPositionChanged and default Selected Item
12849         * ListBox.cs: unselect items when clearing
12851 2005-04-27  Jackson Harper  <jackson@ximian.com>
12853         * X11Keyboard.cs: Initialize a default keyboard and give a warning
12854         if a "correct" keyboard is not found. This will make us not crash,
12855         but might give some users bad keyboard layouts...seems to be the
12856         same thing rewind does.
12858 2005-04-27  Jackson Harper  <jackson@ximian.com>
12860         * BindingManagerBase.cs: Attach the current/position changed
12861         handlers to their respective events.
12863 2005-04-27  Jackson Harper  <jackson@ximian.com>
12865         * Control.cs: Make sure that the first WM_PAINT does a full draw,
12866         not just a blit.
12867         * ThemeWin32Classic.cs: Don't fill the background for picture
12868         boxes. This could overright user drawing.
12869         * ComboBox.cs: Just fill the clipping rect not the entire client
12870         rect when drawing the background. This prevents pieces of the
12871         image buffer from getting overwritten and is theoretically faster.
12873 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
12875         * ComboBox.cs: Databinding support fixes, fire missing events
12876         * ListControl.cs: implement missing methods and properties, fixes
12877         * ThemeWin32Classic.cs: Databiding support on Drawing
12878         * CheckedListBox.cs: Databinding support fixes, fire missing events
12879         * ListBox.cs: Databinding support fixes, fire missing events
12880         
12881 2005-04-25  Peter Bartok  <pbartok@novell.com>
12883         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
12885 2005-04-25  Jackson Harper  <jackson@ximian.com>
12887         * TreeView.cs: Use the horizontal scrollbars height not width when
12888         determining how much of the client area is available.
12890 2005-04-25  Jackson Harper  <jackson@ximian.com>
12892         * Control.cs: Double buffering is handled differently now. As per
12893         the spec, the extra buffer is created in the WM_PAINT message and
12894         passed down to the control's drawing code.
12895         * GroupBox.cs:
12896         * Label.cs:
12897         * CheckBox.cs:
12898         * ProgressBar.cs:
12899         * RadioButton.cs:
12900         * ColorDialog.cs:
12901         * ComboBox.cs:
12902         * PropertyGridView.cs:
12903         * UpDownBase.cs:
12904         * MessageBox.cs:
12905         * MenuAPI.cs:
12906         * ListView.cs:
12907         * ButtonBase.cs:
12908         * SizeGrip.cs:
12909         * ScrollBar.cs:
12910         * ListBox.cs:
12911         * TrackBar.cs:
12912         * ToolBar.cs:
12913         * PictureBox.cs:
12914         * DateTimePicker.cs:
12915         * StatusBar.cs:
12916         * TreeView.cs: Update to new double buffering system.
12917         * MonthCalendar.cs: Uncomment block, as Capture is now
12918         working. Update to new double buffering
12919         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
12920         * PaintEventArgs.cs: New internal method allows us to set the
12921         graphics object. This is used for double buffering.
12922         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
12923         rectangle. The internal paint_area var has been removed from
12924         StatusBar. The clipping rect should be used instead.
12925         * Theme.cs: Give the PictureBox drawing method a clipping rect.
12926         * TabPage.cs: The RefreshTabs method was removed, so just call the
12927         tab controls Refresh method now.
12928         * TabControl.cs: Update to new double buffering. Make sure the
12929         handle is created before sizing the tab pages, otherwise we will
12930         get stuck in a loop.
12932 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
12934         * LinkLabel.cs: Fix typo, bug #74719; patch
12935           from Borja Sanchez Zamorano
12937 2005-04-22  Jackson Harper  <jackson@ximian.com>
12939         * TreeNode.cs: Implement Handle stuff.
12940         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
12942 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
12944         * DataGridTextBoxColumn.cs: call base constructors, fixes
12945         * GridColumnStylesCollection.cs: missing events, methods, and functionality
12946         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
12947         * DataGridTableStyle.cs: implements create default column styles
12948         * DataGridBoolColumn.cs: which types can handle
12949         * DataGrid.cs: missing methods, fixes, new functionality
12950         * DataGridColumnStyle.cs: fixes
12952 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
12953         * FolderBrowserDialog.cs:
12954         - Use a thread to fill the TreeView
12955         - Adjusted some sizes
12957 2005-04-19  Peter Bartok  <pbartok@novell.com>
12959         * LinkLabel.cs: (Re-)create the pieces when setting the Text
12960           property. Fixes #74360.
12962 2005-04-19  Jackson Harper  <jackson@ximian.com>
12964         * XEventQueue.cs: Lock when getting the lockqueue size.
12965         * PictureBox.cs: Call base OnPaint
12966         
12967 2005-04-19  Peter Bartok  <pbartok@novell.com>
12969         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
12970           messages were no longer being processed (this broke BeginInvoke)
12972           
12973 2005-04-18  Jackson Harper  <jackson@ximian.com>
12975         * TreeView.cs: buglet that caused node images to get drawn
12976         regardless of whether or not they were in the clipping rectangle.
12978 2005-04-18  Jackson Harper  <jackson@ximian.com>
12980         * CurrencyManager.cs: There are four rules for GetItemProperties:
12981         - If the type is an array use the element type of the array
12982         - If the type is a typed list, use the type
12983         - If the list contains an Item property that is not an object, use
12984         that property
12985         - use the first element of the list if there are any elements in
12986         the list.
12987         
12988 2005-04-17  Jackson Harper  <jackson@ximian.oom>
12990         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
12991         click. This handles offsets for scrolling properly and reduces
12992         memory. Also fixed GetNode to not offset now that TopNode works
12993         properly.
12994         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
12995         
12996 2005-04-17  Jackson Harper  <jackson@ximian.com>
12998         * CursorConverter.cs: Initial implementation.
13000 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
13002         * ListControl.cs: work towards complex data binding support on ListControl
13003         * CurrencyManager.cs: work towards complex data binding support on ListControl
13004         * ListBox.cs: work towards complex data binding support on ListControl
13007 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
13009         * GridTableStylesCollection.cs: fixes name and constructor
13010         * DataGridTableStyle.cs: fixes
13011         * DataGridBoolColumn.cs: fixes names and constructors
13012         * DataGrid.cs: define methods and properties. Some init implementations
13013         * DataGridCell.cs: define methods and properties. Some init implementations
13014         * GridTablesFactory.cs: Define methods and properties
13016 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
13018         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
13019         graphics port changes.  We still want the coordinates in global screen
13020         coordinates.
13022 2005-04-14  Jackson Harper  <jackson@ximian.com>
13024         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
13025         check plus minus or checkbox clicks unless those features are enabled.
13027 2005-04-14  Jackson Harper  <jackson@ximian.com>
13029         * TreeView.cs: Add methods for setting the top and bottom visible
13030         nodes. TreeNode::EnsureVisible uses these methods.
13031         * TreeNode.cs: Implement EnsureVisible
13033 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
13035         * Form.cs: Pospone menu assignation if the window has not been created yet
13036         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
13037         size and position
13039 2005-04-12  Jackson Harper  <jackson@ximian.com>
13041         * TreeView.cs: Set the TopNode properly when scrolling
13042         occurs. This has the added benifit of reducing the amount of
13043         walking that needs to be done when drawing. Also removed an old
13044         misleading TODO.
13045         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
13046         
13047 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
13049         * Timer.cs: fixes interval setting when the timer is already enabled
13050         
13051 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
13053         * FolderBrowserDialog.cs: First approach
13055 2005-04-09  Peter Bartok  <pbartok@novell.com>
13057         * FolderBrowserDialog: Added
13059 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
13061         * LinkLabel.cs: move drawing code into the theme
13062         * ThemeWin32Classic.cs: drawing code and painting background bugfix
13063         * Theme.cs: define DrawLinkLabel method
13065 2005-04-05  Jackson Harper  <jackson@ximian.com>
13067         * BindingContext.cs: Use weak references so these bad actors don't
13068         stay alive longer then they need to.
13070 2005-04-05  Jackson Harper  <jackson@ximian.com>
13072         * ListControl.cs: Basic implementation of complex databinding.
13073         * ComboBox.cs:
13074         * ListBox.cs: Add calls to ListControl databinding methods.
13076 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
13078         * FileDialog.cs:
13079           - Don't change PopupButtonState to Normal when the
13080             PopupButton gets pressed several times.
13081           - Renamed ButtonPanel to PopupButtonPanel
13083 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
13085         * ColorDialog.cs: Use cached objects instead of creating them
13086         * LinkLabel.cs: Use cached objects instead of creating them
13087         * Splitter.cs: Use cached objects instead of creating them
13088         * FontDialog.cs: Use cached objects instead of creating them
13089         * PropertyGridView.cs: Use cached objects instead of creating them
13090         * MessageBox.cs: Use cached objects instead of creating them
13091         * FileDialog.cs: Use cached objects instead of creating them
13092         * ThemeWin32Classic.cs: Use cached objects instead of creating them
13093         * TreeView.cs: Use cached objects instead of creating them
13094         
13095 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
13097         * Control.cs: use Equals to compare the font since no == op
13098         * ScrollBar.cs: use Equals to compare the font since no == op
13100 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
13102         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
13104 2005-04-01  Jackson Harper  <jackson@ximian.com>
13106         * Binding.cs: Implement IsBinding.
13107         * BindingManagerBase.cs:
13108         * PropertyManager.cs:
13109         * CurrencyManager.cs: Add IsSuspended property.
13111 2005-04-01  Jackson Harper  <jackson@ximian.com>
13113         * Binding.cs: Had some IsAssignableFrom calls backwards.
13115 2005-04-01  Jackson Harper  <jackson@ximian.com>
13117         * Binding.cs: Handle null data members when pulling data.
13118         * PropertyManager.cs: Handle the data member being a property that
13119         does not exist.
13121 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
13123         * DataGridTextBoxColumn.cs: fixes signature
13124         * DataGrid.cs: calls right constructor
13126 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
13128         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
13129         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
13130         * GridTableStylesCollection.cs: implements GridTableStylesCollection
13131         * DataGridTableStyle.cs: implements DataGridTableStyle
13132         * DataGridBoolColumn.cs: implements DataGridBoolColumn
13133         * DataGridTextBox.cs: implements DataGridTextBox
13134         * DataGridColumnStyle.cs: implements DataGridColumnStyle
13136 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
13138         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
13140 2005-03-29  Peter Bartok  <pbartok@novell.com>
13142         * Application.cs:
13143           - Properly implemented CompanyName property
13144           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
13145             returns a path that includes CompanyName, ProductName and
13146             Version (fixes bug #70330)
13148 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
13150         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
13151           fixes bug #72588.
13153 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
13155         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
13156         
13157           - Added ReadOnly CheckBox
13158           - Further refactoring: moved some code from Open-/SaveFileDialog
13159             to FileDialog
13161 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
13163         * OpenFileDialog.cs: Fixed CheckFileExists
13164         * FileDialog.cs:
13165           Moved FileView and DirComboBox outside FileDialog class.
13166           They can now be used outside FileDialog
13168 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
13170         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
13171         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
13173 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
13175         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
13176           - Added missing CreatePrompt property in SaveDialog
13177           - Overall SaveDialog handling should be better now
13178           - Added non standard ShowHiddenFiles property
13179           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
13180           - Added InitialDirectory and RestoreDirectory support
13182 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
13184         * FileDialog.cs: Made dirComboBox usable
13186 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
13188         * FileDialog.cs: Added Filter support (case sensitiv)
13190 2005-03-24  Jackson Harper  <jackson@ximian.com>
13192         * TabControl.cs: Need a couple more pixels for the lines.
13194 2005-03-23  Jackson Harper  <jackson@ximian.com>
13196         * TabControl.cs: Give the tab page focus when it is selected.
13198 2005-03-23  Jackson Harper  <jackson@ximian.com>
13200         * TabControl.cs: Account for the drawing of tabs borders when
13201         invalidating. If the slider was clicked dont do click detection on
13202         the tabs.
13204 2005-03-23  Jackson Harper  <jackson@ximian.com>
13206         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
13208 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
13210         * CategoryGridEntry.cs: Added
13211         * GridItem.cs: Added helper properties
13212         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
13213         * GridEntry.cs: Updated code for collection
13214         * PropertyGrid.cs: Cleaned up some formatting
13215         * PropertyGridView.cs: Added drop down functionality for enums.
13216         * GridItemCollection.cs: Added enumerator logic
13217         * PropertyGridEntry.cs: Added
13219 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
13221         * FileDialog.cs:
13222           - Removed unnecessary commented code
13223           - Fixed handling for entering the filename manually in the combobox
13225 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
13227         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
13229 2005-03-18  Peter Bartok  <pbartok@novell.com>
13231         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
13232           them being touching the border
13234 2005-03-18  Peter Bartok  <pbartok@novell.com>
13236         * TextControl.cs: Quick hack to center text better
13238 2005-03-18  Peter Bartok  <pbartok@novell.com>
13240         * ControlPaint.cs:
13241           - Don't throw NotImplemented exceptions, just print a notice once
13242             instead (requested by Miguel). This makes running existing SWF
13243             apps a bit easier
13244         * Control.cs:
13245           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
13246           - Added context menu trigger on right click
13247         * Panel.cs: Trigger invalidate on resize
13248         * StatusBar.cs:
13249           - Removed old double-buffer drawing
13250           - Added ResizeRedraw style to force proper update of statusbar
13251         * ListView.cs:
13252           - Removed debug output
13253         * ThemeWin32Classic.cs:
13254           - Fixed drawing of status bar, now draws Text property if there
13255             are no defined panels
13257 2005-03-18  Jackson Harper  <jackson@ximian.com>
13259         * ImageList.cs: When the image stream is set pull all the images
13260         from it.
13261         * ImageListStreamer.cs: Implement reading image list streams.
13263 2005-03-18  Peter Bartok  <pbartok@novell.com>
13265         * ThemeWin32Classic.cs (DrawPictureBox):
13266           - Fixed calculations for centered drawing
13267           - Fixed drawing for normal mode, not scaling the image on normal
13269 2005-03-18  Peter Bartok  <pbartok@novell.com>
13271         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
13272           textbox
13273         * FileDialog.cs:
13274           - Made Open/Save button the accept button for FileDialog
13275           - Tied the cancel button to the IButtonControl cancel button
13276           - Save/Open now properly builds the pathname
13277           - Now handles user-entered text
13278           - Preventing crash on right-click if no item is selected
13279           - Fixed Text property, now uses contents of textbox
13280           - Fixed SelectedText property, now just returns the text part that
13281             is selected in the text box
13283 2005-03-18  Jackson Harper  <jackson@ximian.com>
13285         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
13286         rect, make sure to de-adjust the interior rect after drawing the
13287         tab text.
13289 2005-03-18  Peter Bartok  <pbartok@novell.com>
13291         * MenuAPI.cs: Remove menu *before* executing selected action to
13292           prevent the menu from 'hanging around'
13293           
13294 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
13296         * XplatUIOSX.cs: Implemented WorkingArea property
13298 2005-03-17  Peter Bartok  <pbartok@novell.com>
13300         * XplatUIX11.cs: Fixed menu coord calculations
13301         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
13302           for calculating offsets
13304 2005-03-17  Peter Bartok  <pbartok@novell.com>
13306         * Hwnd.cs: Do not consider menu presence for default client
13307           rectangle location/size
13308         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
13309           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
13310           translation functions
13311         * FileDialog.cs: Fixed (what I presume is a) typo
13313 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
13315         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
13316           X access (avoids X-Async errors)
13318 2005-03-16  Jackson Harper  <jackson@ximian.com>
13320         * TabControl.cs: Raise the SelectedIndexChanged event.
13322 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
13324         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
13325           - Removed vertical ToolBar and replaced it with a custom panel
13326             (desktop and home button already work)
13327           - Added Help button (some controls get resized or relocated then)
13328           - Draw correct text depending on Open or Save.
13329           - Fixed some typos...
13331 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
13333         * ScrollBar.cs:
13334           - Only change Maximum and Minimum when need it (bug fix)
13336 2005-03-15  Peter Bartok  <pbartok@novell.com>
13338         * Form.cs: Use Handle for icon, to trigger creation if
13339           the window does not yet exist
13340         * Control.cs:
13341           - CanSelect: Slight performance improvement
13342           - Focus(): Preventing possible recursion
13343           - Invalidate(): Removed ControlStyle based clear flag setting
13344           - WM_PAINT: fixed logic for calling OnPaintBackground
13345           - WM_ERASEBKGND: Fixed logic, added call to new driver method
13346             EraseWindowBackground if the control doesn't paint background
13347         * XplatUIWin32.cs:
13348           - Moved EraseWindowBackground() method to internal methods
13349           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
13350             is sent via SendMessage on BeginPaint call on Win32
13351         * XplatUIX11.cs:
13352           - Added EraseWindowBackground() method
13353           - No longer sends WM_ERASEBKGND on .Expose, but on call to
13354             PaintEventStart, which more closely matches Win32 behaviour
13355           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
13356           - Fixed SetFocus() to properly deal with client and whole windows
13357         * Hwnd.cs: Added ErasePending property
13358         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
13359         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
13361 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
13363         * XplatUIOSX.cs:
13364           - Fix hard loop when timers exist.
13365           - Fix bugs with middle and right click for 3 button mice.
13367 2005-03-11  Peter Bartok  <pbartok@novell.com>
13369         * XplatUIX11.cs:
13370           - get_WorkingArea: Need to call X directly, GetWindowPos only
13371             returns cached data now
13372           - Added sanity check to GetWindowPos hwnd usage
13374 2005-03-11  Jackson Harper  <jackson@ximian.com>
13376         * BindingManagerBase.cs: This method isn't used anymore as
13377         PullData now updates the data in the control.
13379 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
13381         * Form.cs: fixes menu drawing on X11
13382         * MenuAPI.cs:  fixes menu drawing on X11
13384 2005-03-11  Peter Bartok  <pbartok@novell.com>
13386         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
13387           from Jonathan Gilbert; should fix bug #73606
13388         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
13389           in Screen coordinates. Thanks, Jordi.
13390         * Form.cs: Added missing attribute
13392 2005-03-11  Peter Bartok  <pbartok@novell.com>
13394         * Form.cs:
13395           - Rudimentary Mdi support
13396           - Removed outdated FormParent code
13397           - Implemented lots of missing properties and methods, still missing
13398             transparency support
13399           - Added missing attributes
13400           - Implemented support for MaximumBounds
13401           - Added firing of various events
13402         * XplatUI.cs: Added SetIcon() method
13403         * XplatUIDriver.cs: Added SetIcon() abstract
13404         * XplatUIOSX.cs: Stubbed out SetIcon() method
13405         * XplatUIX11.cs:
13406           - Implemented SetIcon() support
13407           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
13408           - Switched to unix line endings
13409         * XplatUIWin32.cs:
13410           - Made POINT internal so for can access it as part of MINMAX
13411           - Implemented SetIcon() support
13412           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
13413             native Mdi support again, might have to go managed)
13414         * Control.cs: Now fires the StyleChanged event
13415         * MdiClient.cs: Added; still mostly empty
13417 2005-03-10  Peter Bartok  <pbartok@novell.com>
13419         * SaveFileDialog.cs: Added emtpy file
13421 2005-03-08  Peter Bartok  <pbartok@novell.com>
13423         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
13424           in turn triggers OnCreateContro) when creating a handle for the
13425           first time.
13426         * TextControl.cs: Fixed endless loop in certain cases when
13427           replacing the current selection
13429 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
13431         * ScrollBar.cs:
13432           - Honors NewValue changes in Scroll events allowing apps to change it
13433           - Adds First and Last Scroll events
13434           - Fixes Thumb events
13436 2005-03-07  Peter Bartok  <pbartok@novell.com>
13438         * Hwnd.cs: Added DefaultClientRectangle property
13439         * XplatUI.cs: Now using the X11 driver Where() method, which provides
13440           more detailed debug information
13441         * XplatUIX11.cs:
13442           - Fixed size-change feedback loop, where we would pull an old size
13443             off the queue and mistakenly change our window's size to an
13444             earlier value
13445           - Now compressing ConfigureNotify events, to reduce looping and
13446             redraw issues
13447         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
13448           is called
13450 2005-03-07  Jackson Harper  <jackson@ximian.com>
13452         * Binding.cs: Push data pushes from data -> property. Check if the
13453         property is readonly when attempting to set it.
13455 2005-03-07  Jackson Harper  <jackson@ximian.com>
13457         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
13458         instead of IsSubclassOf. Pulling data now sets the value on the
13459         control.
13460         * PropertyManager.cs:
13461         * CurrencyManager.cs: Just need to pull data when updating now,
13462         because PullData will set the value on the control.
13464 2005-03-04  Jackson Harper  <jackson@ximian.com>
13466         * Binding.cs: Implement data type parsing and converting on pulled
13467         data. TODO: Are there more ways the data can be converted?
13469 2005-03-04  Jackson Harper  <jackson@ximian.com>
13471         * Binding.cs: Support <Property>IsNull checks. Also bind to the
13472         controls Validating method so we can repull the data when the
13473         control loses focus.
13475 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
13477         * ColumnHeader.cs:
13478           - Fixes null string format
13479           
13480         * ListView.cs:
13481           - Adds enum type checks
13482           - Fixes redrawing and recalc need after changing some properties
13483           - Fixes on focus_item set after the event
13484           - Fixes adding columns after the control has been created
13485           
13486         * ThemeWin32Classic.cs:
13487           - Fixes CheckBox focus rectangle
13488           - Fixes ColumnHeader drawing
13491 2005-03-03  Jackson Harper  <jackson@ximian.com>
13493         * Binding.cs: Bind to <Property>Changed events so we can detect
13494         when properties are changed and update the data.
13496 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
13498         * ImageList.cs:
13499           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
13500           - Fixes ImageList constructor with ImageList container
13501           - Fixes image scaling (wrong parameters at DrawImage)
13503 2005-02-02  Jackson Harper  <jackson@ximian.com>
13505         * Binding.cs: Make property searches case-insensitive. Eliminate
13506         some duplicated code.
13508 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
13510         * ComboBox.cs:
13511                 - Handle focus event
13512                 - Fix scrollbar events
13513                 - Discard highlighted item if remove it
13514                 - Fixes SelectedItem with strings
13516 2005-03-01  Peter Bartok  <pbartok@novell.com>
13518         * Control.cs:
13519           - Fixed Visible property, now follows (once again) parent chain
13520             to return false if any control in the chain is visible=false
13521           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
13522           - Fixed several places where is_visible instead of Visible was used
13523           - Implemented FIXME related to focus selection when setting focused
13524             control to be invisible
13526         * XplatUIWin32.cs: Now using proper method to find out if window is
13527           visible. Thanks to Jordi for pointing it out
13529 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
13531         * ComboBox.cs: show/hide scrollbar instead of creating it
13533 2005-02-27  Jackson Harper  <jackson@ximian.com>
13535         * CurrencyManager.cs: Add PositionChanged stuff.
13537 2005-02-27  Peter Bartok  <pbartok@novell.com>
13539         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
13540         * XplatUIOSX.cs: Added GetMenuOrigin() stub
13541         * XplatUIWin32.cs: Implemented GetMenuOrigin()
13542         * XplatUIX11.cs:
13543           - Implemented GetMenuDC()
13544           - Implemented GetMenuOrigin()
13545           - Implemented ReleaseMenuDC()
13546           - Implemented generation of WM_NCPAINT message
13547           - Implemented generation and handling of WM_NCCALCSIZE message
13548         * Form.cs: Added debug helper message for Jordi's menu work
13549         * Hwnd.cs:
13550           - Modified ClientRect property; added setter, fixed getter to handle
13551             setting of ClientRect
13552           - Added MenuOrigin property
13554 2005-02-26  Peter Bartok  <pbartok@novell.com>
13556         * XplatUIX11.cs:
13557           - Destroys the caret if a window that's being destroyed contains it
13558           - Ignores expose events coming from the X11 queue for windows that
13559             already are destroyed
13560           - Now uses the proper variable for handling DestroyNotify, before we
13561             marked the wrong window as destroyed
13562           - Improved/added some debug output
13564 2005-02-26  Peter Bartok  <pbartok@novell.com>
13566         * X11Keyboard.cs: Fixes to work on 64bit systems
13568 2005-02-26  Peter Bartok  <pbartok@novell.com>
13570         * Control.cs:
13571           - Now calling OnHandleDestroyed from DestroyHandle()
13572             instead of Dispose()
13573           - Removed bogus call to controls.Remove() from DestroyHandle()
13575 2005-02-26  Peter Bartok  <pbartok@novell.com>
13577         * Control.cs: Properly destroy child windows when our handle is
13578           destroyed
13580 2005-02-25  Peter Bartok  <pbartok@novell.com>
13582         * XplatUI.cs:
13583           - Added 'DriverDebug' define to allow tracing XplatUI API calls
13584           - Alphabetized Static Methods and Subclasses
13586         * XplatUIX11.cs:
13587           - Added XException class to allow custom handling of X11 exceptions
13588           - Created custom X11 error handler, tied into XException class
13589           - Added support for MONO_XEXCEPTIONS env var to allow the user
13590             to either throw an exception on X errors or continue running
13591             after displaying the error
13592           - Added handling of DestroyNotify message
13593           - Added handler for CreateNotify message (still disabled)
13594           - Improved (tried to at least) Where method to provide file and lineno
13595         * X11Structs.cs:
13596           - Added XErrorHandler delegate
13597           - Added XRequest enumeration (to suppor translation of errors)
13599 2005-02-25  Jackson Harper  <jackson@ximian.com>
13601         * PropertyManager.cs: Implement editing features
13602         * CurrencyManager.cs:
13603         * Binding.cs: First attempt at UpdateIsBinding
13604         * BindingManagerBase.cs: Call UpdateIsBinding before
13605         pushing/pulling data.
13607 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
13609         * MenuAPI.cs: Respect disabled items
13610         * ThemeWin32Classic.cs
13611                 - Caches ImageAttributes creation for DrawImageDisabled
13612                 - Fixes vertical menu line drawing
13613                 - Draws disabled arrows in disable menu items
13615 2005-02-24  Peter Bartok  <pbartok@novell.com>
13617         * Hwnd.cs:
13618           - Added UserData property to allow associating arbitrary objects
13619             with the handle
13620           - Fixed leak; now removing Hwnd references from static windows array
13621         * XplatUIWin32.cs:
13622           - Fixed Graphics leak in PaintEventEnd
13623           - Removed usage of HandleData, switched over to Hwnd class
13624         * HandleData.cs: Removed, obsoleted by Hwnd.cs
13626 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
13628         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
13629         * ScrollBar.cs: Fixes bug
13630         * TrackBar.cs: removes death code, clipping, mimize refreshes,
13631          keyboard navigation enhancements
13633 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
13635         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
13636         * GroupBox.cs: Add control styles
13637         * Label.cs: Add control styles
13638         * UpDownBase.cs: Add control styles
13639         * ListBox.cs: Add control styles
13640         * XplatUIWin32.cs: Fixes wrong parameter order
13643 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
13645         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
13647 2005-02-23  Jackson Harper  <jackson@ximian.com>
13649         * PropertyManager.cs: Implement property binding. This doesn't
13650         seem to work yet though as (I think) there are some bugs in
13651         System.ComponentModel.PropertyDescriptor.
13652         * BindingContext.cs: Use new PropertyManager constructor.
13654 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
13656         * ProgressBar.cs: use clip region in ProgressBar
13657         * ThemeWin32Classic.cs: use clip region in ProgressBar
13659 2004-02-22  Jackson Harper  <jackson@ximian.com>
13661         * BindingsCollection.cs: Remove some debug code.
13663 2005-02-22  Jackson Harper  <jackson@ximian.com>
13665         * BindingContext.cs:
13666         * ControlBindingsCollection.cs:
13667         * CurrencyManager.cs:
13668         * Binding.cs:
13669         * BindingManagerBase.cs: Initial implementation
13670         * BindingsCollection.cs: Add an internal contains method that the
13671         BindingManagerBase uses to ensure bindings aren't added twice to
13672         the collection.
13673         * PropertyManager.cs: Stubbed out.
13674         * Control.cs:
13675         * ContainerControl.cs: Hook up databinding
13676         
13677 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
13679         * XplatUIOSX.cs:
13680           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
13681           Fixed Invalidate/Update chain.
13682           Fixed tons of other minor bugs (this is almost a complete rewrite).
13684 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
13686         * ComboBox.cs: do subcontrol creation when the control is created
13688 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
13690         * Label.cs: fixes image drawing (image and imagelist)
13691         * ThemeWin32Classic.cs: cache brushes
13692         
13693 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
13695         * Form.cs: Move menu drawing code to Theme class
13696         * ComboBox.cs: Move ComboBox drawing code to Theme class
13697         * MenuItem.cs: Move menu drawing code to Theme class
13698         * MenuAPI.cs: Move menu drawing code to Theme class
13699         * ThemeWin32Classic.cs: New methods
13700         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
13701         * ListBox.cs: Move Listbox drawing code to Theme class
13702         * Theme.cs: New methods
13704 2005-02-20  Peter Bartok  <pbartok@novell.com>
13706         * Control.cs:
13707           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
13708             only process mnemonics on those)
13709           - Fixed event sequence for key handling; first calling
13710             ProcessKeyEventArgs now
13711         * TextBoxBase.cs:
13712           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
13713             for processing non-character keys
13714           - Fixed WM_CHAR to generate proper event sequence before processing
13715         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
13716           generation
13718 2005-02-19  Peter Bartok  <pbartok@novell.com>
13720         * UserControl.cs: Added TextChanged event; added attributes
13721         * SizeGrip.cs: Implemented resizing and optional display of grip
13722         * Form.cs: Fixed attribute
13723         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
13724           Changed meaning of ScrollWindow bool argument; instead of the
13725           clear attribute (which will be true usually anyway), it gives the
13726           option of moving child controls as well.
13727         * XplatUIX11.cs:
13728           - Changed to match new ScrollWindow argument
13729           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
13730             now handles the implicit parent window a WM puts around us
13731         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
13732           to work)
13733         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
13734         * TreeView.cs: Adjusted to new ScrollWindow arguments
13736 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
13738         * Form.cs: Menu integration with non-client area
13739         * MenuItem.cs: Menu integration with non-client area
13740         * MenuAPI.cs: Menu integration with non-client area
13742 2005-02-18  Peter Bartok  <pbartok@novell.com>
13744         * MethodInvoker.cs: Added
13745         * MdiLayout.cs: Added
13746         * SendKeys.cs: Started implementation
13747         * ErrorIconAlignment.cs: Added
13749 2005-02-18  Peter Bartok  <pbartok@novell.com>
13751         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
13752         * Form.cs: Added handling for Menu-related Non-client messages
13754 2005-02-17  Peter Bartok  <pbartok@novell.com>
13756         * UpDownBase.cs: Fixed typo, compilation errors
13757         * DomainUpDown.cs: Fixed attribute value
13759 2005-02-16  Miguel de Icaza  <miguel@novell.com>
13761         * UpDownBase.cs: Attach entry events.
13762         Propagate events.
13763         Add ForeColor property, Focused, InterceptArrowKeys (interception
13764         does not work yet).
13766 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
13768         * Form.cs:
13769                 - Redraw non client are on Setmenu
13770                 - Calc proper menu starting point
13772 2005-02-17  Peter Bartok  <pbartok@novell.com>
13774         * Application.cs: Fixed message_filter check
13776 2005-02-17  Peter Bartok  <pbartok@novell.com>
13778         * Application.cs: Now calls registered message filters
13779         * DockStyle.cs: Fixed attribute
13780         * Form.cs: Fixed attribute
13781         * Menu.cs: Fixed attribute
13782         * ToolTip.cs: Fixed attribute
13783         * TreeNode.cs: Added missing attributes and arranged in regions
13784         * PropertyGrid.cs: Fixed signatures
13785         * TreeNodeCollection.cs: Added attributes
13786         * Splitter.cs: Added missing attributes; arranged into regions
13787         * TabPage.cs: Added missing attributes; arranged into regions
13788         * TextBoxBase.cs: Added missing attributes
13789         * TextBox.cs: Added missing attributes
13790         * ArrangeDirection.cs: Added missing attributes
13791         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
13792         * ToolBarButton.cs: Fixed attributes
13793         * AnchorStyles.cs: Fixed attribute
13794         * TrackBar.cs: Fixed attributes
13795         * TabControl.cs: Added missing attributes and arranged into regions
13796         * ToolBar.cs: Fixed attribute
13797         * StatusBar.cs: Fixed signature, organized into regions and added
13798           attributes
13799         * StatusBarPanel.cs: Fixed attributes
13800         * ContentsResizedEventArgs.cs: Implemented
13801         * ContentsResizedEventHandler.cs: Implemented
13802         * DateBoldEventArgs.cs: Implemented
13803         * DateBoldEventHandler.cs: Implemented
13804         * UpDownEventArgs.cs: Implemented
13805         * UpDownEventHandler.cs: Implemented
13806         
13807 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
13809         * Form.cs: first Menu NC refactoring
13810         * MenuAPI.cs: first Menu NC refactoring
13811         
13812 2005-02-16  Peter Bartok  <pbartok@novell.com>
13814         * ImeMode.cs: Added missing attributes
13815         * Menu.cs: Fixed attribute
13816         * GroupBox.cs: Fixed attribute
13817         * Label.cs: Fixed attribute
13818         * ColorDialog.cs (RunDialog): Removed TODO attribute
13819         * ComboBox.cs: Fixed attributes
13820         * ListControl.cs: Added missing attributes
13821         * PropertyGrid.cs: Fixed attributes
13822         * Control.cs: Fixed attributes
13823         * ListViewItem.cs: Added TypeConverter attribute
13824         * NotifyIcon.cs: Fixed attributes
13825         * ListView.cs: Fixed attributes
13826         * ButtonBase.cs: Fixed attribute
13827         * ImageList.cs: Added missing attributes
13828         * ContainerControl.cs: Fixed signature
13829         * CheckedListBox.cs: Fixed attribute; added missing attributes
13830         * Panel.cs: Fixed attributes
13831         * PropertyTabChangedEventArgs.cs: Added missing attribute
13832         * PropertyValueChangedEventArgs.cs: Added missing attribute
13833         * Binding.cs: Fixed attribute
13834         * ListViewItemConverter: Implemented ListViewSubItemConverter class
13835         * ListBox.cs: Fixed attribute; added missing attributes;
13836         * ScrollableControl.cs: Added missing attributes
13837         * PictureBox.cs: Added missing attributes; implemented missing property
13838         * DateTimePicker.cs: Added missing attributes
13839         * Theme.cs (ToolWindowCaptionHeight): Fixed type
13840         * MonthCalendar.cs: Fixed attributes
13841         * StatusBarPanel.cs: Added missing attributes
13842         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
13844 2005-02-16  Peter Bartok  <pbartok@novell.com>
13846         * TextBoxBase.cs: The previous method to enforce height yet remember
13847           the requested high was less than ideal, this is an attempt to do
13848           it better.
13849         * Control.cs: Added comment about possible problem
13850         * Copyright: Updated format
13851         * GridItemType.cs: Fixed swapped values
13853 2005-02-15  Jackson Harper  <jackson@ximian.com>
13855         * BaseCollection.cs: Use property so we never access an
13856         uninitialized list. Also initialize the list in the property.
13858 2005-02-15  Peter Bartok  <pbartok@novell.com>
13860         * GroupBox.cs (ProcessMnemonic): Implemented
13861         * Label.cs (ProcessMnemonic): Implemented
13862         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
13863           hotkeys
13865 2005-02-15  Peter Bartok  <pbartok@novell.com>
13867         * RadioButton.cs (ProcessMnemonic): Implemented
13868         * CheckBox.cs (ProcessMnemonic): Implemented
13869         * Control.cs:
13870           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
13871             handling
13872           - Added internal method to allow calling ProcessMnemonic from other
13873             controls
13874         * ContainerControl.cs:
13875           - Started support for handling validation chain handling
13876           - Implemented ProcessMnemonic support
13877           - Added Select() call to Active, to make sure the active control
13878             receives focus
13879         * Form.cs: Setting toplevel flag for Forms (this was lost in the
13880           FormParent rewrite)
13881         * ThemeWin32Classic.cs:
13882           - DrawCheckBox(): Fixed stringformat to show hotkeys
13883           - DrawRadioButton(): Fixed stringformat to show hotkeys
13884         * CommonDialog.cs: Removed WndProc override, not needed
13886 2005-02-14  Peter Bartok  <pbartok@novell.com>
13888         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
13889           missed those in the rewrite
13891 2005-02-14  Miguel de Icaza  <miguel@novell.com>
13893         * NumericUpDown.cs (Increment, ToString): Add.
13894         (DecimalPlaces): implement.
13895         
13896         Add attributes.
13897         
13898         * UpDownBase.cs: Add the designer attributes.
13900 2005-02-13  Peter Bartok  <pbartok@novell.com>
13902         * Panel.cs: Removed border_style, now in Control
13903         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
13904           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
13906 2005-02-13  Peter Bartok  <pbartok@novell.com>
13908         * MouseButtons.cs: Added missing attributes
13909         * XplatUIStructs.cs: Added enumeration for title styles
13910         * LeftRightAlignment.cs: Added missing attributes
13911         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
13912           it compatible with Graphics.FromHwnd()
13913         * SelectedGridItemChangedEventArgs.cs: Fixed property type
13914         * Keys.cs: Added missing attributes
13915         * SelectionRange.cs: Added missing attributes
13916         * SelectionRangeConverter.cs: Added
13917         * XplatUI.cs:
13918           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
13919             ReleaseMenuDC methods
13920           - Renamed ReleaseWindow to UngrabWindow
13921           - Added proper startup notice to allow version identification
13922         * Form.cs:
13923           - Added missing attributes
13924           - Removed FormParent concept
13925         * Label.cs: Removed border_style field, now in Control
13926         * RadioButton.cs: Now properly selects RadioButton when focus is
13927           received
13928         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
13929         * Control.cs:
13930           - Added missing attributes
13931           - Added borderstyle handling
13932           - Removed FormParent concept support
13933           - Fixed calls to XplatUI to match changed APIs
13934           - Fixed bug that would case us to use disposed Graphics objects
13935           - Removed unneeded internal methods
13936           - PerformLayout(): Fixed to handle DockStyle.Fill properly
13937           - SelectNextControl(): Fixed to properly check common parents
13938         * TextBoxBase.cs: Removed border_style field (now in Control)
13939         * MessageBox.cs:
13940           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
13941             fixed calculations for form size
13942           - Added support for localized strings and icons
13943           - Improved form size calculations, added border
13944         * ListView.cs: Removed border_style field (now in Control)
13945         * X11Structs.cs: Moved several structs from X11 driver here
13946         * X11Keyboard.cs: Changed debug message
13947         * Application.cs: Removed FormParent concept support
13948         * CommonDialog.cs:
13949           - Resetting end_modal flag
13950           - Removed FormParent concept support
13951         * NativeWindow.cs: Removed FormParent concept support
13952         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
13953           Client area and Non-Client whole window to allow support for WM_NC
13954           messages
13955         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
13956           prevent using it until it supports Hwnd as per Geoff Norton's request
13957         * ToolBar.cs: Fixed drawing, was not doing proper drawing
13958         * PictureBox.cs: Removed border_style field, now in Control
13959         * XplatUIWin32.cs: Added new driver methods
13961 2005-02-12  Peter Bartok  <pbartok@novell.com>
13963         * OpacityConverter.cs: Implemented
13964         * Hwnd.cs: Internal class to support drivers that need to emulate
13965           client area/non-client area window behaviour
13967 2005-02-11  Peter Bartok  <pbartok@novell.com>
13969         * KeysConverter.cs: Implemented
13971 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
13973         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
13974         * LinkLabel: Added missing attributes
13975         * MainMenu.cs: fixes ToString
13976         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
13977         * ListBox.cs: fixes event position
13978         * TrackBar.cs: adds missing attributes and events
13979         
13980 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
13982         * MenuItem.cs: Use SystemInformation and bug fixes
13983         * MenuAPI.cs: Use SystemInformation and bug fixes
13985 2005-02-09  Jackson Harper  <jackson@ximian.com>
13987         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
13988         their keystate otherwise things like VK_MENU get stuck "on".
13990 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
13992         * ListBox.cs: Fixes AddRange bug
13993         
13994 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
13996         * ProgressBar.cs
13997                 - Add missing attributes
13998                 - Add missing method
13999                 
14000         * CheckedListBox.cs: Added missing attributes
14001                 - Add missing attributes
14002                 - Remove extra method
14003         
14004         * ComboBox.cs: Added missing attributes
14005         * VScrollBar.cs: Added missing attributes
14006         * ScrollBar.cs:  Added missing attributes
14007         * ListBox.cs: Fixes signature, add missing consts
14008         * LinkArea.cs:   Added missing attributes
14009         
14011 2005-02-08  Peter Bartok  <pbartok@novell.com>
14013         * Menu.cs: Added missing attributes
14014         * MainMenu.cs: Added missing attributes
14015         * GroupBox.cs: Added missing attributes
14016         * Label.cs: Added missing attributes
14017         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
14018         * ColorDialog.cs:
14019           - Added Instance and Options properties
14020           - Added missing attributes
14021         * Cursor.cs: Made Serializable
14022         * NotifyIcon: Added missing attributes
14023         * MenuItem.cs: Added missing attributes
14024         * TextBoxBase.cs: Implemented AppendText() and Select() methods
14025         * Panel.cs: Added Missing attributes
14026         * MonthCalendar.cs: Fixed CreateParams
14028 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
14029         
14030         * LinkLabel.cs:
14031                 - Fixes signature
14032                 - Fixes issues with links
14033                 - Adds the class attributes
14035 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
14036         
14037         * ComboBox.cs:
14038                 - Fixes button when no items available in dropdown
14039                 - Fixes repainting problems
14040                 - Adds the class attributes
14041                 
14042 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
14044         * XplatUIOSX.cs: Detect the menu bar and title bar height from
14045         the current theme.  Cache these on startup.
14047 2005-02-07  Jackson Harper  <jackson@ximian.com>
14049         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
14050         the scrollbar buttons when they are depressed.
14052 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
14054         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
14055         Get the display size from the main displayid.  We currently dont
14056         support multiple display configurations.
14058 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
14060         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
14062 2005-02-07  Miguel de Icaza  <miguel@novell.com>
14064         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
14066 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
14068         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
14070 2005-02-04  Jackson Harper  <jackson@ximian.com>
14072         * ThemeWin32Classic.cs: Respect the clipping rect when
14073         drawing. Only fill the intersection of clips and rects so there
14074         isn't a lot of large fills.
14075         * ScrollBar.cs: Pass the correct clipping rect to the theme
14076         engine. Remove some debug code.
14078 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
14079         
14080         * DateTimePicker.cs:
14081                 - Fixed crash on DateTime.Parse, use Constructor instead
14083 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
14084         
14085         * MenuItem.cs:
14086         * MenuAPI.cs:
14087                 - Owner draw support (MeasureItem and DrawItem)
14089 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
14090         
14091         *  Menu.cs:
14092                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
14093                 - Fixes MenuItems.Add range
14094         * MenuItem.cs:
14095                 - MergeMenu and Clone and CloneMenu functions
14097 2005-02-03  Jackson Harper  <jackson@ximian.com>
14099         * ScrollBar.cs: Make abstract
14100         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
14101         is abstract.
14103 2005-02-03  Jackson Harper  <jackson@ximian.com>
14105         * ScrollBar.cs: First part of my scrollbar fixups. This removes
14106         all the unneeded refreshes and uses invalidates with properly
14107         computed rects.
14109 2005-02-03  Peter Bartok  <pbartok@novell.com>
14111         * ComponentModel.cs: Added
14112         * IDataGridEditingService.cs: Added
14113         * Timer.cs: Added missing attributes
14114         * ToolTip.cs: Added missing attributes
14116 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
14118         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
14120 2005-02-03  Peter Bartok  <pbartok@novell.com>
14122         * ListBox.cs: Added missing attributes
14124 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
14125         
14126         * ListBox.cs:
14127                 - Fixes font height after font change
14128                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
14129                 
14130 2005-02-02  Peter Bartok  <pbartok@novell.com>
14132         * HandleData.cs: Introduced static methods to allow class
14133           to be more self-contained and track it's own HandleData objects
14134         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
14135           HandleData to use new static methods
14137 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
14139         * Combobox.cs:
14140                 - Fixes default size and PreferredHeight
14141                 - Missing events
14142                 - ObjectCollection.Insert implementation
14143                 
14144         * ListControl.cs
14145                 - Fixes signature
14146         * ListBox.cs:
14147                 - Several fixes
14148                 - ObjectCollection.Insert implementation
14149                 - No selection after clean
14150                 - Small fixes
14152 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
14154         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
14156 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
14158         * Combobox.cs:
14159                 - Caches ItemHeight calculation for OwnerDrawVariable
14160                 - Handles dropdown properly
14161                 - Fixes several minor bugs
14163 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
14165         * ListBox.cs:
14166                 - Fixes 71946 and 71950
14167                 - Fixes changing Multicolumn on the fly
14168                 - Fixes keyboard navigation on Multicolumn listboxes
14170 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
14171         
14172         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
14173         crash reporter log.
14175 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
14177         * XplatUIOSX.cs: Allow applications to actually exit.
14179 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
14181         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
14182         their parent at creation time rather than lazily later.  Fixes a major
14183         regression we were experiencing.
14185 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
14187         * ThemeWin32Classic.cs: more date time picker painting fixes
14188         * DateTimePicker.cs: more monthcalendar drop down fixes
14189         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
14191 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
14193         * ScrollBar.cs:
14194                 - When moving the thumb going outside the control should stop the moving
14195                 - Adds the firing of missing events
14196                 - Fixes no button show if Size is not specified
14197                 - End / Home keys for keyboard navigation
14199 2005-01-30  Peter Bartok  <pbartok@novell.com>
14201         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
14202           sanity check to prevent theoretical loop
14203         * XplatUIWin32.cs (SetVisible): Removed debug output
14204         * XplatUIX11.cs (SystrayChange): Added sanity check
14205         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
14206         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
14207           behaviour, valid until the X11 client window rewrite is done
14208         * TextBox.cs (ctor): Setting proper default foreground and background
14209           colors
14211 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
14213         * Theme: Added DrawDateTimePicker to interface
14214         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
14215         * DateTimePicker.cs: Created (still needs keys and painting code)
14216         * DateTimePickerFormat.cs: added
14217         * MonthCalendar.cs: fixed CreateParams for popup window mode
14218           
14219 2005-01-29  Peter Bartok  <pbartok@novell.com>
14221         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
14222           this should also the calculations for ligher/darker
14223         * Theme.cs: Fixed defaults for ScrollBar widths/heights
14225 2005-01-29  Peter Bartok  <pbartok@novell.com>
14227         * ArrangeDirection.cs: Added
14228         * ArrangeStartingPositon.cs: Added
14229         * SystemInformation.cs: Implemented
14230         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
14231           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
14232           used by SystemInformation class
14233         * X11Strucs.cs: Added XSizeHints structure
14234         * MenuAPI.cs:
14235           - Fixed CreateParams to make sure the menu window is always visible
14236           - TrackPopupMenu: Added check to make sure we don't draw the
14237             menu offscreen
14239 2005-01-29  Peter Bartok  <pbartok@novell.com>
14241         * HandleData.cs: Added method for altering invalid area
14242         * TextBoxBase.cs: Implemented TextLength
14244 2005-01-28  Peter Bartok  <pbartok@novell.com>
14246         * XplatUIX11.cs: Improvement over last patch, not sending
14247           the WM_PAINT directly anymore, instead we scroll any pending
14248           exposed areas and let the system pick out the WM_PAINT later
14250 2005-01-28  Peter Bartok  <pbartok@novell.com>
14252         * SWF.csproj: Deleted, no longer used. Instead,
14253           Managed.Windows.Forms/SWF.csproj should be used
14254         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
14255           directly, to avoid a potential race condition with the next
14256           scroll
14258 2005-01-28  Peter Bartok  <pbartok@novell.com>
14260         * XplatUI.cs: Made class internal
14262 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
14264         * CheckedListBox.cs:
14265                 - Draw focus
14266                 - Fixed Drawing
14267                 - Missing methods and events
14269 2005-01-27  Peter Bartok  <pbartok@novell.com>
14271         * Application.cs (Run): Don't use form if we don't have one
14273 2005-01-27  Peter Bartok  <pbartok@novell.com>
14275         * TextBoxBase.cs (get_Lines): Fixed index off by one error
14277 2005-01-27  Peter Bartok  <pbartok@novell.com>
14279         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
14280         * GridItem.cs: Added; Patch by Jonathan S. Chambers
14281         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
14282         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
14283         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
14284         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
14285         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
14286         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
14287         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
14288         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
14289         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
14290         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
14292 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
14294         * Combobox.cs:
14295                 - Draw focus on Simple Combobox
14296                 - Fixes drawing issues
14297                 - fixes 71834
14299 2005-01-27  Peter Bartok  <pbartok@novell.com>
14301         * Form.cs:
14302           - Place window in default location, instead of hardcoded 0/0
14303           - Send initial LocationChanged event
14304         * Control.cs:
14305           - UpdateBounds after creation to find out where the WM placed us
14306           - Make sure that if the ParentForm changes location the Form
14307             is notified
14308         * XplatUIX11.cs: XGetGeometry will not return the coords relative
14309             to the root, but to whatever the WM placed around us.
14310             Translate to root coordinates before returning toplevel
14311             coordinates
14312         * XplatUIWin32.cs: Removed debug output
14313         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
14314           flag to GetWindowPos, to allow translation of coordinates on X11
14316 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
14318         * ListBox.cs: connect LostFocus Event
14320 2005-01-27  Peter Bartok  <pbartok@novell.com>
14322         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
14323           XplatUIX11.cs: Extended the Systray API
14324         * Form.cs: Removed debug output
14325         * Application.cs: Fixed focus assignment, always need to call
14326           XplatUI.Activate() since Form.Activate() has rules that may
14327           prevent activation
14328         * NotifyIcon.cs: Should be complete now
14329         * ToolTip.cs: Worked around possible timer bug
14331 2005-01-27  Jackson Harper  <jackson@ximian.com>
14333         * TabControl.cs:
14334         - Only invalidate the effected tabs when the
14335         selected index changes. This reduces drawing and gets rid of some
14336         flicker.
14337         - Only refresh if the tabs need to be shifted, otherwise only
14338         invalidate the slider button.
14339         - On windows the tabs are not filled to right if the slider is
14340         visible.
14341         
14342 2005-01-27  Jackson Harper  <jackson@ximian.com>
14344         * TabControl.cs: Only refresh on mouseup if we are showing the
14345         slider. Also only invalidate the button whose state has changed.
14347 2005-01-26  Peter Bartok  <pbartok@novell.com>
14349         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
14350         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
14351           and SystrayRemove() methods
14352         * XplatUIOSX.cs: Stubbed Systray methods
14353         * XplatUIX11.cs:
14354           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
14355             methods
14356           - Fixed broken XChangeProperty calls (marshalling messed up things)
14357         * X11Structs.cs: Added enums and structs required for Size hinting
14358         * NotifyIcon.cs: Added & implemented
14360 2005-01-26  Jackson Harper  <jackson@ximian.com>
14362         * TabControl.cs: Space vertically layed out tabs properly.
14364 2005-01-26  Peter Bartok  <pbartok@novell.com>
14366         * Form.cs (CreateClientParams): Always set the location to 0,0
14367           since we're a child window.
14369         * Control.cs (SetVisibleCore): Always explicitly setting the location
14370           of a toplevel window, apparently X11 doesn't like to move windows
14371           while they're not mapped.
14373 2005-01-26  Jackson Harper  <jackson@ximian.com>
14375         * TabControl.cs: Implement FillToRight size mode with vertically
14376         rendered tabs.
14378 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
14380         * ControlPaint.cs, ThemeWin32Classic.cs
14381                 - Fixes DrawFocusRectangle
14383 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
14385         * MenuAPI.cs:
14386                 - MenuBar tracking only starts when item is first clicked
14387                 - Fixes menu hidding for multiple subitems
14388                 - Unselect item in MenuBar when item Executed
14389                 - Fixes bug 71495
14391 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
14393         * ListControl.cs:
14394                 - IsInputKey for ListBox
14395         * ListBox.cs:
14396                 - Focus item
14397                 - Shift and Control item selection
14398                 - Implement SelectionMode.MultiExtended
14399                 - Fixes RightToLeft
14400         * ComboBox.cs:
14401                 - IsInputKey implemented
14402                 - Do not generate OnTextChangedEdit on internal txt changes
14403                 
14404 2005-01-23  Peter Bartok  <pbartok@novell.com>
14406         * AccessibleObject.cs: Partially implemented Select()
14407         * MonthCalendar.cs: Added missing attributes and events
14408         * Form.cs: Fixed CreateParams behaviour, now controls derived from
14409           form can properly override CreateParams.
14410         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
14411           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
14412           Control performs Invalidate & Update
14413         * NativeWindow (CreateHandle): Added special handling for Form
14414           and Form.FormParent classes to allow overriding of From.CreateParams
14415         * Control.cs:
14416           - ControlNativeWindow: Renamed 'control' variable to more intuitive
14417             name 'owner'
14418           - ControlNativeWindow: Added Owner property
14419           - Removed usage of Refresh() on property changes, changed into
14420             Invalidate(), we need to wait until the queue is processed for
14421             updates, direct calls might cause problems if not all vars for
14422             Paint are initialized
14423           - Added call to UpdateStyles() when creating the window, to set any
14424             styles that CreateWindow might have ignored.
14425           - Added support for Form CreateParent overrides to UpdateStyles()
14426         * MessageBox.cs: Removed no longer needed FormParent override stuff,
14427           CreateParams are now properly overridable
14428         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
14429           CreateParams are now properly overridable
14431 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
14433         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
14434         OnTextBoxChanged.
14436         Capture LostFocus and OnTextBoxChanged.  The later introduces a
14437         recursive invocation that I have not figured out yet.
14439         Reset the timer when not using (it was accumulating).
14442         (OnTextBoxChanged): Set UserEdit to true here to track whether the
14443         user has made changes that require validation.
14445         Reset changing to avoid loops.
14447 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
14449         * NumericUpDown.cs: Display value at startup.
14451         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
14452         ValidateEditText.
14454         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
14455         filled in.  Added some basic parsing of text.
14457         Still missing the OnXXX method overrides, and figuring out the
14458         events that must be emitted.
14460         * UpDownBase.cs: Handle UserEdit on the Text property.
14461         
14462 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
14464         * ComboBox.cs:
14465           - Fixes IntegralHeight
14466           - ToString method
14468 2005-01-21  Jackson Harper  <jackson@ximian.com>
14470         * TabControl.cs: Set the SelectedIndex property when SelectedTab
14471         is set so that the page visibility is updated and the tabs are
14472         sized correctly.
14474 2005-01-21  Jackson Harper  <jackson@ximian.com>
14476         * TabControl.cs: Use cliping rectangle for blitting. Give the
14477         theme the clipping rect so we can do clipping while
14478         drawing. Remove some debug code.
14480 2005-01-21  Jackson Harper  <jackson@ximian.com>
14482         * TabPage.cs: Add a new method so tab pages can force the tab
14483         control to recalculate the tab page sizes.
14484         * TabControl.cs: UpdateOwner needs to make the tab control recalc
14485         sizes.
14487 2005-01-20  Jackson Harper  <jackson@ximian.com>
14489         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
14491 2005-01-20  Jackson Harper  <jackson@ximian.com>
14493         * TreeView.cs: Set the bounds for nodes properly. They were
14494         getting screwed up when checkboxes were not enabled, but images
14495         were.
14497 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
14499         * ListBox.cs:
14500                 - Owner draw support
14501                 - Fixes
14502                 
14503 2005-01-20  Jackson Harper  <jackson@ximian.com>
14505         * XplatUIStructs.cs: More misc keys
14506         * X11Keyboard.cs: Ignore some control keys.
14508 2005-01-20  Jackson Harper  <jackson@ximian.com>
14510         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
14511         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
14513 2005-01-19  Peter Bartok  <pbartok@novell.com>
14515         * Control.cs: Un-selecting the control when it is loosing focus
14517 2005-01-19  Jackson Harper  <jackson@ximian.com>
14519         * TreeView.cs: Hook up to the text controls leave event so we can
14520         end editing when the users clicks outside the text box.
14521         
14522 2005-01-19  Jackson Harper  <jackson@ximian.com>
14524         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
14525         get set in the conversion array.
14527 2005-01-19  Peter Bartok  <pbartok@novell.com>
14529         * Application.cs (ModalRun): Added a call to CreateControl to ensure
14530           focus is properly set
14531         * Button.cs:
14532           - Added missing attributes
14533           - removed styles, those are already set in the base class
14534         * ButtonBase.cs:
14535           - Added missing attributes
14536           - Added clip window styles
14537         * CheckBox.cs: Added missing attributes
14538         * CommonDialog.cs:
14539           - FormParentWindow.CreateParams: Added required clip styles
14540         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
14541           also filters modifier keys
14542         * MessageBox.cs:
14543           - Added assignment of Accept and Cancel button to enable Enter
14544             and Esc keys in MessageBox dialogs
14545           - FormParentWindow.CreateParams: Added required clip styles
14546         * RadioButton.cs: Added missing attributes
14547         * TextControl.cs: No longer draws selection if control does not
14548           have focus
14549         * TextBoxBase.cs:
14550           - Now draws simple rectangle around test area to make it obvious
14551             there's a control. This is a hack until we properly support borders
14552           - A few simple fixes to support selections better, now erases selected
14553             text when typing, and resets selection when using movement keys
14555 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
14557         * UpDownBase.cs: Added some new properties.
14559         * DomainUpDown.cs: Implement a lot to get my test working.
14561 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
14563         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
14565 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
14567         * OSXStructs (WindowAttributes): Fixed csc complaints
14569 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
14571         * XplayUIOSX.cs:
14572           OSXStructs.cs: Initial refactor to move enums and consts into
14573           OSXStructs and use them in the driver for greater readability.
14575 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
14577         * XplatUIOSX.cs: Initial support for Standard Cursors.
14578         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
14580 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
14582         * ComboBox.cs: ability to change style when the ctrl is already
14583         created, missing methods and events, bug fixes, signature fixes
14585 2005-01-19  Peter Bartok  <pbartok@novell.com>
14587         * Cursors.cs (ctor): Added ctor to fix signature
14589 2005-01-18  Peter Bartok  <pbartok@novell.com>
14591         * Button.cs: Implemented DoubleClick event
14592         * ButtonBase.cs:
14593           - Fixed keyboard handling to behave like MS, where the press of
14594             Spacebar is equivalent to a mousedown, and the key release is
14595             equivalent to mouseup. Now a spacebar push will give the same
14596             visual feedback like a mouse click.
14597           - Added missing attributes
14598           - Added ImeModeChanged event
14599           - Added support for generating DoubleClick event for derived classes
14600         * CheckBox.cs:
14601           - Implemented DoubleClick event
14602           - Added missing attributes
14603         * CommonDialog.cs: Added missing attribute
14604         * ContextMenu.cs: Added missing attributes
14605         * RadioButton.cs:
14606           - AutoChecked buttons do not allow to be unselected when clicked
14607             (otherwise we might end up with no selected buttons in a group)
14608           - Added missing attributes
14609           - Implemented DoubleClickEvent
14610         * ThreadExceptionDialog.cs: Enabled TextBox code
14612 2005-01-18  Peter Bartok  <pbartok@novell.com>
14614         * Form.cs: Removed debug output
14615         * Button.cs: Added support for DoubleClick method
14617 2005-01-18  Peter Bartok  <pbartok@novell.com>
14619         * Form.cs:
14620           - Added method to parent window that allows triggering size
14621             calculations when a menu is added/removed
14622           - set_Menu: Cleaned up mess from early days of Form and Control,
14623             now properly triggers a recalc when a menu is added/removed
14624           - Added case to select form itself as focused form if no child
14625             controls exist
14626           - Added PerformLayout call when showing dialog, to ensure properly
14627             placed controls
14628         * Control.cs:
14629           - Select(): Made internal so Form can access it
14630           - Focus(): Only call Xplat layer if required (avoids loop), and sets
14631             status
14632         * Application.cs (Run): Removed hack and calls PerformLayout instead
14633           to trigger calculation when Form becomes visible
14635 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
14637         * ComboBox.cs: fixes for ownerdraw
14639 2005-01-18  Peter Bartok  <pbartok@novell.com>
14641         * TextControl.cs:
14642           - Sentinel is no longer static, each Document gets it's own, this
14643             avoids locking or alternatively overwrite problems when more
14644             than one text control is used simultaneously.
14645           - Switched to use Hilight and HilightText brushes for text selection
14647         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
14649 2005-01-18  Peter Bartok  <pbartok@novell.com>
14651         * Control.cs:
14652           - Hooked up the following events:
14653                 o ControlAdded
14654                 o ControlRemoved
14655                 o HandleDestroyed
14656                 o ImeModeChanged
14657                 o ParentChanged
14658                 o TabStopChanged
14659                 o Invalidated
14660                 o SystemColorsChanged
14661                 o ParentFontChanged
14662                 o Move
14663           - Removed debug output
14664           - Added a call to the current theme's ResetDefaults when a color change
14665             is detected
14666         * Form.cs: Now setting the proper ImeMode
14667         * Theme.cs: Defined a method to force recreation of cached resources
14668           and rereading of system defaults (ResetDefaults())
14669         * ThemeWin32Classic.cs: Added ResetDefaults() stub
14671 2005-01-17  Peter Bartok  <pbartok@novell.com>
14673         * Control.cs: Added missing attributes
14675 2005-01-17  Jackson Harper  <jackson@ximian.com>
14677         * TreeNode.cs: Implement editing. Add missing properties selected
14678         and visible.
14679         * TreeView.cs: Implement node editing. Also some fixes to use
14680         Invalidate (invalid area) instead of Refresh when selecting.
14682 2005-01-17  Peter Bartok  <pbartok@novell.com>
14684         * Control.cs:
14685           - Implemented InvokeGotFocus() method
14686           - Implemented InvokeLostFocus() method
14687           - Implemented InvokePaint() method
14688           - Implemented InvokePaintBackground() method
14689           - Implemented InvokeClick() method
14690           - Implemented FindForm() method
14691           - Implemented RectangleToClient() method
14692           - Implemented ClientToRectangle() method
14693           - Implemented ResetBackColor() method
14694           - Implemented ResetCursor() method
14695           - Implemented ResetFont() method
14696           - Implemented ResteForeColor() method
14697           - Implemented ResetImeMode() method
14698           - Implemented ResetLeftToRight() method
14699           - Implemented ResetText() method
14700           - Implemented Scale() methods
14701           - Implemented ScaleCore() method
14702           - Implemented Update() method
14703           - Removed unused variables
14704           - Stubbed AccessibilityNotifyClients and
14705             ControlAccessibleObject.NotifyClients() methods (dunno what to do
14706             with those yet)
14707           - Now setting proper default for RightToLeft property
14708           - Fixed bug in SetClientSizeCore that would cause windows to get
14709             really big
14710           - Now sending Click/DoubleClick events
14711           - Now selecting controls when left mouse button is clicked on
14712             selectable control
14713         * AccessibleEvents.cs: Added
14714         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
14715         * XplatUIOSX.cs: Stubbed UpdateWindow() method
14716         * XplatUIWin32.cs: Implemented UpdateWindow() method
14717         * XplatUIX11.cs: Implemented UpdateWindow() method
14718         * Form.cs: Removed stray semicolon causing CS0162 warning
14719         * ThemeWin32Classic.cs: Fixed unused variable warnings
14720         * ScrollableControl.cs: Now calls base method for ScaleCore
14721         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
14722           style to avoid interference with internal click handler (which is
14723           different than standard Control click handling)
14724         * RadioButton.cs:
14725           - Now unchecks all sibling radio buttons when control is
14726             selected (Fixes #68756)
14727           - Removed internal tabstop variable, using the one inherited from
14728             Control
14730 2005-01-17  Jackson Harper  <jackson@ximian.com>
14732         * NavigateEventArgs.cs: Fix base type.
14733         * LinkLabel.cs: Sig fix
14734         
14735 2005-01-17  Jackson Harper  <jackson@ximian.com>
14737         * TreeView.cs: Only invalidate the effected nodes bounds when
14738         selecting nodes.
14740 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
14742         * XplatUIWin32.cs: fixes Win32 marshaling
14743         * XplatUIX11.cs: fixes method signature
14745 2005-01-17  Peter Bartok  <pbartok@novell.com>
14747         * XplatUIX11.cs: Clean up resources when we no longer need them
14749 2005-01-17  Peter Bartok  <pbartok@novell.com>
14751         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
14752           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
14753           and DestroyCursor() methods.
14754         * Cursor.cs: Partially implemented, now supports standard cursors;
14755           still contains some debug code
14756         * Cursors.cs: Implemented class
14757         * Control.cs:
14758           - WndProc(): Added handling of WM_SETCURSOR message, setting the
14759             appropriate cursor
14760           - Implemented Cursor property
14761           - Replaced break; with return; more straightforwar and possibly
14762             faster
14763           - Now properly setting the result for WM_HELP
14764         * X11Structs.cs: Added CursorFontShape enum
14765         * XplatUIStructs.cs:
14766           - Added StdCursor enum (to support DefineStdCursor() method)
14767           - Added HitTest enum (to support sending WM_SETCURSOR message)
14768         * XplatUIX11.cs:
14769           - Now sends the WM_SETCURSOR message
14770           - Implemented new cursor methods
14771         * XplatUIOSX.cs: Stubbed new cursor methods
14772         * XplatUIWin32.cs:
14773           - Implemented new cursor methods
14774           - Added GetSystemMetrics function and associated enumeration
14776 2005-01-15  Peter Bartok  <pbartok@novell.com>
14778         * Control.cs:
14779           - WndProc(): Now handles EnableNotifyMessage
14780           - SelectNextControl(): Fixed bug where if no child or sibling
14781             controls exist we looped endlessly
14783 2005-01-14  Jackson Harper  <jackson@ximian.com>
14785         * TreeView.cs: Recalculate the tab pages when a new one is added
14786         so that the proper bounding rects are created.
14788 2005-01-14  Jackson Harper  <jackson@ximian.com>
14790         * TreeView.cs: Draw a gray box instead of a grip in the lower
14791         right hand corner when there are both horizontal and vertical
14792         scroll bars.
14794 2005-01-14  Jackson Harper  <jackson@ximian.com>
14796         * Control.cs: When erasing backgrounds use FromHwnd instead of
14797         FromHdc when there is a NULL wparam. This occurs on the X driver.
14798         * XplatUIX11.cs: Set the wparam to NULL.
14800 2005-01-13  Jackson Harper  <jackson@ximian.com>
14802         * PictureBox.cs: Implement missing methods (except ToString, need
14803         to test that on windows) and events. When visibility is changed we
14804         need to redraw the image because the buffers are killed. When size
14805         is changed refresh if the sizemode needs it.
14807 2005-01-13  Peter Bartok  <pbartok@novell.com>
14809         * Control.cs (SelectNextControl): Was using wrong method to select
14810           a control
14812 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
14814         * ComboBox.cs: fixes dropstyle
14816 2005-01-13  Peter Bartok  <pbartok@novell.com>
14818         * Form.cs:
14819           - Implemented Select() override
14820           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
14821           - Now sets keyboard focus on startup
14822         * Control.cs (SelectNextControl): Now properly handles directed=true
14823         * TextBoxBase.cs:
14824           - WndProc: Now passes tab key on to base if AcceptTabChar=false
14825           - Added (really bad) focus rectangle (mostly for testing)
14826         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
14827           to enforce redraw on focus changes
14828         * ContainerControl.cs:
14829           - Fixed detection of Shift-Tab key presses
14830           - Fixed traversal with arrow keys
14831         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
14832           gonna keep this or if it's complete yet
14833         
14834 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
14836         * ComboBox.cs: missing properties, fixes
14838 2005-01-13  Peter Bartok  <pbartok@novell.com>
14840         * Panel.cs (ctor): Setting Selectable window style to off
14841         * Splitter.cs (ctor): Setting Selectable window style to off
14842         * GroupBox.cs (ctor): Setting Selectable window style to off
14843         * Label.cs (ctor): Setting Selectable window style to off
14845 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
14847         * UpDownBase.cs (InitTimer): If the timer has been already
14848         created, enable it.
14850         Use a TextBox instead of a Label.
14852 2005-01-12  Jackson Harper  <jackson@ximian.com>
14854         * TreeView.cs: Refresh the tree after sorting the nodes. Always
14855         draw the connecting node lines (when ShowLines is true).
14856         * TreeNode.cs: The nodes index can now be updated. This is used
14857         when a node collection is sorted.
14858         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
14859         insert or an existing unsorted node collection can be sorted.
14860         
14861 2005-01-12  Peter Bartok  <pbartok@novell.com>
14863         * ContainerControl.cs: Implemented ProcessDialogKeys()
14865 2005-01-12  Peter Bartok  <pbartok@novell.com>
14867         * Control.cs:
14868           - Implemented SelectNextControl() method
14869           - Several focus related bug fixes
14870           - Fixed Docking calculations to match MS documentation and
14871             behaviour
14873 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
14875         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
14876         bug fixes
14878 2005-01-12  Peter Bartok  <pbartok@novell.com>
14880         * Control.cs:
14881           - Fixed broken Contains() method
14882           - Implemented GetNextControl() method. Finally. This is the pre-
14883             requisite for focus handling.
14885 2005-01-12  Peter Bartok  <pbartok@novell.com>
14887         * OSXStrucs.cs: Added
14889 2005-01-12  Peter Bartok  <pbartok@novell.com>
14891         * XplatUIWin32.cs:
14892           - Removed PeekMessageFlags
14893           - Implemented SetWindowStyle() method
14894         * XplatUIStructs.cs: Added PeekMessageFlags
14895         * X11Structs: Added missing border_width field to XWindowChanges struct
14896         * XplatUIX11.cs:
14897           - PeekMessage: Now throws exception if flags which are not yet
14898             supported are passed
14899           - Implemented SetWindowStyle() method
14900           - Fixed SetZOrder to handle AfterHwnd properly
14901         * XplatUI.cs: Added SetWindowStyle() method
14902         * XplatUIDriver.cs: Added SetWindowStyle() abstract
14903         * Control.cs:
14904           - Implemented UpdateStyles() method
14905           - Implemented UpdateZOrder() method
14906         * XplatUIOSX.cs: Added SetWindowStyle() stub
14908 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
14910         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
14911         button mouse).
14914 2005-01-11  Jackson Harper  <jackson@ximian.com>
14916         * TreeView.cs: Still need to draw lines to siblings even if out of
14917         the current node is out of the clip.
14919 2005-01-11  Jackson Harper  <jackson@ximian.com>
14921         * TreeView.cs: When setting the hbar/vbar/grip position use
14922         SetBounds so that perform layout is only called once. Also suspend
14923         and resume layout so layout is only done once for all controls.
14924         - Removed some debug fluff
14925         * SizeGrip.cs: Call base implmentation in overriding methods.
14926         - When visibility is changed the drawing buffers are killed so we
14927         need to redraw.
14929 2005-01-11  Jackson Harper  <jackson@ximian.com>
14931         * TreeView.cs: Calculate the open node count while drawing. This
14932         saves us an entire tree traversal for every paint operation. Use
14933         a member var for the open node count so less vars are passed around.
14935 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
14937         * MonthCalendar.cs:
14938         - fixed selection to use mousemove, not mouse polling on timer
14939         * ThemeWin32Classic.cs
14940         - removed redundant unused variable "no_more_content"
14941         
14942 2005-01-11  Peter Bartok  <pbartok@novell.com>
14944         * XplatUIX11.cs (DoEvents): Needs to return when no more events
14945           are pending, so it now calls PeekMessage instead of GetMessage;
14946           implemented a incomplete version of PeekMessage
14947         
14948 2005-01-11  Peter Bartok  <pbartok@novell.com>
14950         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
14951           I18n issues
14952         * TextBoxBase.cs: Added sending of TextChanged event
14954 2005-01-10  Jackson Harper  <jackson@ximian.com>
14956         * TreeView.cs: Try not to draw outside the clipping rectangle on
14957         each node element.
14959 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
14961         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
14963 2005-01-10  Jackson Harper  <jackson@ximian.com>
14965         * TreeView.cs:
14966         - Implement fast scrolling. Now only the newly
14967         exposed nodes are drawn and the old image is moved using the
14968         XplatUI::ScrollWindow method.
14969         - Factor in height of nodes when calculating whether or not the
14970         node is in the clipping rect.
14972 2005-01-10  Jackson Harper  <jackson@ximian.com>
14974         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
14976 2005-01-10  Peter Bartok  <pbartok@novell.com>
14978         * Application.cs: Added temporary hack to resolve all our resize
14979           required issues on startup. This will get fixed properly at
14980           some point in the future
14982 2005-01-10  Jackson Harper  <jackson@ximian.com>
14984         * SizeGrip.cs: New internal class that is used as a sizing
14985         grip control...hence the name.
14987 2005-01-10  Peter Bartok  <pbartok@novell.com>
14989         * Control.cs: Implemented proper TabIndex handling, now assigning
14990           a tabindex when a control is added to a container
14991         * GroupBox.cs (ctor): Now sets the Container style bit, required
14992           for Control.GetNextControl()
14994 2005-01-09  Jackson Harper  <jackson@ximian.com>
14996         * TextBoxBase.cs: Clear window when scrolling (fixes build).
14998 2005-01-09  Peter Bartok <pbartok@novell.com>
15000         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
15001           XplatUIX11.cs: Added ability to control ScrollWindow expose and
15002           an overload for ScrollWindow to allow only scrolling a rectangle
15004 2005-01-09  Peter Bartok <pbartok@novell.com>
15006         * Form.cs:
15007           - Implemented SetDesktopBounds method
15008           - Implemented SetDesktopLocation method
15010 2005-01-08  Jackson Harper  <jackson@ximian.com>
15012         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
15013         the node count has changed, this removes to VScroll::Refresh calls
15014         when drawing.
15016 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
15018         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
15020 2005-01-07  Jackson Harper  <jackson@ximian.com>
15022         * TreeNode.cs: Just update the single node when it is
15023         checked. Don't refresh after toggling, the Expand/Collapse already
15024         handles this.
15025         * TreeView.cs: Respect clipping a little more when drawing. Try
15026         not to redraw things that don't need to be redrawn. Just hide the
15027         scrollbars when they are no longer needed instead of removing
15028         them, so they don't have to be created again and again.
15029         
15030 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
15032         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
15033         coordinates to window space to place the caret properly, FIXED.
15034         Implement GetWindowState & SetWindowState
15036 2005-01-06  Peter Bartok <pbartok@novell.com>
15038         * Form.cs:
15039           - Implemented ClientSize property
15040           - Implemented DesktopBounds property
15041           - Implemented DesktopLocation property
15042           - Implemented IsRestrictedWindow property
15043           - Implemented Size property
15044           - Implemented TopLevel property
15045           - Implemented FormWindowState property
15046         * Control.cs:
15047           - Implemented GetTopLevel() method
15048           - Implemented SetTopLevel() method
15049         * X11Structs.cs (Atom):
15050           - Added AnyPropertyType definition
15051           - Added MapState definiton and updated XWindowAttribute struct
15052         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
15053         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
15054         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
15055         * XplatUIWin32.cs:
15056           - Implemented GetWindowState() and SetWindowState() methods
15057           - Fixed Win32GetWindowLong return type
15058         * XplatUIX11.cs:
15059           - Introduced central function for sending NET_WM messages
15060           - Implemented GetWindowState() and SetWindowState() methods
15061         * TextBoxBase.cs (set_Lines):
15062           - Now uses Foreground color for text added via Text property (Duh!)
15063           - Added code to remember programmatically requested size (fixes
15064             behaviour when Multiline is set after Size)
15065           - Added AutoSize logic
15067 2005-01-06  Jackson Harper  <jackson@ximian.com>
15069         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
15071 2005-01-06  Jackson Harper  <jackson@ximian.com>
15073         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
15074         set to less then 0.
15076 2005-01-06  Jackson Harper  <jackson@ximian.com>
15078         * ScrollableControl.cs: Lazy init the scrollbars.
15079         
15080 2005-01-06  Jackson Harper  <jackson@ximian.com>
15082         * Theme.cs: Speed up getting pens and solid brushes, by using
15083         their ARGB as a hash instead of tostring and not calling Contains.
15085 2005-01-06  Peter Bartok <pbartok@novell.com>
15087         * Form.cs:
15088           - Implemented OnActivated and OnDeactivate event trigger
15089           - Implemented Activate() method
15090           - Fixed ShowDialog() to activate the form that was active before
15091             the dialog was shown
15092         * XplatUIX11.cs:
15093           - Added global active_window var that tracks the currently active
15094             X11 window
15095           - Now always grabs Property changes from the root window to always
15096             catch changes on the active window property
15097           - Added code to PropertyNotify handler to send Active/Inactive
15098             messages when state changes. This puts X11 and Win32 en par on
15099             WM_ACTIVATE notifications (except for double notifications when
15100             the user clicks away from our modal window to another one of our
15101             windows)
15103 2005-01-05  Jackson Harper  <jackson@ximian.com>
15105         * ImageList.cs: Implment ctor
15107 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
15109         * XplatUIOSX.cs: Implement Activate/SetTopmost
15111 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
15113         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
15115 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
15117         * XplatUIOSX.cs: Implement GetActive/SetFocus.
15119 2005-01-05  Peter Bartok <pbartok@novell.com>
15121         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
15122           XplatUIOSX.cs: Added GetActive method to return the currently
15123           active window for the application (or null, if none is active)
15124         * Form.cs:
15125           - Implemented ActiveForm
15126           - Commented out owner assignment for modal dialogs (causes problems
15127             on Win32, since the owner will be disabled)
15128           - Reworked some Active/Focus handling (still incomplete)
15129         * CommonDialog.cs: Commented out owner assignment for modal dialogs
15130           (causes problems on Win32, since the owner will be disabled)
15131         * IWin32Window: Added ComVisible attribute
15133 2005-01-05  Peter Bartok <pbartok@novell.com>
15135         * ToolTip.cs (WndProc): Enable setting focus now that we have the
15136           required XplatUI functions.
15138 2005-01-05  Peter Bartok <pbartok@novell.com>
15140         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
15141           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
15142           to implement focus and activation handling; still incomplete and
15143           with debug output
15145 2005-01-04  Peter Bartok <pbartok@novell.com>
15147         * TextBoxBase.cs: Changed access level for Document property to
15148           match switch to internal for TextControl
15150 2005-01-04  Peter Bartok <pbartok@novell.com>
15152         * AccessibleObject: Added ComVisible attribute
15154 2005-01-04  Jackson Harper  <jackson@ximian.com>
15156         * X11Keyboard.cs: Remove unneeded var.
15158 2005-01-04  Jackson Harper  <jackson@ximian.com>
15160         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
15161         but PAINT.
15162         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
15163         ClientMessage. This makes apps exit cleanly (more often).
15164         
15165 2005-01-04  Jackson Harper  <jackson@ximian.com>
15167         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
15168         handling focus, return correct colors and fonts,
15169         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
15170         handle selection, horizontal scrolling, and mouse interaction.
15172 2005-01-04  Peter Bartok <pbartok@novell.com>
15174         * ICommandExecutor.cs: Added
15175         * IDataGridColumnStyleEditingNotificationService.cs: Added
15176         * IFeatureSupport.cs: Added
15177         * IFileReaderService.cs: Added
15178         * IDataObject.cs: Added ComVisible attribute
15179         * AmbientProperties.cs: Added
15180         * BaseCollection.cs: Added missing attributes
15181         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
15182         * BaseCollection.cs: Added missing attributes
15183         * Binding.cs: Added TypeConverter attribute
15184         * BindingContext.cs: Added DefaultEvent attribute
15185         * BindingsCollection.cs: Added DefaultEvent attribute
15186         * Button.cs: Added DefaultValue attribute
15187         * DragEventArgs.cs: Added ComVisible attribute
15188         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
15189         * KeyEventArgs.cs: Added ComVisible attribute
15190         * KeyPressEventArgs.cs: Added ComVisible attribute
15191         * MouseEventArgs.cs: Added ComVisible attribute
15192         * NavigateEventArgs.cs: Added
15193         * NavigateEventHandler.cs: Added
15194         * FeatureSupport.cs: Added
15195         * OSFeature.cs: Added
15196         * Theme.cs: Added abstract Version property to support OSFeature
15197         * ThemeWin32Classic.cs: Added Version property to
15198           support OSFeature.Themes
15199         * ProgressBar.cs: Removed OnPaintBackground override, not required since
15200           the proper styles to avoid background drawing are set, also doesn't
15201           match MS signature
15202         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
15203         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
15204         * ScrollEventArgs.cs: Added ComVisible attribute
15205         * SplitterEventArgs.cs: Added ComVisible attribute
15206         * AccessibleSelection.cs: Added Flags attribute
15207         * Appearance.cs: Added ComVisible attribute
15208         * Border3DSide.cs: Added ComVisible attribute
15209         * Border3DStyle.cs: Added ComVisible attribute
15210         * BorderStyle.cs: Added ComVisible attribute
15211         * DragAction.cs: Added ComVisible attribute
15212         * ErrorBlinkStyle.cs: Added
15213         * ScrollEventType.cs: Added ComVisible attribute
15214         * AnchorStyles.cs: Added Editor attribute
15215         * DockStyle.cs: Added Editor attribute
15216         * HorizontalAlignment.cs: Added ComVisible attribute
15217         * HelpEventArgs.cs: Added ComVisible attribute
15218         * PaintEventArgs.cs: Added IDisposable
15220 2005-01-04  Peter Bartok <pbartok@novell.com>
15222         * TextControl.cs: Switched Line, LineTag and Document classes to
15223           internal
15225 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
15227         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
15228         Simple mode, fixes, IntegralHeight, etc.
15230 2005-01-04  Peter Bartok <pbartok@novell.com>
15232         * TextBoxBase.cs: Using proper font variable now
15234 2005-01-04  Peter Bartok <pbartok@novell.com>
15236         * Form.cs (ShowDialog): Set parent to owner, if provided
15237         * GroupBox.cs: Removed unused vars
15238         * TextControl.cs:
15239           - Added GetHashCode() for Document and LineTag classes
15240           - Removed unused variables
15241           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
15242             to allow translation between continuous char position and line/pos
15243         * CheckBox.cs: Removed vars that are provided by base class
15244         * RadioButton.cs: Removed vars that are provided by base class, added
15245           new keyword where required
15246         * LinkLabel.cs: Added new keyword where required
15247         * Control.cs (WndProc): Removed unused variable
15248         * TextBoxBase.cs:
15249           - Finished SelectionLength property
15250           - Implemented SelectionStart property
15251           - Implemented Text property
15252           - Removed unused vars
15253         * MessageBox.cs: Added new keyword where required
15254         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
15255           WndProc signature
15256         * MenuAPI.cs: Added new keyword where required
15257         * ButtonBase.cs: Removed vars that are provided by base class, added
15258           new keyword where required
15259         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
15260           argument to double, to allow compiling with csc 2.0 (Atsushi ran
15261           into this)
15262         * Application.cs (Run): Now triggers the ThreadExit event
15263         * CommonDialog.cs: Added new keyword where required; now properly sets
15264           parent (owner) for dialog
15265         * XplatUIX11.cs: Commented out unused vars
15266         * StatusBar.cs: Fixed signature for Text property
15267         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
15269 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
15271         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
15272         TrackBar.cs, MonthCalendar.cs: remove unused vars
15274 2005-01-03  Jackson Harper  <jackson@ximian.com>
15276         * ThemeWin32Classic.cs:
15277         * X11Keyboard.cs: Remove unused vars.
15279 2005-01-03  Peter Bartok  <pbartok@novell.com>
15281         * TextBox.cs:
15282           - set_Text: Tied into TextControl
15283           - set_TextAlignment: Tied into TextControl
15284         * TextControl.cs:
15285           - Added alignment properties and implemented alignment handling
15286             and drawing (still has a bug, not generating proper expose events)
15287           - Added new Line() constructor to allow passing the line alignment
15288           - Fixed selection setting, properly handling end<start now
15289           - Added aligment considerations to RecalculateDocument()
15290         * TextBoxBase.cs:
15291           - Now properly enforces control height for single line controls
15292           - Added support for CharacterCasing
15293           - Added IsInputKey override
15294           - Fixed Keys.Enter logic
15295           - Added SetBoundsCore override
15296           - Fixed mouse selection handling
15298 2005-01-03  Jackson Harper  <jackson@ximian.com>
15300         * TreeView.cs:
15301           - Collapse and uncheck all nodes when CheckBoxes is disabled.
15302           - Checkboxes are always aligned to the bottom of the node,
15303           regardless of item height.
15304           - Use the node bounds to draw the text so we can center it when
15305           the item height is greater then the font height.
15306           - Node::Bounds are only the text part of the node.
15307         * TreeNode.cs: New method to combine collapsing and unchecking all
15308           nodes recursively.
15310 2005-01-02  Jackson Harper  <jackson@ximian.com>
15312         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
15313         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
15314         tree when a check is changed. TODO: Only refresh the checked node.
15316 2004-12-30  Jackson Harper  <jackson@ximian.com>
15318         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
15319         * TreeNode.cs: When collapsing make sure to never collapse the
15320         root node.
15322 2004-12-29  Jackson Harper  <jackson@ximian.com>
15324         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
15325         
15326 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
15328         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
15330 2004-12-28  Peter Bartok  <pbartok@novell.com>
15332         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
15333           not yet assigned
15335 2004-12-28  Peter Bartok  <pbartok@novell.com>
15337         * Control.cs (WndProc): Added WM_HELP handler, now generates
15338           HelpRequested event
15339         * Form.cs: Added HelpButton property and required support code
15340         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
15342 2004-12-28  Peter Bartok  <pbartok@novell.com>
15344         * CommonDialog.cs:
15345           - Made DialogForm.owner variable internal
15346           - Added check to ensure owner form is set before setting
15347             owner properties in CreateParams
15349 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
15351         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
15352           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
15353           GetCursorPos.  Fix major visibility issues.  Rework the windowing
15354           system to support borderless/titleless windows (implements menus).
15355           Fix GetWindowPos.  Implement initial background color support for
15356           views.
15358 2004-12-28  Peter Bartok  <pbartok@novell.com>
15360         * Form.cs (get_CreateParams): Make sure we have an owner before using
15361           the owner variable. Implement proper default if no owner exists
15363 2004-12-28  Peter Bartok  <pbartok@novell.com>
15365         * In preparation for making Managed.Windows.Forms the default build target
15366           for System.Windows.Forms, the following stubbed files were added.
15367           Dialogs are currently being implemented by contributors and are only
15368           short-term place holders.
15369         * ColorDialog.cs: Initial check-in (minmal stub)
15370         * DataGrid.cs: Initial check-in (minimal stub)
15371         * DataGridLineStyle.cs: Initial check-in (minimal stub)
15372         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
15373         * DataGridTableStyle.cs: Initial check-in (minimal stub)
15374         * FontDialog.cs: Initial check-in (minimal stub)
15375         * FileDialog.cs: Initial check-in (minimal stub)
15376         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
15377         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
15378         * OpenFileDialog: Initial check-in (minimal stub)
15379         * IComponentEditorPageSite.cs: Initial check-in
15380         * Splitter.cs: Initial check-in (for Jackson)
15381         * SplitterEventArgs.cs: Initial check-in (for Jackson)
15382         * SplitterEventHandler.cs: Initial check-in (for Jackson)
15383         * TextBox.cs: Initial check-in; still needs some wiring to
15384           TextControl backend
15385         * Form.cs: Implemented ControlBox property
15386         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
15387         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
15388         * TextControl.cs: Added selection functionality; added todo header
15389         * TextBoxBase.cs:
15390           - Implemented Lines property
15391           - Implemented TextHeight property
15392           - Implemented SelectedText property
15393           - Implemented SelectionLength property
15394           - Implemented SelectAll method
15395           - Implemented ToString method
15396           - Removed and cleaned up some debug code
15397           - Implemented (still buggy) mouse text selection
15399 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
15401         * ComboBox.cs: Complete DropDownList implementation, fixes.
15403 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
15405         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
15406         * ComboBoxStyle.cs: ComboBoxStyle enum
15407         * ComboBox.cs: Initial work on ComboBox control
15409 2004-12-21  Peter Bartok  <pbartok@novell.com>
15411         * Control.cs (ctor, CreateParams): Moved setting of is_visible
15412           forward so that anything that creates a window gets the default,
15413           also no longer uses Visible property in CreateParams to avoid
15414           walking up the parent chain and possibly get the wrong visible
15415           status. Fixed IsVisible to no longer walk up to the parent.
15417 2004-12-21  Peter Bartok  <pbartok@novell.com>
15419         * Form.cs (ShowDialog): Unset modality for the proper window
15421 2004-12-20  Peter Bartok  <pbartok@novell.com>
15423         * CommonDialog.cs: Initial check-in
15425 2004-12-20  Peter Bartok  <pbartok@novell.com>
15427         * Control.cs (Visible): Now uses the parent window instead of the
15428           client area window for the property
15430         * Form.cs
15431           - ShowDialog(): Now uses the proper window for modality
15432           - The default visibility state for the form parent is now false. This
15433             will prevent the user from seeing all the changes to the form and
15434             its controls before the application hits Application.Run()
15435           - Removed some stale commented out code
15437         * NativeWindow.cs:
15438           - Added FindWindow() method to have a method to check for existence
15439             of a window handle
15440           - Added ability to override default exception handling (for example
15441             when debugging with VS.Net; to do this the ExternalExceptionHandler
15442             define must be set
15443           - Removed some useless debug output
15445         * XplatUIX11.cs:
15446           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
15447             not working as expected
15448           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
15449             property to allow switching back to the modal window if focus is
15450             given to another one of our windows (Application Modal)
15451           - Now only sets override_redirect if we create a window
15452             without WS_CAPTION
15453           - Moved EventMask selection before mapping of newly created window
15454             so we can catch the map event as well
15455           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
15456           - Added various Atom related DllImports
15457           - Implemented Exit() method
15458           - .ctor() : No longer shows window if WS_VISIBLE is not defined
15459             in the CreateParams
15461         * MessageBox.cs: Now properly deals with the FormParent window by
15462           providing an override the FormParent CreateParams property to
15463           set as POPUP instead of OVERLAPPED window.
15465 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
15467         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
15468         Minor code cleanup.
15470 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
15471         
15472         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
15474 2004-12-18  Peter Bartok  <pbartok@novell.com>
15476         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
15477           implementing SetModal() method
15479 2004-12-18  Peter Bartok  <pbartok@novell.com>
15481         * X11Structs.cs (XGCValues): Fixed type of function element
15482         * XplatUI.cs: Added ScrollWindow() method
15483         * XplatUIDriver.cs: Added ScrollWindow() abstract
15484         * XplatUIWin32.cs: Implemented ScrollWindow() method
15485         * XplatUIX11.cs: Implemented ScrollWindow() method
15486         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
15488 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
15490         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
15491         Some more keyboard support (INCOMPLETE)
15493 2004-12-17  Peter Bartok  <pbartok@novell.com>
15495         * TextControl.cs:
15496         - Added color attribute to line tags.
15497         - Added color argument to all functions dealing with tags
15498         - Added color argument support to various functions
15499         - Fixed miss-calculation of baseline/shift in certain circumstances
15501         * TextBoxBase.cs: Added new color option to test code
15503 2004-12-17  Jackson Harper  <jackson@ximian.com>
15505         * TreeNode.cs:
15506         * MonthCalendar.cs: Signature fixes
15508 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
15510         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
15511         keyboard event moved it.  Create a new graphics context for each paint resolves this
15513 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
15515         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
15516         Make caret exist and go blink blink.  Initial keyboard support.
15517         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
15518         works.
15520 2004-12-17  Jackson Harper  <jackson@ximian.com>
15522         * XplatUIStructs.cs: Updated set of virtual keycodes.
15523         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
15525 2004-12-17  Jackson Harper  <jackson@ximian.com>
15527         * XplatUIX11.cs: Prune old keyboard code.
15529 2004-12-17  Jackson Harper  <jackson@ximian.com>
15531         * XplatUIX11.cs: When generating mouse wparams get the modifier
15532         keys from the ModifierKeys property.
15534 2004-12-17  Jackson Harper  <jackson@ximian.com>
15536         * X11Keyboard.cs: Send up/down input when generating
15537         messages. Remove some unused vars.
15539 2004-12-17  Jackson Harper  <jackson@ximian.com>
15541         * TabControl.cs:
15542         * TreeView.cs: get rid of warnings.
15544 2004-12-17  Jackson Harper  <jackson@ximian.com>
15546         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
15548 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
15550         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
15551           CheckedListBox.cs: Implementation
15553 2004-12-17  Peter Bartok  <pbartok@novell.com>
15555         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
15557 2004-12-16  Peter Bartok  <pbartok@novell.com>
15559         * TextControl.cs:
15560           - InsertCharAtCaret(): Fixed start pos fixup
15561           - CaretLine_get: No longer derives the line from the tag, the tag
15562             could be stale if lines in the document have been added or deleted
15563           - RebalanceAfterDelete(): Fixed bug in balancing code
15564           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
15565           - Line.Streamline(): Now can also elminate leading empty tags
15566           - DumpTree(): Added a few more tests and prevented exception on
15567             uninitialized data
15568           - Added Debug section for Combining lines
15569           - Delete(): Now copies all remaining properties of a line
15570           
15571         * TextBoxBase.cs:
15572           - Left mousebutton now sets the caret (and middle button still acts
15573             as formatting tester, which must go away soon)
15574           - Added Debug section for Deleting/Combining lines
15575           - Fixed calculations for UpdateView after Combining lines
15577 2004-12-16  Peter Bartok  <pbartok@novell.com>
15579         * TextControl.cs: Now properly aligns text on a baseline, using the
15580           new XplatUI.GetFontMetrics() method. Simplified several calculations
15581         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
15582           defined
15584 2004-12-16  Peter Bartok  <pbartok@novell.com>
15586         * XplatUI.cs: Added GetFontMetrics() method
15587         * XplatUIDriver.cs: Added GetFontMetrics() abstract
15588         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
15589           into libgdiplus, our private GetFontMetrics function
15590         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
15591         * XplatUIWin32.cs: Implemented GetFontMetrics() method
15593 2004-12-16  Jackson Harper  <jackson@ximain.com>
15595         * XplatUIStruct.cs: Add enum for dead keys
15596         * X11Keyboard.cs: Map and unmap dead keys.
15598 2004-12-16  Jackson Harper  <jackson@ximian.com>
15600         * X11Keyboard.cs: Detect and use the num lock mask.
15602 2004-12-16  Peter Bartok  <pbartok@novell.com>
15604         * Control.cs (CreateGraphics): Added check to make sure the
15605           handle of the window exists before calling Graphics.FromHwnd()
15607 2004-12-16  Peter Bartok  <pbartok@novell.com>
15609         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
15610           contains a lot of code that's not supposed to be there for the
15611           real thing, but required for developing/testing the textbox
15612           backend.
15614 2004-12-16  Peter Bartok  <pbartok@novell.com>
15616         * TextControl.cs:
15617         - Fixed Streamline method
15618         - Added FindTag method to Line
15619         - Added DumpTree method for debugging
15620         - Added DecrementLines() method for deleting lines
15621         - Fixed UpdateView to update the cursor to end-of-line on single-line
15622           updates
15623         - Added PositionCaret() method
15624         - Fixed MoveCaret(LineDown) to move into the last line, too
15625         - Added InsertChar overload
15626         - Fixed InsertChar tag offset calculations
15627         - Added DeleteChar() method
15628         - Added Combine() method for folding lines
15629         - Fixed Delete() method, no longer allocates wasted Line object and
15630           now copies all properties when swapping nodes
15631         - Delete() method now updates document line counter
15633 2004-12-15  Jackson Harper  <jackson@ximian.com>
15635         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
15636         * X11Keyboard.cs: Expose the currently selected modifier keys
15637         through a property.
15639 2004-12-15  Peter Bartok  <pbartok@novell.com>
15641         * TextControl.cs: Initial check-in. Still incomplete
15643 2004-12-15  Jackson Harper  <jackson@ximian.com>
15645         * TreeNode.cs:
15646         * TreeView.cs: Fix build on csc (second time today ;-))
15648 2004-12-15  Jackson Harper  <jackson@ximian.com>
15650         * TreeView.cs: Store the treenodes plus/minus box bounds when it
15651         is calculated and use this for click testing.
15652         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
15654 2004-12-15  Jackson Harper  <jackson@ximian.com>
15656         * TreeView.cs: Pass the nodes image index to the image list when
15657         drawing that image.
15659 2004-12-15  Jackson Harper  <jackson@ximian.com>
15661         * X11Keyboard.cs: Set messages hwnd.
15662         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
15663         post_message calls.
15665 2004-12-15  Jackson Harper  <jackson@ximian.com>
15667         * X11Keyboard.cs: Fix to compile with csc.
15668         
15669 2004-12-15  Jackson Harper  <jackson@ximian.com>
15671         * X11Structs.cs: Add key mask values
15672         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
15673         * X11Keyboard.cs: New file - Extrapolates and interpolates key
15674         down/up foo into WM_CHAR foo
15675         * KeyboardLayouts.cs: Common keyboard layouts
15676         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
15677         post messages into the main queue.
15679 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
15681         * Button.cs: implement ProcessMnemonic
15682         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
15683           brushes everytime
15684         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
15685         * ButtonBase.cs: Show HotkeyPrefix (not the &)
15687 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
15688         
15689         * MonthCalendar.cs: Implemented click-hold for next/previous month
15690           and date selection
15691           
15692 2004-12-11  Peter Bartok  <pbartok@novell.com>
15694         * X11Structs.cs:
15695           - Added XKeyboardState (moved from XplatUIX11.cs)
15696           - Added XCreateGC related enums and structures
15697           - Added GXFunction for XSetFunction
15699         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
15701         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
15702           CaretVisible() calls
15704         * ToolTip.cs: Added code to prevent stealing focus from app windows
15706         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
15707           DestroyCaret, SetCaretPos and CaretVisible)
15709         * XplatUIX11.cs:
15710           - Added implementation for caret functions
15711           - Moved hover variables into a struct, to make it a bit easier
15712             on the eyes and to debug
15713           - Removed XKeyboardState (moved to XplatUIX11.cs)
15714           - Moved Keyboard properties into the properties region
15716         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
15717           call to get a graphics context for our control
15719         * XplatUIOSX.cs: Added empty overrides for the new caret functions
15721         * TreeView.cs: Fixed bug. No matter what color was set it would always
15722           return SystemColors.Window
15724         * XplatUIWin32.cs: Implemented caret overrides
15726 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
15728         * ListBox.cs: fire events, implement missing methods and properties,
15729         sorting.
15731 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
15733         * MonthCalendar.cs: invalidation bug fixing
15734         * ThemeWin32Classic.cs: paint fixing
15736 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
15738         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
15739         prepare the CGContextRef there now.
15741 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
15743         * MonthCalendar.cs:
15744           - optimisationL only invalidate areas that have changed
15745         * ThemeWin32Classic.cs:
15746           - only paint parts that intersect with clip_area
15748 2004-12-09  Peter Bartok  <pbartok@novell.com>
15750         * Application.cs: Undid changes from r37004 which cause problems
15751         on X11
15753 2004-12-09  Ravindra  <rkumar@novell.com>
15755         * ToolBar.cs: Added support for displaying ContextMenu
15756         attached to a button on ToolBar.
15757         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
15758         property.
15760 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
15762         * Label.cs: autosize works in text change and removes unnecessary
15763         invalidate
15765 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
15767         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
15768         remove warnings
15770 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
15772         * XplatUIOSX.cs: Added mouse move/click/grab support
15773         Remove some debugging WriteLines not needed anymore.
15774         Add window resizing/positioning.
15775         Fix visibility on reparenting.
15777 2004-12-08  Peter Bartok  <pbartok@novell.com>
15779         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
15781 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
15783         * XplatUIOSX.cs: Initial checkin
15784         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
15786 2004-12-03  Ravindra <rkumar@novell.com>
15788         * ListView.cs: Added some keybindings and fixed scrolling.
15789         ScrollBars listen to ValueChanged event instead of Scroll
15790         Event. This would let us take care of all changes being
15791         done in the scrollbars' values programmatically or manually.
15792         * ListView.cs (CanMultiselect): Added a check for shift key.
15793         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
15794         * ListViewItem.cs (Clone): Fixed. We need to make a copy
15795         of ListViewSubItemCollection as well.
15797 2004-12-06  Peter Bartok <pbartok@novell.com>
15799         * Control.cs (Parent): Added check and exception to prevent
15800         circular parenting
15802 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
15804         * ListBox.cs: implemented clipping, selection single and multiple,
15805         bug fixing
15807 2004-12-03  Ravindra <rkumar@novell.com>
15809         * ListView.cs (ListView_KeyDown):
15810         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
15811         when CTRL key is pressed.
15812         * ListViewItem.cs (Selected): Fixed setting the property.
15814 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
15816         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
15818         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
15819         MinimizeBox, ShowInTaskbar, TopMost properties.
15821         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
15822         will be implemented).
15824 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
15826         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
15828         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
15829         tests.
15830         
15831         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
15832         
15833         * TreeView.cs: BackColor is Colors.Window.
15835 2004-12-01  Jackson Harper  <jackson@ximian.com>
15837         * TreeView.cs: When resizing the tree if the user is making it
15838         smaller we don't get expose events, so we need to handle adding
15839         the horizontal scrollbar in the size changed handler as well as
15840         the expose handler.
15842 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
15844         * DrawItemState.cs: fixes wrong enum values
15846 2004-12-01  Jackson Harper  <jackson@ximian.com>
15848         * TreeView.cs: Resize the hbar as well as the vbar on resize.
15850 2004-12-01  Jackson Harper  <jackson@ximian.com>
15852         * NodeLabelEditEventArgs.cs:
15853         * NodeLabelEditEventHandler.cs:
15854         * OpenTreeNodeEnumerator.cs:
15855         * TreeNode.cs:
15856         * TreeNodeCollection.cs:
15857         * TreeView.cs:
15858         * TreeViewAction.cs:
15859         * TreeViewCancelEventArgs.cs:
15860         * TreeViewCancelEventHandler.cs:
15861         * TreeViewEventArgs.cs:
15862         * TreeViewEventHandler.cs: Initial implementation.
15864 2004-12-01  Ravindra <rkumar@novell.com>
15866         * ListView.cs (CalculateListView): Fixed scrolling related
15867         calculations. Also, removed some debug statements from other
15868         places.
15869         * ListViewItem.cs: Changed access to 'selected' instance variable
15870         from private to internal.
15871         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
15873 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
15875         * ThemeWin32Classic.cs: remove cache of brush and pens for
15876         specific controls and use the global system, fixes scrollbutton
15877         bugs (for small sizes, disabled, etc)
15878         
15879         * ScrollBar.cs: does not show the thumb for very small controls
15880         (as MS) and allow smaller buttons that the regular size
15882 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
15884         * UpDownBase.cs: Add abstract methods for the interface.
15885         Add new virtual methods (need to be hooked up to TextEntry when it
15886         exists).
15887         Add override methods for most features.
15888         Computes the size, forces the height of the text entry.
15890         * NumericUpDown.cs: Put here the current testing code.
15892         * Set eol-style property on all files that do not have mixed line
15893         endings, to minimize the future problems.  There are still a few
15894         files with mixed endings, and someone should choose whether they
15895         want to move it or not.
15897 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
15899         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
15900         System.Colors
15901         
15902 2004-11-30  Ravindra <rkumar@novell.com>
15904         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
15905         drawing and replaced use of SystemColors by theme colors.
15906         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
15907         * ListView.cs (ListViewItemCollection.Add): Throw exception when
15908         same ListViewItem is being added more than once.
15910 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
15912         * MonthCalendar.cs:
15913           - ControlStyles love to make the control not flicker
15914           
15915 2004-11-30  Peter Bartok  <pbartok@novell.com>
15917         * CharacterCasing.cs: Added
15919 2004-11-29  Peter Bartok  <pbartok@novell.com>
15921         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
15922           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
15923           I am removing these files as they conflict with already completed
15924           work. While it is fantastic to get contributions to MWF, I
15925           respectfully ask that everyone please coordinate their contributions
15926           through mono-winforms-list or #mono-winforms at this time. We're
15927           explicitly avoiding stubbing and don't want controls that don't have
15928           their basic functionality implemented in svn. Please also see
15929           http://www.mono-project.com/contributing/winforms.html
15932 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
15934         * Application.cs (ModalRun): Don't hang after exit.
15936         * Theme.cs: New TreeViewDefaultSize property.
15938         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
15939         with less hardcoded SystemColors constant.
15940         Implemented TreeViewDefaultSize.
15942         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
15943         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
15946 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
15948         * MonthCalendar.cs:
15949           - Fix NextMonthDate and PrevMonthDate click moving calendar
15951 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
15953         * MonthCalendar.cs:
15954           - Fix usage of ScrollChange Property when scrolling months
15956 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
15958         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
15959          - Fixes menu destroying
15960          - Support adding and removing items on already created menus
15962 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
15964         * MonthCalendar.cs:
15965           - Re-worked all bolded dates handling to match win32
15966         * ThemeWin32Classic.cs:
15967           - Fixed rendering with bolded dates
15969 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
15971         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
15972         - Horizontal scroolbar
15973         - Multicolumn
15974         - Fixes
15977 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
15979         * MonthCalendar.cs:
15980           - Fix Usage of MaxSelectionCount from SelectionRange
15981           - Fixed Shift + Cursor Selection
15982           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
15983           - Fixed normal cursor selection to be compat with win32
15984           - Fixed Shift + Mouse Click selection
15986 2004-11-24  Peter Bartok <pbartok@novell.com>
15988         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
15989         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
15990         * XplatUIX11.cs:
15991           - CreatedKeyBoardMsg now updates keystate with Alt key
15992           - Added workaround for timer crash to CheckTimers, Jackson will
15993             develop a proper fix and check in later
15994           - Implemented DispatchMessage
15995           - Removed calling the native window proc from GetMessage (call
15996             now moved to DispatchMessage)
15998         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
15999           the keydata (Fixes bug #69831)
16001         * XplatUIWin32.cs:
16002           - (DispatchMessage): Switched to return IntPtr
16003           - Added DllImport for SetFocus
16005 2004-11-24  Ravindra <rkumar@novell.com>
16007         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
16008         background drawing.
16009         * ListViewItem.cs: Fixed various properties, calculations
16010         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
16011         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
16012         and some internal properties. Fixed MouseDown handler and Paint
16013         method.
16015 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
16017         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
16019 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
16021         * ContainerControl.cs: correct accidental check in of local changes
16023 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
16025         * ThemeWin32Classic.cs:
16026                 - Fixed Drawing Last month in grid (sometimes not showing)
16027         * MonthCalendar.cs:
16028                 - Fixed title width calculation bug (makeing title small)
16030 2004-11-23  Peter Bartok <pbartok@novell.com>
16032         * XplatUIX11.cs:
16033           - Added generation of WM_MOUSEHOVER event
16034           - Added missing assignment of async_method atom
16035           - Fixed WM_ERASEBKGND; now only redraws the exposed area
16037 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
16039         * ThemeWin32Classic.cs:
16040                 - Fixed Drawing of today circle when showtodaycircle not set
16041                 - fixed drawing of first and last month in the grid (gay dates)
16042         * MonthCalendar.cs:
16043                 - Fixed Drawing of today circle
16044                 - Fixed drawing of grady dates
16045                 - Fixed HitTest for today link when ShowToday set to false
16046                 - Fixed DefaultSize to obey ShowToday
16048 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
16050         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
16051         * System.Windows.Forms/Theme.cs
16052         * MonthCalendar.cs: added for MonthCalendar
16053         * SelectionRange.cs: added for MonthCalendar
16054         * Day.cs: added for MonthCalendar: added for MonthCalendar
16055         * DateRangeEventArgs.cs: added for MonthCalendar
16056         * DateRangeEventHandler.cs: added for MonthCalendar
16058 2004-11-22  Ravindra <rkumar@novell.com>
16060         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
16061         property.
16063 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
16065         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
16066         event handler.
16067         
16068         * NumericUpDown.cs: Added new implementation.
16069         * UpDownBase.cs: Added new implementation.
16071         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
16072         implementations.
16073         
16074         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
16075         implementations.
16077         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
16078         methods.
16080 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
16082         * Timer.cs  (Dispose): Should call the base dispose when
16083         overriding.
16085 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
16087         * ScrollBar.cs: updates thumb position when max, min or increment
16088         is changed
16090 2004-11-21  Ravindra <rkumar@novell.com>
16092         * ListView.cs: Implemented item selection, activation and
16093         column header style. Fixed properties to do a redraw, if
16094         required. Added support for MouseHover, DoubleClick, KeyDown
16095         and KeyUp event handling and some minor fixes.
16096         * ListViewItem.cs: Fixed constructor.
16097         * ThemeWin32Classic.cs: Improved drawing for ListView.
16099 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
16101         * ThemeWin32Classic.cs: initial listbox drawing code
16102         * DrawMode.cs: new enumerator
16103         * ListControl.cs: stubbed class
16104         * ListBox.cs: initial implementation
16105         * Theme.cs: new methods definitions
16106         * SelectionMode.cs: new enumerator
16108 2004-11-17  Peter Bartok  <pbartok@novell.com>
16110         * XplatUIWin32.cs: Added double-click events to the class style
16111         * Control.cs (WndProc):
16112           - Added handling of click-count to MouseDown/ MouseUp events.
16113           - Added handling of middle and right mouse buttons
16114           - Removed old debug code
16116 2004-11-17  Jackson Harper  <jackson@ximian.com>
16118         * XplatUIX11.cs: Use the new Mono.Unix namespace.
16120 2004-11-17  Ravindra <rkumar@novell.com>
16122         * ListView.cs: Added event handling for MouseMove/Up/Down.
16123         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
16124         * ThemeWin32Classic.cs: We need to clear the graphics context and
16125         draw column header in a proper state.
16128 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
16130         *  Menu.cs: fixes signature
16132 2004-11-16  Peter Bartok  <pbartok@novell.com>
16134         * XplatUIX11.cs (GetMessage): Implemented generation of
16135           double click mouse messages
16137 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
16139         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
16140         not by menu
16142 2004-11-11  Peter Bartok  <pbartok@novell.com>
16144         * HandleData.cs: Added Visible property
16145         * XplatUIX11.cs (IsVisible): Now uses Visible property from
16146           HandleData
16147         * XplatUIX11.cs: Removed old debug leftovers
16148         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
16149         * Control.cs (WndProc): Removed old debug leftovers,
16150           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
16151           needed WM_SIZE handling
16153 2004-11-11  Jackson Harper  <jackson@ximian.com>
16155         * OwnerDrawPropertyBag.cs:
16156         * TreeViewImageIndexConverter.cs: Initial implementation
16158 2004-11-10  Jackson Harper  <jackson@ximian.com>
16160         * ThemeWin32Classic.cs:
16161         * TabControl.cs: instead of moving tabs by the slider pos just
16162         start drawing at the tab that is offset by the slider. This way
16163         scrolling always moves by exactly one tab.
16165 2004-11-10  Jackson Harper  <jackson@ximian.com>
16167         * TabControl.cs: You can only scroll left when the slider has
16168         already ben moved right.
16169         
16170 2004-11-10  Jackson Harper  <jackson@ximian.com>
16172         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
16173         the clip area.
16174         
16175 2004-11-10  Jackson Harper  <jackson@ximian.com>
16177         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
16178         clip area.
16179         
16180 2004-11-09  Jackson Harper  <jackson@ximian.com>
16182         * TabControl.cs (CalcXPos): New helper method so we can determine
16183         the proper place to start drawing vertical tabs.
16184         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
16185         
16186 2004-11-09  Jackson Harper  <jackson@ximian.com>
16188         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
16189         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
16190         and Bottom, left and right are illegal values for this and
16191         multiline is enabled when the alignment is set to left or right.
16192         (DrawTab): Each alignment block should draw the text itself now
16193         because Left requires special love. Also add rendering for Left
16194         aligned tabs.
16195         
16196 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
16198         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
16199         does not destroy the windows, removes debugging messages
16201 2004-11-09  jba  <jba-mono@optusnet.com.au>
16203         * ThemeWin32Classic.cs
16204         (DrawButtonBase): Fix verticle text rect clipping in windows
16205         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
16206         rendering and incorrect text rect clipping
16207         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
16208         rendering and incorrect text rect clipping
16209         
16210 2004-11-08  Jackson Harper  <jackson@ximian.com>
16212         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
16213         bottom when they are bottom aligned so the bottoms of the tabs get
16214         displayed.
16215         * TabControl.cs (DropRow): Move rows up instead of down when the
16216         tab control is bottom aligned.
16218 2004-11-08 13:59  pbartok
16220         * XplatUIX11.cs:
16221           - Added handling for various window styles
16222           - Added handling for popup windows
16223           - Added SetTopmost handling
16225 2004-11-08 13:55  pbartok
16227         * XplatUIWin32.cs:
16228           - Added argument to SetTopmost method
16229           - Fixed broken ClientToScreen function
16231 2004-11-08 13:53  pbartok
16233         * XplatUIStructs.cs:
16234           - Added missing WS_EX styles
16236 2004-11-08 13:53  pbartok
16238         * XplatUI.cs, XplatUIDriver.cs:
16239           - Added argument to SetTopmost
16241 2004-11-08 13:52  pbartok
16243         * X11Structs.cs:
16244           - Added XSetWindowAttributes structure
16245           - Improved XWindowAttributes structure
16246           - Added SetWindowValuemask enum
16247           - Added window creation arguments enum
16248           - Added gravity enum
16249           - Added Motif hints structure
16250           - Added various Motif flags and enums
16251           - Added PropertyMode enum for property functions
16253 2004-11-08 13:50  pbartok
16255         * Form.cs:
16256           - Fixed arguments for updated SetTopmost method
16258 2004-11-08 13:49  pbartok
16260         * ToolTip.cs:
16261           - Fixed arguments for updated SetTopmost function
16262           - Fixed usage of PointToClient
16264 2004-11-08 13:44  pbartok
16266         * MenuAPI.cs:
16267           - Added Clipping of children and siblings
16269 2004-11-08 13:41  pbartok
16271         * MainMenu.cs:
16272           - Removed SetMenuBarWindow call. We do this in Form.cs
16274 2004-11-08 13:40  jackson
16276         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
16277           scrolling jimmi in the correct location with bottom aligned tabs
16279 2004-11-08 13:36  pbartok
16281         * ContainerControl.cs:
16282           - Implemented BindingContext
16283           - Implemented ParentForm
16285 2004-11-08 12:46  jackson
16287         * TabControl.cs: Put bottom rendered tabs in the right location
16289 2004-11-08 07:15  jordi
16291         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
16292           removes dead code
16294 2004-11-05 17:30  jackson
16296         * TabControl.cs: When selected tabs are expanded make sure they
16297           don't go beyond the edges of the tab control
16299 2004-11-05 14:57  jackson
16301         * TabControl.cs: Reset show_slider so if the control is resized to
16302           a size where it is no longer needed it's not displayed anymore
16304 2004-11-05 13:16  jackson
16306         * TabControl.cs: Make tab pages non visible when added to the
16307           control
16309 2004-11-05 12:42  jackson
16311         * TabControl.cs: Implement SizeMode.FillToRight
16313 2004-11-05 12:16  jackson
16315         * Control.cs: Do not call CreateHandle if the handle is already
16316           created
16318 2004-11-05 11:46  jackson
16320         * TabControl.cs: Remove superflous call to CalcTabRows
16322 2004-11-05 09:07  jackson
16324         * XplatUIX11.cs: Update for Mono.Posix changes
16326 2004-11-05 07:00  ravindra
16328         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
16329           scrolling.
16331 2004-11-04 22:47  jba
16333         * ThemeWin32Classic.cs:
16334           - Fix Button rendering for FlatStyle = Flat or Popup
16335           - Fix RadioButton and CheckBox rendering when Appearance = Button
16336             (normal and flatstyle).
16337           - Correct outer rectangle color when drawing focus rectangle
16338           - Adjust button bounds to be 1 px smaller when focused
16339           - Make button not draw sunken 3d border when pushed (windows compat)
16340           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
16341           - Offset the text in RadioButton and Checkbox when being rendered as
16342           a button.
16343           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
16344           radiobuttons
16345           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
16346           - Fixed disabled text rendering for normally rendered radiobuttons
16348 2004-11-04 10:26  jackson
16350         * TabControl.cs: Recalculate tab rows when resizing
16352 2004-11-04 07:47  jordi
16354         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
16355           collection completion, drawing issues, missing features
16357 2004-11-04 05:03  ravindra
16359         * ScrollBar.cs:
16360                 - We need to recalculate the Thumb area when
16361                 LargeChange/maximum/minimum values are changed.
16362           - We set the 'pos' in UpdatePos() method to minimum, if it's less
16363                 than minimum. This is required to handle the case if large_change is
16364                 more than max, and use LargeChange property instead of large_change
16365                 variable.
16366           - We return max+1 when large_change is more than max, like MS does.
16368 2004-11-04 04:29  ravindra
16370         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
16371                 - Changed default value signatures (prefixed all with ListView).
16372                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
16373                 ListView.
16374           - Fixed calculations for ListViewItem and implemented Clone()
16375           method.
16377 2004-11-04 04:26  ravindra
16379         * Theme.cs, ThemeWin32Classic.cs:
16380                 - Changed default ListView values signatures (prefixed all with
16381                 ListView).
16382           - Fixed default size values for VScrollBar and HScrollBar.
16383                 - Fixed DrawListViewItem method.
16385 2004-11-04 04:05  ravindra
16387         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
16389 2004-11-04 04:04  ravindra
16391         * ImageList.cs: Implemented the missing overload for Draw method.
16393 2004-11-03 19:29  jackson
16395         * TabControl.cs: Handle dropping rows on selection properly
16397 2004-11-03 11:59  jackson
16399         * TabControl.cs: remove debug code
16401 2004-11-03 11:52  jackson
16403         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
16404           the scrolly widgerywoo
16406 2004-11-02 13:52  jackson
16408         * TabControl.cs: Resize the tab pages and tabs when the tab control
16409           is resized
16411 2004-11-02 13:40  jackson
16413         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
16414           selected tab to the bottom
16416 2004-11-02 13:39  jackson
16418         * TabPage.cs: Store the tab pages row
16420 2004-11-02 12:33  jordi
16422         * MenuItem.cs: fixes handle creation
16424 2004-11-02 11:42  jackson
16426         * TabControl.cs: signature fix
16428 2004-11-02 08:56  jackson
16430         * TabControl.cs: Calculate whether the tab is on an edge properly.
16431           Remove top secret debugging code
16433 2004-11-01 19:57  jackson
16435         * TabControl.cs: Add click handling, and proper sizing
16437 2004-11-01 19:47  jackson
16439         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
16440           tab controls
16442 2004-11-01 19:39  jackson
16444         * TabPage.cs: add internal property to store the bounds of a tab
16445           page
16447 2004-10-30 04:23  ravindra
16449         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
16450           values.
16452 2004-10-30 04:21  ravindra
16454         * ListView.cs, ListViewItem.cs: Added support for scrolling and
16455           fixed calculations.
16457 2004-10-30 03:06  pbartok
16459         * XplatUIX11.cs:
16460           - Removed extension of DllImported libs
16462 2004-10-29 09:55  jordi
16464         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
16465           navigation, itemcollection completion, menu fixes
16467 2004-10-27 22:58  pbartok
16469         * XplatUIX11.cs:
16470           - Now throws a nice error message when no X display could be opened
16472 2004-10-26 13:51  jordi
16474         * ListView.cs: removes warning
16476 2004-10-26 03:55  ravindra
16478         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
16479           ThemeWin32Classic.cs: Some formatting for my last checkins.
16481 2004-10-26 03:36  ravindra
16483         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
16484           control and default values.
16486 2004-10-26 03:35  ravindra
16488         * Theme.cs: Added some default values for ListView control.
16490 2004-10-26 03:33  ravindra
16492         * ToolBar.cs: ToolBar should use the user specified button size, if
16493           there is any. Added a size_specified flag for the same.
16495 2004-10-26 03:33  ravindra
16497         * ColumnHeader.cs: Added some internal members and calculations for
16498           ColumnHeader.
16500 2004-10-26 03:32  ravindra
16502         * ListViewItem.cs: Calculations for ListViewItem.
16504 2004-10-26 03:31  ravindra
16506         * ListView.cs: Added some internal members and calculations for
16507           ListView.
16509 2004-10-22 13:31  jordi
16511         * MenuAPI.cs: speedup menus drawing
16513 2004-10-22 13:16  jackson
16515         * XplatUIX11.cs: Make sure to update exposed regions when adding an
16516           expose event
16518 2004-10-22 11:49  jackson
16520         * Control.cs: oops
16522 2004-10-22 11:41  jackson
16524         * Control.cs: Check to see if the window should have its background
16525           repainted by X when drawing.
16527 2004-10-22 11:31  jackson
16529         * XplatUIX11.cs: When invalidating areas only use XClearArea if
16530           clear is true, this way we do not get flicker from X repainting the
16531           background
16533 2004-10-22 11:28  jackson
16535         * XEventQueue.cs: Queue properly
16537 2004-10-21 09:38  jackson
16539         * XEventQueue.cs: Fix access modifier
16541 2004-10-21 09:36  jackson
16543         * XEventQueue.cs: Don't loose messages
16545 2004-10-21 09:22  jackson
16547         * XEventQueue.cs: Don't loose messages
16549 2004-10-20 04:15  jordi
16551         * BootMode.cs: enum need it by SystemInfo
16553 2004-10-19 21:58  pbartok
16555         * XplatUIWin32.cs:
16556           - Small sanity check
16558 2004-10-19 21:56  pbartok
16560         * Form.cs:
16561           - Added private FormParentWindow class which acts as the container
16562             for our form and as the non-client area where menus are drawn
16563           - Added/Moved required tie-ins to Jordi's menus
16564           - Fixed/Implemented the FormStartPosition functionality
16566 2004-10-19 21:52  pbartok
16568         * Control.cs:
16569           - Removed unneeded locals
16570           - Added code to all size and location properties to understand and
16571             deal with the parent container of Form
16573 2004-10-19 21:33  pbartok
16575         * Application.cs:
16576           - Fixed to deal with new Form subclasses for menus
16578 2004-10-19 17:48  jackson
16580         * XEventQueue.cs: commit correct version of file
16582 2004-10-19 16:50  jackson
16584         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
16586 2004-10-19 16:15  jordi
16588         * MenuAPI.cs: MenuBarCalcSize returns the height
16590 2004-10-19 08:31  pbartok
16592         * Control.cs:
16593           - Added missing call to PreProcessMessage before calling OnXXXKey
16594           methods
16596 2004-10-19 00:04  ravindra
16598         * ToolTip.cs: Fixed constructor.
16600 2004-10-18 09:31  jordi
16602         * MenuAPI.cs: menuitems in menubars do not have shortcuts
16604 2004-10-18 09:26  jordi
16606         * MenuItem.cs: fixes MenuItem class signature
16608 2004-10-18 08:56  jordi
16610         * MenuAPI.cs: prevents windows from showing in the taskbar
16612 2004-10-18 00:28  ravindra
16614         * ToolTip.cs: Suppressed a warning message.
16616 2004-10-18 00:27  ravindra
16618         * Control.cs: Default value of visible property must be true.
16620 2004-10-17 23:19  pbartok
16622         * ToolTip.cs:
16623           - Complete implementation
16625 2004-10-17 23:19  pbartok
16627         * XplatUIX11.cs:
16628           - Added EnableWindow method
16629           - Added SetModal stub
16630           - Added generation of WM_ACTIVATE message (still needs testing)
16631           - Added SetTopMost stub
16632           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
16634 2004-10-17 23:17  pbartok
16636         * XplatUIWin32.cs:
16637           - Removed VirtualKeys to XplatUIStructs
16638           - Implemented SetTopMost method
16639           - Implemented EnableWindow method
16640           - Bugfix in ScreenToClient()
16641           - Bugfixes in ClientToScreen()
16643 2004-10-17 22:51  pbartok
16645         * XplatUIStructs.cs:
16646           - Added WS_EX styles to WindowStyles enumeration
16648 2004-10-17 22:50  pbartok
16650         * XplatUI.cs, XplatUIDriver.cs:
16651           - Added method for enabling/disabling windows
16652           - Added method for setting window modality
16653           - Added method for setting topmost window
16655 2004-10-17 22:49  pbartok
16657         * ThemeWin32Classic.cs:
16658           - Added ToolTip drawing code
16660 2004-10-17 22:49  pbartok
16662         * Theme.cs:
16663           - Added ToolTip abstracts
16665 2004-10-17 22:47  pbartok
16667         * Form.cs:
16668           - Fixed Form.ControlCollection to handle owner relations
16669           - Added Owner/OwnedForms handling
16670           - Implemented Z-Ordering for owned forms
16671           - Removed unneeded private overload of ShowDialog
16672           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
16673             so I hope)
16674           - Fixed Close(), had wrong default
16675           - Added firing of OnLoad event
16676           - Added some commented out debug code for Ownership handling
16678 2004-10-17 22:16  pbartok
16680         * Control.cs:
16681           - Fixed/implemented flat list of controls
16683 2004-10-17 22:14  pbartok
16685         * Application.cs:
16686           - Added code to simulate modal dialogs on Win32
16688 2004-10-17 16:11  jordi
16690         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
16691           mouse event
16693 2004-10-17 13:39  jordi
16695         * MenuAPI.cs: menu drawing fixes
16697 2004-10-15 09:10  ravindra
16699         * StructFormat.cs: General Enum.
16701 2004-10-15 09:09  ravindra
16703         * SizeGripStyle.cs: Enum for Form.
16705 2004-10-15 09:08  ravindra
16707         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
16708           in Theme for ListView.
16710 2004-10-15 09:06  ravindra
16712         * ColumnHeader.cs: Flushing some formatting changes.
16714 2004-10-15 09:05  ravindra
16716         * ListViewItem.cs: Implemented GetBounds method and fixed coding
16717           style.
16719 2004-10-15 09:03  ravindra
16721         * ListView.cs: Implemented Paint method and fixed coding style.
16723 2004-10-15 07:34  jordi
16725         * MenuAPI.cs: fix for X11
16727 2004-10-15 07:32  ravindra
16729         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
16730                 - Renamed Paint() method to Draw() for clarity. Also, moved
16731                 DrawImage() to OnPaint().
16733 2004-10-15 07:25  ravindra
16735         * CheckBox.cs, RadioButton.cs:
16736                 - Removed Redraw (), we get it from ButtonBase.
16737                 - Implemented Paint (), to do class specific painting.
16739 2004-10-15 07:16  ravindra
16741         * ButtonBase.cs:
16742                 - Redraw () is not virtual now.
16743                 - Added an internal virtual method Paint (), so that
16744                 derived classes can do their painting on their own.
16745                 - Modified OnPaint () to call Paint ().
16747 2004-10-15 06:43  jordi
16749         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
16750           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
16752 2004-10-15 00:30  ravindra
16754         * MessageBox.cs:
16755                 - MessageBox on windows does not have min/max buttons.
16756                 This change in CreateParams fixes this on Windows. We
16757                 still need to implement this windowstyle behavior in
16758                 our X11 driver.
16760 2004-10-14 05:14  ravindra
16762         * ToolBar.cs:
16763                 - Changed Redraw () to do a Refresh () always.
16764                 - Fixed the MouseMove event handling when mouse is pressed,
16765                 ie drag event handling.
16766                 - Replaced the usage of ToolBarButton.Pressed property to
16767                 ToolBarButton.pressed internal variable.
16769 2004-10-14 05:10  ravindra
16771         * ToolBarButton.cs:
16772                 - Added an internal member 'inside' to handle mouse move
16773                 with mouse pressed ie mouse drag event.
16774                 - Changed 'Pressed' property to return true only when
16775                 'inside' and 'pressed' are both true.
16776                 - Some coding style love.
16778 2004-10-14 00:17  ravindra
16780         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
16781           public method.
16783 2004-10-14 00:15  ravindra
16785         * ButtonBase.cs: Redraw () related improvements.
16787 2004-10-14 00:14  ravindra
16789         * MessageBox.cs: Moved InitFormSize () out of Paint method and
16790           removed unnecessary calls to Button.Show () method.
16792 2004-10-13 17:50  pbartok
16794         * XplatUIX11.cs:
16795           - Formatting fix
16796           - Removed destroying of window until we solve the problem of X
16797             destroying the window before us on shutdown
16799 2004-10-13 16:32  pbartok
16801         * ButtonBase.cs:
16802           - Now Redraws on MouseUp for FlatStyle Flat and Popup
16804 2004-10-13 14:18  pbartok
16806         * XplatUIX11.cs:
16807           - Added code to destroy the X window
16809 2004-10-13 14:18  pbartok
16811         * XplatUIWin32.cs:
16812           - Added code to destroy a window
16814 2004-10-13 14:12  pbartok
16816         * ButtonBase.cs:
16817           - Added the Redraw on Resize that got dropped in the last rev
16819 2004-10-13 09:06  pbartok
16821         * ThemeWin32Classic.cs:
16822           - Path from John BouAntoun:
16823             * Fix check rendering (centre correctly for normal style, offset
16824               correctly for FlatStyle).
16825             * Fix border color usage (use backcolor) for FlatStyle.Popup
16826             * Use checkbox.Capture instead of checkbox.is_pressed when
16827               rendering flatstyle states.
16829 2004-10-12 21:48  pbartok
16831         * ThemeWin32Classic.cs:
16832           - Removed all occurences of SystemColors and replaced them with the
16833             matching theme color
16835 2004-10-12 21:41  pbartok
16837         * ThemeWin32Classic.cs:
16838           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
16839             him using the function for flatstyle drawing
16840           - Changed functions to use the new version of CPDrawBorder3D
16842 2004-10-12 21:15  pbartok
16844         * ControlPaint.cs:
16845           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
16846             match MS documentation. They need to return defined colors if the
16847             passed color matches the configured control color. Thanks to John
16848             BouAntoun for pointing this out.
16850 2004-10-12 20:57  pbartok
16852         * Control.cs:
16853           - Fix from John BouAntoun: Raise ForeColorChanged event when text
16854             color is changed
16856 2004-10-12 20:46  pbartok
16858         * CheckBox.cs:
16859           - Fix from John BouAntoun: Now properly sets the Appearance property
16861 2004-10-12 20:45  pbartok
16863         * ThemeWin32Classic.cs:
16864           - Fixes from John BouAntoun: now handles forecolors and backcolors
16865             for flatstyle rendered controls much better; It also fixes normal
16866             checkbox rendering when pushed or disabled.
16868 2004-10-08 02:50  jordi
16870         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
16871           work
16873 2004-10-07 08:56  jordi
16875         * ThemeWin32Classic.cs: Removes deletion of cached brushes
16877 2004-10-06 03:59  jordi
16879         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
16880           XplatUIWin32.cs: removes warnings from compilation
16882 2004-10-05 12:23  jackson
16884         * RadioButton.cs: Fix ctor
16886 2004-10-05 11:10  pbartok
16888         * MessageBox.cs:
16889           - Partial implementation by Benjamin Dasnois
16891 2004-10-05 10:15  jackson
16893         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
16894           by John BouAntoun
16896 2004-10-05 03:07  ravindra
16898         * ToolBar.cs:
16899                 - Removed a private method, Draw ().
16900                 - Fixed the ButtonDropDown event handling.
16901                 - Fixed MouseMove event handling.
16903 2004-10-05 03:04  ravindra
16905         * ThemeWin32Classic.cs:
16906                 - Added DrawListView method and ListViewDefaultSize property.
16907                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
16908                 - Changed DOS style CRLF to Unix format (dos2unix).
16910 2004-10-05 03:03  ravindra
16912         * Theme.cs:
16913                 - Added DrawListView method and ListViewDefaultSize property.
16915 2004-10-05 02:42  ravindra
16917         * ToolBarButton.cs: Added an internal member dd_pressed to handle
16918           clicks on DropDown arrow.
16920 2004-10-04 22:56  jackson
16922         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
16923           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
16924           Control handle the buffers, derived classes should not have to
16925           CreateBuffers themselves.
16927 2004-10-04 21:20  jackson
16929         * StatusBar.cs: The control handles resizing the buffers now.
16931 2004-10-04 21:18  jackson
16933         * Control.cs: When resizing the buffers should be invalidated. This
16934           should be handled in Control not in derived classes.
16936 2004-10-04 14:45  jackson
16938         * TabPage.cs: oops
16940 2004-10-04 02:14  pbartok
16942         * LeftRightAlignment.cs:
16943           - Initial check-in
16945 2004-10-04 01:09  jordi
16947         * ThemeWin32Classic.cs: fixes right button position causing right
16948           button not showing on horizontal scrollbars
16950 2004-10-02 13:12  pbartok
16952         * XplatUIX11.cs:
16953           - Simplified the Invalidate method by using an X call instead of
16954             generating the expose ourselves
16955           - Added an expose when the window background is changed
16956           - Implemented ClientToScreen method
16958 2004-10-02 13:08  pbartok
16960         * XplatUIWin32.cs:
16961           - Added Win32EnableWindow method (test for implementing modal
16962           dialogs)
16963           - Added ClientToScreen method and imports
16965 2004-10-02 13:07  pbartok
16967         * XplatUI.cs, XplatUIDriver.cs:
16968           - Added ClientToScreen coordinate translation method
16970 2004-10-02 13:06  pbartok
16972         * KeyPressEventArgs.cs:
16973           - Fixed access level for constructor
16975 2004-10-02 13:06  pbartok
16977         * NativeWindow.cs:
16978           - Changed access level for the window_collection hash table
16980 2004-10-02 13:05  pbartok
16982         * Form.cs:
16983           - Added KeyPreview property
16984           - Added Menu property (still incomplete, pending Jordi's menu work)
16985           - Implemented ProcessCmdKey
16986           - Implemented ProcessDialogKey
16987           - Implemented ProcessKeyPreview
16989 2004-10-02 13:02  pbartok
16991         * Control.cs:
16992           - Added private method to get the Control object from the window
16993           handle
16994           - Implemented ContextMenu property
16995           - Implemented PointToScreen
16996           - Implemented PreProcessMessage
16997           - Implemented IsInputChar
16998           - Implemented IsInputKey
16999           - Implemented ProcessCmdKey
17000           - Completed ProcessKeyEventArgs
17001           - Fixed message loop to call the proper chain of functions on key
17002           events
17003           - Implemented ProcessDialogChar
17004           - Implemented ProcessDialogKey
17005           - Implemented ProcessKeyMessage
17006           - Implemented ProcessKeyPreview
17007           - Added RaiseDragEvent stub (MS internal method)
17008           - Added RaiseKeyEvent stub (MS internal method)
17009           - Added RaiseMouseEvent stub (MS Internal method)
17010           - Added RaisePaintEvent stub (MS Internal method)
17011           - Added ResetMouseEventArgs stub (MS Internal method)
17012           - Implemented RtlTranslateAlignment
17013           - Implemented RtlTranslateContent
17014           - Implemented RtlTranslateHorizontal
17015           - Implemented RtlTranslateLeftRight
17016           - Added generation of KeyPress event
17018 2004-10-02 05:57  ravindra
17020         * ListViewItem.cs: Added attributes.
17022 2004-10-02 05:32  ravindra
17024         * ListView.cs: Added attributes.
17026 2004-10-01 11:53  jackson
17028         * Form.cs: Implement the Close method so work on MessageBox can
17029           continue.
17031 2004-09-30 14:06  pbartok
17033         * XplatUIX11.cs:
17034           - Bug fixes
17036 2004-09-30 11:34  jackson
17038         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
17040 2004-09-30 07:26  ravindra
17042         * ListViewItemConverter.cs: Converter for ListViewItem.
17044 2004-09-30 07:26  ravindra
17046         * SortOrder.cs: Enum for ListView control.
17048 2004-09-30 07:25  ravindra
17050         * ColumnHeader.cs: Supporting class for ListView control.
17052 2004-09-30 07:24  ravindra
17054         * ListView.cs, ListViewItem.cs: Initial implementation.
17056 2004-09-30 07:20  ravindra
17058         * ItemActivation.cs: Enum for ListView Control.
17060 2004-09-29 20:29  pbartok
17062         * XplatUIX11.cs:
17063           - Added lookup of pixel value for background color; tries to get a
17064             color 'close' to the requested color, it avoids having to create a
17065             colormap.  Depending on the display this could mean the used color
17066             is slightly off the desired color. Might have to change it to a more
17067             resource intensive colormap approach, but it will work as a
17068           workaround to avoid red screens.
17070 2004-09-29 14:27  jackson
17072         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
17074 2004-09-28 12:44  pbartok
17076         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
17077           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
17078           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
17079           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
17080           TrackBar.cs, VScrollBar.cs:
17081           - Streamlined Theme interfaces:
17082             * Each DrawXXX method for a control now is passed the object for
17083               the control to be drawn in order to allow accessing any state the
17084               theme might require
17086             * ControlPaint methods for the theme now have a CP prefix to avoid
17087               name clashes with the Draw methods for controls
17089             * Every control now retrieves it's DefaultSize from the current
17090             theme
17092 2004-09-28 12:17  jackson
17094         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
17095           drawing
17097 2004-09-24 14:57  jackson
17099         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
17100           Gives us a nice little performance boost.
17102 2004-09-24 12:02  jackson
17104         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
17105           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
17106           Control and supporting classes. Initial checkin
17108 2004-09-23 13:08  jackson
17110         * Form.cs: Temp build fixage
17112 2004-09-23 01:39  ravindra
17114         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
17115           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
17116           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
17117           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
17118           EventHandlers needed by ListView Control.
17120 2004-09-22 14:12  pbartok
17122         * ScrollableControl.cs:
17123           - Implemented DockPadding property
17124           - Implemented AutoScroll property
17125           - Implemented AutoScrollMargin property
17126           - Implemented AutoScrollMinSize property
17127           - Implemented AutoScrollPosition property
17128           - Implemented DisplayRectangle property (still incomplete)
17129           - Implemented CreateParams property
17130           - Implemented HScroll property
17131           - Implemented VScroll property
17132           - Implemented OnVisibleChanged property
17134 2004-09-22 14:09  pbartok
17136         * Form.cs:
17137           - Added Form.ControllCollection class
17138           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
17139             RemoveOwnedForm (still incomplete, missing on-top and common
17140             minimize/maximize behaviour)
17141           - Added StartPosition property (still incomplete, does not use when
17142             creating the form)
17143           - Added ShowDialog() methods (still incomplete, missing forcing the
17144             dialog modal)
17146 2004-09-22 14:05  pbartok
17148         * Application.cs:
17149           - Added message loop for modal dialogs
17151 2004-09-22 14:02  pbartok
17153         * GroupBox.cs:
17154           - Fixed wrong types for events
17156 2004-09-22 14:00  pbartok
17158         * Shortcut.cs, FormWindowState.cs:
17159           - Fixed wrong values
17161 2004-09-22 12:01  jackson
17163         * Control.cs: Text is never null
17165 2004-09-20 22:14  pbartok
17167         * XplatUIWin32.cs:
17168           - Fixed accessibility level for Idle handler
17170 2004-09-20 18:54  jackson
17172         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
17173           XplatUIX11.cs: New message loop that uses poll so we don't get a
17174           busy loop
17176 2004-09-17 10:43  pbartok
17178         * ScrollBar.cs:
17179           - Fixed behaviour of arrow buttons. Now properly behaves like
17180             Buttons (and like Microsoft's scrollbar arrow buttons)
17182 2004-09-17 10:14  pbartok
17184         * ScrollBar.cs:
17185           - Added missing release of keyboard/mouse capture
17187 2004-09-17 06:18  jordi
17189         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
17190           Theme.cs: Very early menu support
17192 2004-09-16 17:45  pbartok
17194         * XplatUIWin32.cs:
17195           - Fixed sending a window to the front
17196           - Added overload for SetWindowPos to avoid casting
17198 2004-09-16 17:44  pbartok
17200         * Control.cs:
17201           - Added SendToBack and BringToFront methods
17203 2004-09-16 07:00  ravindra
17205         * Copyright: Added Novell URL.
17207 2004-09-16 07:00  ravindra
17209         * ToolBar.cs: Invalidate should be done before redrawing.
17211 2004-09-15 21:19  ravindra
17213         * ColumnHeaderStyle.cs: Enum for ListView Control.
17215 2004-09-15 21:18  ravindra
17217         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
17218           ListView Control.
17220 2004-09-13 18:26  jackson
17222         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
17223           properly
17225 2004-09-13 18:13  jackson
17227         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
17228           a second thread and post messages into the main threads message
17229           queue. This makes timing much more consistent. Both win2K and XP
17230           have a minimum timer value of 15 milliseconds, so we now do this
17231           too.
17233 2004-09-13 15:18  pbartok
17235         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
17236           XplatUIX11.cs:
17237           - Added Z-Ordering methods
17239 2004-09-13 10:56  pbartok
17241         * Form.cs:
17242           - Fixed #region names
17243           - Moved properties and methods into their proper #regions
17245 2004-09-13 10:51  pbartok
17247         * Form.cs:
17248           - Added Accept and CancelButton properties
17249           - Added ProcessDialogKey() method
17251 2004-09-13 08:18  pbartok
17253         * IWindowTarget.cs:
17254           - Initial check-in
17256 2004-09-10 21:50  pbartok
17258         * Control.cs:
17259           - Added DoDragDrop() [incomplete]
17260           - Properly implemented 'Visible' handling
17261           - Added SetVisibleCore()
17262           - Implemented FindChildAtPoint()
17263           - Implemented GetContainerControl()
17264           - Implemented Hide()
17266 2004-09-10 19:28  pbartok
17268         * Control.cs:
17269           - Moved methods into their appropriate #regions
17270           - Reordered methods within regions alphabetically
17272 2004-09-10 18:57  pbartok
17274         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
17275           - Added method to retrieve text from window
17277 2004-09-10 18:56  pbartok
17279         * Control.cs:
17280           - Moved some internal functions into the internal region
17281           - Implemented FontHeight
17282           - Implemented RenderRightToLeft
17283           - Implemented ResizeRedraw
17284           - Implemented ShowFocusCues
17285           - Implemented ShowKeyboardCues
17286           - Implemented FromChildHandle
17287           - Implemented FromHandle
17288           - Implemented IsMnemonic
17289           - Implemented ReflectMessage
17290           - All public and protected Static Methods are now complete
17292 2004-09-10 16:54  pbartok
17294         * Control.cs:
17295           - Implemented remaining missing public instance properties
17296           - Alphabetized some out of order properties
17298 2004-09-10 05:51  ravindra
17300         * PictureBox.cs: Added a check for null image.
17302 2004-09-10 00:59  jordi
17304         * GroupBox.cs: remove cvs tag
17306 2004-09-09 05:25  ravindra
17308         * ToolBar.cs: Make redraw accessible from ToolBarButton.
17310 2004-09-09 05:23  ravindra
17312         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
17313           parent redraw.
17315 2004-09-09 02:28  pbartok
17317         * ThemeWin32Classic.cs:
17318           - Improve disabled string look
17320 2004-09-09 01:15  jordi
17322         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
17323           args and handler
17325 2004-09-08 23:56  ravindra
17327         * ItemBoundsPortion.cs: It's enum, not a class!
17329 2004-09-08 23:47  ravindra
17331         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
17332           Enums for Form.
17334 2004-09-08 21:13  ravindra
17336         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
17337           ListView control.
17339 2004-09-08 21:03  ravindra
17341         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
17342           avoid crash.
17344 2004-09-08 21:01  ravindra
17346         * ScrollableControl.cs: Removed unreachable code.
17348 2004-09-08 06:45  jordi
17350         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
17352 2004-09-08 01:00  jackson
17354         * XplatUIX11.cs: Only run the timers when updating the message
17355           queue. This effectively gives X messages a higher priority then
17356           timer messages. Timers still need love though
17358 2004-09-07 14:01  jackson
17360         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
17361           this for us and the handle is no longer valid.
17363 2004-09-07 13:59  jackson
17365         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
17366           loop that manages to not crash. TODO: Add poll and cleanup timers
17368 2004-09-07 11:12  jordi
17370         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
17372 2004-09-07 03:40  jordi
17374         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
17375           fixes, methods, multiple links
17377 2004-09-06 06:55  jordi
17379         * Control.cs: Caches ClientRectangle rectangle value
17381 2004-09-05 02:03  jordi
17383         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
17384           certain situations
17386 2004-09-04 11:10  jordi
17388         * Label.cs: Refresh when font changed
17390 2004-09-02 16:24  pbartok
17392         * Control.cs:
17393           - Added sanity check to creation of double buffer bitmap
17395 2004-09-02 16:24  pbartok
17397         * ButtonBase.cs:
17398           - Fixed selection of text color
17399           - Fixed handling of resize event; now properly recreates double
17400             buffering bitmap
17401           - Added missing assignment of TextAlignment
17402           - Added proper default for TextAlignment
17404 2004-09-02 14:26  pbartok
17406         * RadioButton.cs:
17407           - Added missing RadioButton.RadioButtonAccessibleObject class
17409 2004-09-02 14:26  pbartok
17411         * Control.cs:
17412           - Added missing Control.ControlAccessibleObject class
17413           - Started to implement Select()ion mechanisms, still very incomplete
17415 2004-09-02 14:25  pbartok
17417         * AccessibleObject.cs:
17418           - Added missing methods
17420 2004-09-02 14:23  pbartok
17422         * AccessibleNavigation.cs, AccessibleSelection.cs:
17423           - Initial check-in
17425 2004-09-02 10:32  jordi
17427         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
17428           pool for pens, brushes, and hatchbruses
17430 2004-09-01 15:30  jackson
17432         * StatusBar.cs: Fix typo
17434 2004-09-01 14:44  pbartok
17436         * RadioButton.cs:
17437           - Fixed state
17439 2004-09-01 14:39  pbartok
17441         * Button.cs, RadioButton.cs:
17442           - Functional initial check-in
17444 2004-09-01 14:01  pbartok
17446         * CheckBox.cs:
17447           - Added missing default
17448           - Added missing region mark
17450 2004-09-01 09:10  jordi
17452         * Label.cs: fixes method signatures, new methods, events, fixes
17453           autosize
17455 2004-09-01 07:19  jordi
17457         * Control.cs: Init string variables with an empty object
17459 2004-09-01 04:20  jordi
17461         * Control.cs: fires OnFontChanged event
17463 2004-08-31 20:07  pbartok
17465         * ButtonBase.cs:
17466           - Enabled display of strings
17468 2004-08-31 20:05  pbartok
17470         * Form.cs:
17471           - Added (partial) implementation of DialogResult; rest needs to be
17472             implemented when the modal loop code is done
17474 2004-08-31 19:55  pbartok
17476         * CheckBox.cs:
17477           - Fixed to match the removal of the needs_redraw concept
17479 2004-08-31 19:55  pbartok
17481         * ButtonBase.cs:
17482           - Removed the rather odd split between 'needs redraw' and redrawing
17483           - Now handles the events that require regeneration (ambient
17484             properties and size)
17486 2004-08-31 19:41  pbartok
17488         * Control.cs:
17489           - Added firing of BackColorChanged event
17490           - Added TopLevelControl property
17491           - Fixed handling of WM_ERASEBKGRND message
17493 2004-08-31 12:49  pbartok
17495         * ButtonBase.cs:
17496           - Removed debug
17497           - Minor fixes
17499 2004-08-31 12:48  pbartok
17501         * CheckBox.cs:
17502           - Finished (famous last words)
17504 2004-08-31 04:35  jordi
17506         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
17507           scrolling bugs, adds new methods
17509 2004-08-30 14:42  pbartok
17511         * CheckBox.cs:
17512           - Implemented CheckBox drawing code
17514 2004-08-30 14:42  pbartok
17516         * ButtonBase.cs:
17517           - Made Redraw() and CheckRedraw() virtual
17518           - Improved mouse up/down/move logic to properly track buttons
17520 2004-08-30 09:44  pbartok
17522         * CheckBox.cs:
17523           - Updated to fix broken build. Not complete yet.
17525 2004-08-30 09:28  pbartok
17527         * CheckState.cs:
17528           - Initial checkin
17530 2004-08-30 09:17  pbartok
17532         * Appearance.cs:
17533           - Initial check-in
17535 2004-08-27 16:12  ravindra
17537         * ToolBarButton.cs: Added TypeConverter attribute.
17539 2004-08-27 16:07  ravindra
17541         * ImageIndexConverter.cs: Implemented.
17543 2004-08-27 14:17  pbartok
17545         * Control.cs:
17546           - Removed unneeded stack vars
17547           - First attempt to fix sizing issues when layout is suspended
17549 2004-08-25 15:35  jordi
17551         * ScrollBar.cs: more fixes to scrollbar
17553 2004-08-25 14:04  ravindra
17555         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
17556           Added the missing divider code and grip for ToolBar Control.
17558 2004-08-25 13:20  pbartok
17560         * Control.cs:
17561           - Control now properly passes the ambient background color to child
17562             controls
17564 2004-08-25 13:20  jordi
17566         * ScrollBar.cs: small bug fix regarding bar position
17568 2004-08-25 12:33  pbartok
17570         * Timer.cs:
17571           - Now only calls SetTimer or KillTimer if the enabled state has
17572           changed
17574 2004-08-25 12:33  pbartok
17576         * XplatUIWin32.cs:
17577           - Fixed timer handling, now seems to work
17578           - Improved error message for window creation
17580 2004-08-25 12:32  pbartok
17582         * Control.cs:
17583           - Fixed generation of MouseUp message
17585 2004-08-25 12:29  jordi
17587         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
17588           and fixes for progressbar
17590 2004-08-24 18:43  ravindra
17592         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
17593           in ToolBar control.
17595 2004-08-24 17:15  pbartok
17597         * Panel.cs:
17598           - Added #region
17599           - Added missing events
17600           - Alphabetized
17602 2004-08-24 17:14  pbartok
17604         * StatusBar.cs, PictureBox.cs:
17605           - Now uses Control's CreateParams
17607 2004-08-24 16:36  pbartok
17609         * XplatUIX11.cs:
17610           - Fixed background color handling
17611           - Fixed sending of enter/leave events on a grab
17613 2004-08-24 16:35  pbartok
17615         * X11Structs.cs:
17616           - Refined definitions for CrossingEvent
17618 2004-08-24 12:37  jordi
17620         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
17621           formmating, methods signature, and adds missing events
17623 2004-08-24 12:24  jordi
17625         * Control.cs: fire OnEnabledChanged event
17627 2004-08-24 11:17  pbartok
17629         * XplatUIWin32.cs:
17630           - Implemented SetTimer() and KillTimer()
17632 2004-08-24 11:16  pbartok
17634         * XplatUIX11.cs:
17635           - Now uses Remove instead of Add to kill the timer
17637 2004-08-24 10:16  jackson
17639         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
17640           picture boxes in the theme now. Draw picture box borders and obey
17641           sizing modes
17643 2004-08-24 05:49  jackson
17645         * Timer.cs: Remove top secret debugging code
17647 2004-08-24 05:34  jackson
17649         * PictureBox.cs: Temp hack to make picture boxes draw their full
17650           image
17652 2004-08-24 05:29  jackson
17654         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
17655           XplatUIX11.cs: Move timers to the driver level. On X they are
17656           queued by the driver and checked on idle.
17658 2004-08-24 01:07  jackson
17660         * XplatUIX11.cs: Use a queue for async messages instead of passing
17661           them as ClientMessages since that was totally broken. Also simply
17662           check for events and return an idle message if none are found. This
17663           gives us an idle handler, and prevents deadlocking when no messages
17664           are in the queue.
17666 2004-08-23 18:19  ravindra
17668         * XplatUIWin32.cs: Removed the unwanted destructor.
17670 2004-08-23 17:27  pbartok
17672         * ButtonBase.cs:
17673           - Finishing touches. Works now, just needs some optimizations.
17675 2004-08-23 16:53  jordi
17677         * ScrollBar.cs: small fix
17679 2004-08-23 16:45  pbartok
17681         * Application.cs:
17682           - Removed debug output
17683           - Simplifications
17685 2004-08-23 16:43  jordi
17687         * ScrollBar.cs: [no log message]
17689 2004-08-23 16:10  pbartok
17691         * Form.cs:
17692           - Fixed handling of WM_CLOSE message
17693           - Removed debug output
17695 2004-08-23 16:09  pbartok
17697         * Application.cs:
17698           - Added handling of Idle event
17699           - Added handling of form closing
17700           - Fixed reporting of MessageLoop property
17701           - Removed some unneeded code, should provide a bit of a speedup
17703 2004-08-23 15:22  pbartok
17705         * Control.cs:
17706           - Added InitLayout() method
17707           - Added code to properly perform layout when Anchor or Dock property
17708             is changed
17709           - Changed 'interpretation' of ResumeLayout. MS seems to have a
17710             LAMESPEC, tried to do it in a way that makes sense
17712 2004-08-23 14:10  jordi
17714         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
17715           properties and methods
17717 2004-08-23 13:55  pbartok
17719         * Control.cs:
17720           - Properly fixed Jordi's last fix
17721           - Now uses Cursor's Position property instead of calling XplatUI
17722           directly
17724 2004-08-23 13:44  jordi
17726         * PaintEventHandler.cs: Adding missing attribute
17728 2004-08-23 13:39  pbartok
17730         * Cursor.cs:
17731           - Implemented Position property
17733 2004-08-23 13:39  pbartok
17735         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
17736           - Added method to move mouse cursor
17738 2004-08-23 13:39  pbartok
17740         * XplatUIX11.cs:
17741           - Fixed setting of background color
17742           - Added method to move mouse cursor
17744 2004-08-23 13:16  jordi
17746         * Control.cs: avoids null exception
17748 2004-08-22 17:46  jackson
17750         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
17751           PictureBox
17753 2004-08-22 17:40  jackson
17755         * XplatUIX11.cs: Add some missing locks
17757 2004-08-22 15:10  pbartok
17759         * Control.cs, Form.cs:
17760           - Removed OverlappedWindow style from Control, instead it's default
17761             now is child
17762           - Made form windows OverlappedWindow by default
17764 2004-08-22 13:34  jackson
17766         * ScrollBar.cs: Update the position through the Value property so
17767           the OnValueChanged event is raised.
17769 2004-08-22 12:04  pbartok
17771         * SWF.csproj:
17772           - Added Cursor.cs and UserControl.cs
17774 2004-08-22 12:03  pbartok
17776         * Cursor.cs:
17777           - Started implementation, not usable yet
17779 2004-08-22 12:00  pbartok
17781         * UserControl.cs:
17782           - Implemented UserControl (complete)
17784 2004-08-21 19:20  ravindra
17786         * ToolBar.cs: Correcting the formatting mess of VS.NET.
17788 2004-08-21 18:49  ravindra
17790         * ToolBar.cs: Probably this completes the missing attributes in
17791           toolbar control.
17793 2004-08-21 18:03  ravindra
17795         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
17796           Fixed toolbar control signatures.
17798 2004-08-21 16:32  pbartok
17800         * LinkLabel.cs:
17801           - Signature Fixes
17803 2004-08-21 16:30  pbartok
17805         * Label.cs:
17806           - Signature fixes
17808 2004-08-21 16:19  pbartok
17810         * Control.cs, Label.cs:
17811           - Signature fixes
17813 2004-08-21 15:57  pbartok
17815         * ButtonBase.cs:
17816           - Added loads of debug output for development
17817           - Fixed typo in method name
17819 2004-08-21 15:52  pbartok
17821         * ToolBarButtonClickEventArgs.cs:
17822           - Added missing base class
17824 2004-08-21 14:53  pbartok
17826         * Control.cs:
17827           - Updated to match new GrabWindow signature
17829 2004-08-21 14:51  pbartok
17831         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
17832           - Added method to get default display size
17834 2004-08-21 14:23  pbartok
17836         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
17837           - Added method to query current grab state
17838           - Added argument to allow confining a grab to a window
17840 2004-08-21 14:22  pbartok
17842         * Keys.cs:
17843           - Added [Flags] attribute so that modifiers can be used in bitwise
17844           ops
17846 2004-08-21 14:21  pbartok
17848         * TrackBar.cs, ScrollBar.cs:
17849           - Replaced direct XplatUI calls with their Control counterpart
17851 2004-08-21 13:32  pbartok
17853         * Control.cs:
17854           - Implemented Created property
17856 2004-08-21 13:28  pbartok
17858         * Control.cs:
17859           - Implemented ContainsFocus
17861 2004-08-21 13:26  pbartok
17863         * Control.cs:
17864           - Implemented CausesValidation
17866 2004-08-21 13:21  pbartok
17868         * Control.cs:
17869           - Implemented CanFocus
17870           - Implemented CanSelect
17871           - Implemented Capture
17873 2004-08-21 12:35  pbartok
17875         * XplatUIWin32.cs:
17876           - Fixed bug with Async message handling
17877           - Implemented getting the ModifierKeys
17879 2004-08-21 12:32  jackson
17881         * AsyncMethodResult.cs: Make sure we have the mutex before we
17882           release it. Fixes BeginInvoke on windows
17884 2004-08-21 11:31  pbartok
17886         * XplatUIWin32.cs, XplatUIX11.cs:
17887           - Drivers now return proper mouse state
17889 2004-08-21 10:54  jackson
17891         * Control.cs: Implement EndInvoke
17893 2004-08-21 10:48  jackson
17895         * Timer.cs: Remove unneeded finalizer
17897 2004-08-20 19:52  ravindra
17899         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
17900           in mouse event handling in the ToolBar control.
17902 2004-08-20 19:50  ravindra
17904         * ImageList.cs: Changed draw method to use the arguments passed in
17905           to draw the image.
17907 2004-08-20 18:58  pbartok
17909         * XplatUIStructs.cs:
17910           - Added private message for async communication
17912 2004-08-20 17:38  ravindra
17914         * Control.cs: Made RightToLeft property virtual and removed a
17915           Console.WriteLine.
17917 2004-08-20 14:39  jordi
17919         * ThemeGtk.cs: use style_attach
17921 2004-08-20 14:39  pbartok
17923         * XplatUIWin32.cs:
17924           - Added jackson's Async code from X11 to Win32
17926 2004-08-20 14:09  pbartok
17928         * SWF.csproj:
17929           - Added all new files
17931 2004-08-20 14:09  pbartok
17933         * Control.cs:
17934           - Added call to set window background color
17936 2004-08-20 14:03  pbartok
17938         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
17939           - Added method for setting the window background
17941 2004-08-20 14:02  pbartok
17943         * XplatUIWin32.cs:
17944           - Added method for setting the background color
17945           - Added handling for erasing the window background
17947 2004-08-20 13:45  jordi
17949         * TrackBar.cs: fixes timer, new properties and methods
17951 2004-08-20 13:34  jackson
17953         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
17954           correct thread
17956 2004-08-20 13:22  jackson
17958         * Timer.cs: Timer Tick events are now handed through Controls Async
17959           mechanism so the callbacks are executed in the same thread as X
17961 2004-08-20 13:19  jackson
17963         * XplatUIDriver.cs: Expose functionality to send async messages
17964           through the driver
17966 2004-08-20 13:18  jackson
17968         * Control.cs: Implement Begininvoke
17970 2004-08-20 13:14  jackson
17972         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
17973           messages through the driver
17975 2004-08-20 13:12  jackson
17977         * XplatUIX11.cs: Lock before all X operations. Also added Async
17978           method functionality through XSendEvent
17980 2004-08-20 13:11  jackson
17982         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
17983           This will screw up on 64 bit systems)
17985 2004-08-20 13:10  jackson
17987         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
17988           Async messages through X/Win32
17990 2004-08-19 19:39  pbartok
17992         * XplatUIX11.cs:
17993           - Updated code to match new HandleData.DeviceContext type
17995 2004-08-19 19:38  pbartok
17997         * HandleData.cs:
17998           - Made DeviceContext a generic object to allow usage from various
17999           drivers
18000           - Added support for queueing Windows messages
18002 2004-08-19 19:37  pbartok
18004         * XplatUIWin32.cs:
18005           - Added generation of MouseEnter, MouseLeave and MouseHover events
18006           - Added cleanup on EndPaint
18008 2004-08-19 19:17  pbartok
18010         * Control.cs:
18011           - Added handling of WM_MOUSEHOVER
18012           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
18013           code
18015 2004-08-19 18:55  jordi
18017         * ThemeGtk.cs: fixes button order
18019 2004-08-19 18:12  jordi
18021         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
18023 2004-08-19 17:09  pbartok
18025         * Control.cs:
18026           - Added Right property
18027           - Added RightToLeft property
18029 2004-08-19 16:27  jordi
18031         * ThemeGtk.cs: experimental GTK theme support
18033 2004-08-19 16:26  jordi
18035         * ITheme.cs, Theme.cs: move themes from an interface to a class
18037 2004-08-19 16:25  jordi
18039         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
18040           theme enhancaments
18042 2004-08-19 16:04  pbartok
18044         * XplatUIX11.cs:
18045           - Added colormap basics
18046           - Added a way to re-initialize with a different display handle
18047           - Fixed setting of the window background color
18048           - Added various X11 imports related to colors and colormaps
18050 2004-08-19 15:51  pbartok
18052         * X11Structs.cs:
18053           - Removed packing hints (Paolo suggested this a while back)
18054           - fixed colormap type
18055           - Added default Atom types
18056           - Added Screen and color structs and enums
18058 2004-08-19 15:39  pbartok
18060         * ImageList.cs:
18061           - Added missing Draw() method
18062           - Added missing RecreateHandle event
18064 2004-08-19 15:30  pbartok
18066         * Form.cs:
18067           - Added handling of WM_CLOSE
18069 2004-08-18 13:16  jordi
18071         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
18072           a table
18074 2004-08-18 09:56  jordi
18076         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
18078 2004-08-17 15:31  ravindra
18080         * SWF.csproj: Updated project.
18082 2004-08-17 15:25  pbartok
18084         * Control.cs:
18085           - Drawing improvement; don't call UpdateBounds if we are not visible
18086             (or have been minimized)
18088 2004-08-17 15:24  pbartok
18090         * XplatUIWin32.cs:
18091           - Finished IsVisible
18092           - Added Win32GetWindowPlacement
18094 2004-08-17 15:08  jackson
18096         * Panel.cs: Initial checkin of the Panel
18098 2004-08-17 14:25  pbartok
18100         * Control.cs:
18101           - Fixed broken handling of default window sizes
18103 2004-08-17 13:29  jackson
18105         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
18106           has a large startup time.
18108 2004-08-17 10:25  jackson
18110         * HandleData.cs: union areas properly
18112 2004-08-17 10:12  jackson
18114         * HandleData.cs: union areas properly
18116 2004-08-16 20:00  ravindra
18118         * ToolBar.cs, ToolBarButton.cs: Added attributes.
18120 2004-08-16 18:48  ravindra
18122         * ToolBar.cs: Added attributes.
18124 2004-08-16 17:17  ravindra
18126         * SWF.csproj: Updated project.
18128 2004-08-16 17:16  jackson
18130         * XplatUIX11.cs: Check for more expose events before sending a
18131           WM_PAINT so they can all be grouped together. This makes dragging a
18132           window across another window redraw in a sane way.
18134 2004-08-16 15:47  pbartok
18136         * Control.cs:
18137           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
18138             support OnMouseEnter/Leave()
18139           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
18140             exposure handling
18142 2004-08-16 15:46  pbartok
18144         * XplatUIStructs.cs, XplatUIX11.cs:
18145           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
18146           OnMouseEnter/Leave()
18148 2004-08-16 15:34  jackson
18150         * XplatUIX11.cs: Group multiple expose events in HandleData, make
18151           sure messages get the message field set to WM_NULL if they are not
18152           handled.
18154 2004-08-16 15:24  jackson
18156         * HandleData.cs: HandleData is used for storing message information
18157           for window handles
18159 2004-08-15 17:23  ravindra
18161         * ColorDepth.cs: Added attribute.
18163 2004-08-15 17:23  ravindra
18165         * SWF.csproj: Updated project for ToolBar Control.
18167 2004-08-15 17:20  ravindra
18169         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
18170           control and also dos2unix format.
18172 2004-08-15 17:13  ravindra
18174         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
18175           ToolBarButtonClickEventArgs.cs,
18176           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
18177           ToolBarTextAlign.cs: First Implementation of ToolBar control.
18179 2004-08-15 15:31  pbartok
18181         * ButtonBase.cs:
18182           - First (mostly) working version
18184 2004-08-13 16:15  pbartok
18186         * Control.cs:
18187           - Fixed Anchor default
18189 2004-08-13 15:43  pbartok
18191         * Control.cs:
18192           - Changed GetCursorPos signature
18194 2004-08-13 15:42  pbartok
18196         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
18197           - Changed signature for GetCursorPos
18199 2004-08-13 15:25  pbartok
18201         * XplatUIX11.cs:
18202           - Cleanup
18203           - Fixed resizing/exposure handling
18205 2004-08-13 15:22  jordi
18207         * ThemeWin32Classic.cs: removes redundant code and fixes issues
18208           with tickposition
18210 2004-08-13 14:55  jordi
18212         * TrackBar.cs: change from wndproc to events
18214 2004-08-13 13:00  jordi
18216         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18217           XplatUIX11.cs: implements PointToClient (ScreenToClient)
18219 2004-08-13 12:53  pbartok
18221         * XplatUIWin32.cs:
18222           - Changed GetWindowPos to also provide client area size
18223           - Fixed broken prototypes for several win32 functions
18225 2004-08-13 12:53  pbartok
18227         * XplatUI.cs, XplatUIDriver.cs:
18228           - Changed GetWindowPos to also provide client area size
18230 2004-08-13 12:52  pbartok
18232         * XplatUIX11.cs:
18233           - Added generation of WM_POSCHANGED
18234           - Changed GetWindowPos to also provide client area size
18236 2004-08-13 12:52  pbartok
18238         * Control.cs:
18239           - Added Dispose() and destructor
18240           - Fixed resizing and bounds calculation
18241           - Fixed Layout
18242           - Added memory savings for invisible windows
18244 2004-08-13 12:46  jordi
18246         * TrackBar.cs: adds timer and grap window
18248 2004-08-13 10:25  jackson
18250         * Timer.cs: SWF Timer
18252 2004-08-12 16:59  pbartok
18254         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18255           - Implemented method to get current mouse position
18257 2004-08-12 14:29  jordi
18259         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
18260           enhancement, fix mouse problems, highli thumb, etc
18262 2004-08-12 13:31  pbartok
18264         * Control.cs:
18265           - Fixed Anchoring bugs
18267 2004-08-12 13:01  jackson
18269         * StatusBar.cs: Don't forget things
18271 2004-08-12 12:54  jackson
18273         * ThemeWin32Classic.cs: Handle owner draw status bars
18275 2004-08-12 12:54  jackson
18277         * StatusBar.cs: Implement missing properties, events, and methods.
18278           Handle mouse clicking
18280 2004-08-12 10:19  jackson
18282         * StatusBarPanelClickEventArgs.cs,
18283           StatusBarPanelClickEventHandler.cs: Classes for handling status
18284           bar panel click events
18286 2004-08-12 10:10  jackson
18288         * Control.cs: Add missing properties
18290 2004-08-12 09:46  pbartok
18292         * BindingsManagerBase.cs:
18293           - Name changed to BindingManagerBase.cs
18295 2004-08-12 09:25  jordi
18297         * ScrollableControl.cs: calls ctrlbase instead of exeception
18299 2004-08-11 16:28  pbartok
18301         * InputLanguageChangingEventArgs.cs:
18302           - Never check in before compiling. Fixes the last check-in
18304 2004-08-11 16:26  pbartok
18306         * InputLanguageChangingEventArgs.cs:
18307           - More signature fixes
18309 2004-08-11 16:20  pbartok
18311         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
18312           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
18313           ImageListStreamer.cs, InputLanguage.cs,
18314           InputLanguageChangedEventArgs.cs,
18315           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
18316           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
18317           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
18318           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18319           - Signature fixes
18321 2004-08-11 16:16  pbartok
18323         * Application.cs:
18324           - Fixed Signature
18325           - Added .Net 1.1 method
18327 2004-08-11 15:25  pbartok
18329         * SWF.csproj:
18330           - Fixed BindingManagerBase.cs filename
18332 2004-08-11 15:22  pbartok
18334         * BindingManagerBase.cs:
18335           - Was checked in with wrong filename
18337 2004-08-11 14:50  pbartok
18339         * SWF.csproj:
18340           - Updated
18342 2004-08-11 13:41  jordi
18344         * XplatUIWin32.cs: Fixes ClientRect
18346 2004-08-11 13:19  pbartok
18348         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18349           XplatUIX11.cs:
18350           - We had SetWindowPos and MoveWindow to set window positions and
18351             size, removed MoveWindow. We have GetWindowPos, so it made sense to
18352             keep SetWindowPos as matching counterpart
18353           - Added some X11 sanity checking
18355 2004-08-11 12:59  pbartok
18357         * Control.cs:
18358           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
18359             (It seems that SetBounds is just a front for SetBoundsCore and
18360              SetBoundsCore updates the underlying window system and
18361              UpdateBounds is responsible for updating the variables associated
18362              with the Control and sending the events)
18363           - Major cleanup of Size handling; we now have two sizes, client_size
18364             and bounds. Bounds defines the window with decorations, client_size
18365             without them.
18367 2004-08-11 12:55  pbartok
18369         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18370           - Added method to calculate difference between decorated window and
18371             raw client area
18373 2004-08-11 12:54  pbartok
18375         * Label.cs:
18376           - Forcing redraw on resize
18378 2004-08-11 11:43  pbartok
18380         * ImageList.cs:
18381           - Removed disposing of the actual images when the list is disposed
18383 2004-08-11 09:13  pbartok
18385         * Control.cs:
18386           - Now properly reparents windows
18388 2004-08-11 08:37  pbartok
18390         * Control.cs:
18391           - Duh!
18393 2004-08-11 07:47  pbartok
18395         * Control.cs:
18396           - Rewrote the collection stuff. Might not be as fast now, not
18397             keeping the number of children around and accessible directly, but
18398             it's more straightforward
18400 2004-08-11 07:44  pbartok
18402         * AccessibleObject.cs:
18403           - Fixed to match ControlCollection rewrite
18405 2004-08-11 07:43  pbartok
18407         * ImageList.cs:
18408           - Added missing creation of the collection list
18410 2004-08-10 20:08  jackson
18412         * StatusBar.cs: Get the paint message from WndProc
18414 2004-08-10 19:31  jackson
18416         * ThemeWin32Classic.cs: Create Brushes as little as possible
18418 2004-08-10 19:20  jackson
18420         * UICues.cs: Add Flags attribute
18422 2004-08-10 19:19  jackson
18424         * StatusBarPanel.cs: Signature cleanup
18426 2004-08-10 19:10  jackson
18428         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
18429           Initial implementation of status bar item drawing
18431 2004-08-10 17:27  jordi
18433         * TrackBar.cs: add missing methods, properties, and restructure to
18434           hide extra ones
18436 2004-08-10 16:24  jackson
18438         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
18439           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
18440           attribute
18442 2004-08-10 13:21  jordi
18444         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
18445           enhancements and standarize on win colors defaults
18447 2004-08-10 12:52  jackson
18449         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
18450           ThemeWin32Classic.cs: Implement DrawItem functionality
18452 2004-08-10 12:47  jordi
18454         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
18456 2004-08-10 12:32  jordi
18458         * Control.cs: throw ontextchange event
18460 2004-08-10 11:43  pbartok
18462         * Control.cs:
18463           - Added more to the still unfinished Dock/Anchor layout code
18465 2004-08-10 11:39  pbartok
18467         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
18468           - Added GetWindowPos method
18470 2004-08-10 11:36  pbartok
18472         * XplatUIWin32.cs:
18473           - Implemented several methods
18475 2004-08-10 09:47  jackson
18477         * TrackBar.cs: Allow control to handle buffering
18479 2004-08-10 09:41  jackson
18481         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
18483 2004-08-10 09:24  jackson
18485         * Label.cs, LinkLabel.cs: Let Control handle buffering.
18487 2004-08-10 09:09  jackson
18489         * StatusBar.cs: Let Control handle all the buffering.
18491 2004-08-10 09:08  jackson
18493         * Control.cs: Control will now handle the buffering code, so each
18494           control does not have to implement this.
18496 2004-08-10 08:34  jackson
18498         * XplatUIDriver.cs: Use default colors from the theme
18500 2004-08-09 17:12  pbartok
18502         * ImageList.cs:
18503           - Fixed several bugs Ravindra pointed out
18505 2004-08-09 16:11  pbartok
18507         * Control.cs:
18508           - Added incomplete dock layout code
18509           - Added support for mouse wheel
18511 2004-08-09 16:09  pbartok
18513         * XplatUIX11.cs:
18514           - Added handling for middle and right mousebutton
18515           - Added handling for mouse wheel
18516           - Added handling for key state and mouse state and position
18517           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
18518           messages
18520 2004-08-09 15:40  jackson
18522         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
18523           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
18524           checkin
18526 2004-08-09 15:37  jackson
18528         * StatusBar.cs: Initial implementation of StatusBar
18530 2004-08-09 15:36  jackson
18532         * ITheme.cs: Add support for drawing status bar and getting status
18533           bar item sizes
18535 2004-08-09 15:35  pbartok
18537         * MouseButtons.cs:
18538           - Fixed values
18540 2004-08-09 15:34  jackson
18542         * ThemeWin32Classic.cs: Add support for drawing status bar and get
18543           status bar item sizes
18545 2004-08-09 15:21  jackson
18547         * ThemeWin32Classic.cs: Use known colors for default control
18548           colours
18550 2004-08-09 15:12  jackson
18552         * ThemeWin32Classic.cs: Make the default font static, it is static
18553           in control so this doesn't change functionality and creating fonts
18554           is sloooooow.
18556 2004-08-09 14:56  pbartok
18558         * X11Structs.cs:
18559           - Added GrabMode enum
18561 2004-08-09 14:55  pbartok
18563         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18564           - Removed Run method, was only required for initial development
18566 2004-08-09 14:51  pbartok
18568         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18569           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
18570           capture
18572 2004-08-09 13:48  pbartok
18574         * XplatUIX11.cs:
18575           - Fixed default sizing for child windows
18577 2004-08-09 12:56  pbartok
18579         * XplatUIX11.cs:
18580           - Added generation of WM_DESTROY message
18581           - Added handling of window manager induced shutdown
18583 2004-08-09 11:31  jackson
18585         * ThemeWin32Classic.cs: New names for control properties
18587 2004-08-09 11:25  jackson
18589         * Control.cs: Use new color names
18591 2004-08-09 11:02  jackson
18593         * XplatUI.cs: Get default window properties from the theme
18595 2004-08-09 11:01  jackson
18597         * ITheme.cs: The theme engine now controls default window
18598           properties
18600 2004-08-09 11:00  jackson
18602         * ThemeWin32Classic.cs: Add default window color properties
18604 2004-08-09 10:17  jackson
18606         * ThemeWin32Classic.cs: Use correct default back color
18608 2004-08-09 10:05  jackson
18610         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
18611           the theme now.
18613 2004-08-09 09:56  jackson
18615         * XplatUI.cs: Remove defaults, these are handled by the theme now.
18617 2004-08-09 09:54  jackson
18619         * Control.cs: Get default properties from the theme.
18621 2004-08-09 09:53  jackson
18623         * ITheme.cs: Themes now handle default control properties
18625 2004-08-09 09:53  jackson
18627         * ThemeWin32Classic.cs: Themes now handle default control
18628           properties so coloring will be consistent
18630 2004-08-08 16:54  jordi
18632         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
18634 2004-08-08 15:08  jordi
18636         * XplatUIX11.cs: fixes keyboard crash
18638 2004-08-08 13:47  jordi
18640         * Label.cs: add cvs header info
18642 2004-08-08 12:09  jackson
18644         * ThemeWin32Classic.cs: Add pen_buttonface
18646 2004-08-08 11:52  jordi
18648         * Label.cs, LinkLabel.cs: [no log message]
18650 2004-08-08 11:34  jordi
18652         * ThemeWin32Classic.cs: Use Windows Standard Colours
18654 2004-08-07 17:32  jordi
18656         * TrackBar.cs: throw exceptions of invalid enums values
18658 2004-08-07 17:31  jordi
18660         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
18661           draw method name
18663 2004-08-07 16:56  jackson
18665         * HorizontalAlignment.cs: Initial checkin
18667 2004-08-07 13:16  jordi
18669         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
18670           methods
18672 2004-08-07 13:05  jordi
18674         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
18675           GetSysColor defines
18677 2004-08-06 18:01  pbartok
18679         * ThemeWin32Classic.cs:
18680           - Fixed some rounding issues with float/int
18682 2004-08-06 18:00  jackson
18684         * DockStyle.cs, AnchorStyles.cs:
18686                   Add flags and serializable attributes.
18688 2004-08-06 17:46  pbartok
18690         * XplatUIX11.cs:
18691           - Implemented GetParent
18693 2004-08-06 17:18  pbartok
18695         * TrackBar.cs:
18696           - Fixed some rounding issues with float/int
18698 2004-08-06 17:17  pbartok
18700         * X11Structs.cs, XplatUIX11.cs:
18701           - Fixed Refresh and Invalidate
18703 2004-08-06 15:30  pbartok
18705         * Control.cs, X11Structs.cs, XplatUIX11.cs:
18706           - Fixed recursive loop when resizing
18707           - Improved/fixed redrawing on expose messages
18709 2004-08-06 09:53  jordi
18711         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
18712           keyboard navigation
18714 2004-08-06 08:02  pbartok
18716         * X11Structs.cs, XplatUIX11.cs:
18717           - Fixed reparenting
18718           - Fixed window border creation
18720 2004-08-05 15:38  pbartok
18722         * XplatUIX11.cs:
18723           - Attempted fix for reparenting problems
18725 2004-08-04 15:14  pbartok
18727         * Control.cs:
18728           - Fixed Invalidation bug (calculated wrong client area)
18729           - Added ClientSize setter
18731 2004-08-04 15:13  pbartok
18733         * Form.cs:
18734           - Added AutoScale properties
18736 2004-08-04 15:13  pbartok
18738         * SWF.csproj:
18739           - Added latest files
18741 2004-08-04 14:11  pbartok
18743         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18744           XplatUIX11.cs:
18745           - Added Invalidate handling
18747 2004-08-03 17:09  jordi
18749         * XplatUIDriver.cs: fixes spelling mistake
18751 2004-07-27 09:53  jordi
18753         * TrackBar.cs: fixes trackbar events, def classname, methods
18754           signature
18756 2004-07-27 09:29  jordi
18758         * ScrollBar.cs: fixes scrollbar events
18760 2004-07-27 04:38  jordi
18762         * Control.cs: changes to be able to run winforms samples
18764 2004-07-26 11:42  jordi
18766         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
18767           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
18769 2004-07-26 05:41  jordi
18771         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
18772           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
18773           implementation
18775 2004-07-22 09:22  jordi
18777         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
18778           check link overlapping, implement events, and fixes
18780 2004-07-21 10:28  jordi
18782         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
18784 2004-07-21 10:19  jordi
18786         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
18787           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
18788           LinkLabelLinkClickedEventArgs.cs,
18789           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
18790           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
18791           implementation
18793 2004-07-19 13:09  jordi
18795         * Control.cs, Label.cs: label control re-written: added missing
18796           functionlity, events, and properties
18798 2004-07-19 10:49  jordi
18800         * Control.cs: fixes SetBounds logic
18802 2004-07-19 01:29  jordi
18804         * Control.cs: Call RefreshWindow only if the window has created
18806 2004-07-15 14:05  pbartok
18808         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
18809           - Implemented ImageList and ImageList.ImageCollection classes
18810           - Added ColorDepth enumeration
18811           - Updated SWF VS.Net project
18813 2004-07-15 11:06  jordi
18815         * XplatUIStructs.cs: added MsgButons enum
18817 2004-07-15 11:03  jordi
18819         * Control.cs: added basic mouse handeling events
18821 2004-07-15 03:38  jordi
18823         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
18824           Vertical TrackBar control implementation
18826 2004-07-13 09:33  jordi
18828         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
18830 2004-07-13 09:31  jordi
18832         * Control.cs, Form.cs: commit: new properties and fixes form size
18833           problems
18835 2004-07-09 14:13  miguel
18837         * ProgressBar.cs: Spelling
18839 2004-07-09 11:25  pbartok
18841         * ProgressBar.cs:
18842           - Removed usage of Rectangle for drawing. Miguel pointed out it's
18843           faster
18845 2004-07-09 11:17  miguel
18847         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
18849                 * ProgressBar.cs: Fixed spelling for `block'
18851                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
18852                 style guidelines.
18854                 Avoid using the += on rect.X, that exposed a bug in the compiler.
18856 2004-07-08 23:21  pbartok
18858         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
18859           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
18860           BaseCollection.cs, Binding.cs, BindingContext.cs,
18861           BindingMemberInfo.cs, BindingsCollection.cs,
18862           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
18863           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
18864           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
18865           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
18866           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
18867           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
18868           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
18869           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
18870           FrameStyle.cs, GiveFeedbackEventArgs.cs,
18871           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
18872           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
18873           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
18874           InputLanguageChangedEventArgs.cs,
18875           InputLanguageChangedEventHandler.cs,
18876           InputLanguageChangingEventArgs.cs,
18877           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
18878           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
18879           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
18880           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
18881           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
18882           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
18883           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
18884           QueryAccessibilityHelpEventArgs.cs,
18885           QueryAccessibilityHelpEventHandler.cs,
18886           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
18887           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
18888           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
18889           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
18890           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
18891           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
18892           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
18893           XplatUIX11.cs, lang.cs:
18894           - Initial check-in