* TextBoxBase.cs: There is no need to expand selection on
[mono-project.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
blob49c19ed2db371ef35fce6dee6e80f0cda8539dd3
1 2006-11-10  Jackson Harper  <jackson@ximian.com>
3         * TreeView.cs: Use the currently highlighted node for the
4         BeforeSelect event.
5         * TextBoxBase.cs: There is no need to expand selection on
6         MouseMove.
8 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
10         * Button.cs: only perform click when button is Selectable (so as 
11         not to activate default buttons when they're disabled)
12         
13         * Control.cs: Rewrite of the SelectNextControl and related 
14         methods. HandleClick now selects next control if the current one
15         is being disabled.
16         
17         * Form.cs: OnActivated selects next active control only if Load 
18         has already occurred. If Load hasn't run, there's no point in 
19         selecting here, Load might change the state of controls.
20         
21         * FocusTest.cs: Tests marked as working again for these fixes
23 2006-11-10  Chris Toshok  <toshok@ximian.com>
25         * XplatUIX11.cs: a couple of fixes.
27         - use XInternAtoms with almost all the atoms we need to register,
28         instead of many, many calls to XInternAtom.  should help a bit on
29         startup time, at the expense of making the code look a little
30         worse.
32         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
33         isn't reparented (which seems to be a clue that we're running fon
34         compiz) and they have an Owner form.  This fixes the tool windows
35         in paint.net when running under compiz.
37         - when setting the opacity of a window, support both the case
38         where the window has been reparented and also when it hasn't been.
39         Since compiz/beryl doesn't seem to reparent windows, and these are
40         the only window managers which support translucency, I'm not sure
41         why we need the hwnd.reparented case at all.. but leave it in.
42         now we get translucent windows in paint.net under compiz/beryl.
44 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
46         * FileDialog.cs: Always return the value for FilterIndex that
47           was set. Internally convert it to values that make sense.
49 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
50         
51         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
53 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
55         * Toolbar.cs: Change default value of DropDownArrows to true, the 
56         signature still using false to make it compatible with MS but the 
57         initial value is true. Fixes #79855.
59 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
61         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
62           only available on Linux.
64 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
66         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
67         reduce number of calls to redraw method during toolbar creation.
69 2006-11-09  Mike Kestner  <mkestner@novell.com>
71         * ListView.cs : raise SelectedIndexChanged when an item is selected
72         programmatically via the Item.Selected property.  Gert's nice 
73         ListViewSelectedIndexChanged test fixture now runs clean.
75 2006-11-09  Mike Kestner  <mkestner@novell.com>
77         * ListView.cs : raise SelectedIndexChanged when a selected item is
78         removed from the item collection using Remove or RemoveAt.
80 2006-11-09  Mike Kestner  <mkestner@novell.com>
82         * ListView.cs : raise SelectedIndexChanged once per selected item
83         for compat with MS.  Fixes #79849+.
85 2006-11-09  Chris Toshok  <toshok@ximian.com>
87         * TabControl.cs: initialize row_count to 0, and set it to 1 when
88         we need to (if we have any tab pages).  Fixes unit test.
90 2006-11-09  Chris Toshok  <toshok@ximian.com>
92         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
93         width is 0, not 3.  Fixes a unit test.
95 2006-11-09  Mike Kestner  <mkestner@novell.com>
97         * ListView.cs : use Implicit scrollbars so that focus isn't 
98         stolen from the listview when they are clicked. Fixes #79850.
100 2006-11-09  Chris Toshok  <toshok@ximian.com>
102         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
103         have a root item.  Fixes #79879.
105 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
107         * FileDialog.cs:
108           - Fix ToString ()
109           - An ArgumentException is now thrown if a wrong filter
110             is applied (matches ms). The previous filter doesn't change
111             anymore if an exception is thrown.
112           - Changing the FileName property also affects FileNames
113         * ColorDialog.cs: The length of the CustomColors array is always
114           16. It doesn't matter if we use a smaller array or null to update
115           or change the custom colors property.
116         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
117           for RootFolder if we get a undefined value.
119 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
121         * StatusBarPanel.cs: 
122         - Width is set to MinWidth if Width is smaller than
123         MinWidth. Fixes #79842.
124         - MinWidth now always overrides Width (MSDN says MinWidth
125         is set to Width when AutoSize = None, but they do not 
126         behave like that).
127         - Style has now the the correct default value.
128         
129 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
131         * TrackBar.cs: 
132         - The control is completely invalidated on 
133         Got/LostFocus to draw the focus rectangle correctly.
134         - When AutoSize then height is always 45 (width for 
135         vertical controls).
136         
137         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
138         on the mouse when moved and it doesn't move when grabbed
139         until the mouse moves as well. Also fixed some wrong 
140         calculations when clicking on the thumb (control thought
141         click was outside of thumb and didn't grab it).
142         Fixes some of the issues in #79718.
144 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
146         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
148 2006-11-08  Chris Toshok  <toshok@ximian.com>
150         * PropertyGridView.cs: only call ToggleValue if the item is not
151         readonly.
153 2006-11-08  Jackson Harper  <jackson@ximian.com>
155         * TextBoxBase.cs: The RichTextBox and textbox have very different
156         word selection methods.  Implement the textbox's simple word
157         selection here, and let the RichTextBox override and provide it's
158         own.
159         - Don't do extra selection on mouseup
160         * RichTextBox.cs: Use the documents word selection algorithm, I
161         think ideally, this function will be pulled into the
162         RichTextBox.cs code someday.
164 2006-11-08  Chris Toshok  <toshok@ximian.com>
166         * RootGridEntry.cs: new class to represent GridItemType.Root.
168         * CategoryGridEntry.cs: reformat, and add boilerplate.
169         
170         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
171         returns the UI parent anyway, and we need special handling to
172         implement the GetTarget method in the face of it.  Also, implement
173         Select().
175         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
176         a root grid item, and use that instead of PropertyGrid.grid_items.
177         Also, make use of TypeConverters (and add limitted support for
178         ICustomTypeDescriptors) when initially populating the grid.
179         Arrays now show up more or less properly.
181 2006-11-08  Chris Toshok  <toshok@ximian.com>
183         * Application.cs: set the modal dialog to non modal after we close
184         it.  Fixes bug #79866.
186 2006-11-08  Jackson Harper  <jackson@ximian.com>
188         * TextControl.cs: When combining lines carry over the line end
189         style from the end line.
190         - Invalidate the selected area when setting it, if it is visible.
191         * TextBoxBase.cs: Only rich text box can do full line selects.
192         - Make sure to set the cursor position when there is a click,
193         otherwise two clicks in separate areas could cause a large chunk
194         to be selected.
196 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
198         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
199         Fixes #79863.
201 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
203         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
204         time. Remove tooltips when ToolButton click events.  Fixes #79856.
206 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
208         * MenuAPI.cs: Ignore right click for menu actions and fixes
209         menu border when clicked.  Fixes #79846.
211 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
213         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
214         MouseState after create wParam for message, this fixes mouse button 
215         equal none in mouse up events.
216         
217 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
219         * Control.cs : Focus() now calls Select to set the Container's
220         Active Control and to give it focus. To avoid infinite recursion
221         (because ActiveControl also calls Focus at one point), a check 
222         is made in Focus with the help of a new internal variable
223         is_focusing.
225 2006-11-07  Mike Kestner  <mkestner@novell.com>
227         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
228         if there's a selection.  Fixes #79849.
230 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
232         * PropertyGrid.cs: Avoid fixed height of help description label.
233         Fixes part of bug #79829.
235 2006-11-07  Chris Toshok  <toshok@ximian.com>
237         * XplatUIX11.cs: fix #79790 again, by using the
238         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
240 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
242         * ToolBar.cs: Fix left click checking.
244 2006-11-07  Chris Toshok  <toshok@ximian.com>
246         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
248 2006-11-07  Chris Toshok  <toshok@ximian.com>
250         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
251         PropertyManager unit tests.
253         * PropertyManager.cs: make property_name internal.
255 2006-11-07  Chris Toshok  <toshok@ximian.com>
257         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
258         pass a unit test.  Also, don't set image_index to anything in
259         response to setting the ImageList property.
261 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
263         * ToolBar.cs: Ignore click events when mouse button is not a
264         left button, only accepts other button for dropdown menus.  
265         Fixes #79854.
267 2006-11-07  Chris Toshok  <toshok@ximian.com>
269         * DataGrid.cs: make the back and parent row buttons a little less
270         ugly.
272 2006-11-07  Jackson Harper  <jackson@ximian.com>
274         * TextBoxBase.cs: When converting to Text don't put line breaks in
275         for soft line breaks.
276         * TextControl.cs: There is an initial "fake" line in the document,
277         this is now a soft break line, so that an extra line feed doesn't
278         get added to the end of documents.
280 2006-11-07  Chris Toshok  <toshok@ximian.com>
282         [ fix bug #79778 ]
283         
284         * CurrencyManager.cs: if the list is readonly, don't bother
285         checking if IBindingList.AllowNew is true.
287         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
288         for non-DataRowView datasources..  or rather, make it not crash.
289         (DataGridPaintRelationRow): make sure we limit the row painting to
290         the area not covered by the row header, and make our cell width at
291         least large enough to cover the relation area.  This allows grids
292         that have relations but no rows to render correctly.
293         (DataGridPaintRowContents): same type of changes here.
294         (SetDataSource): move back to always calling
295         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
296         navigating back through relations.
297         (HitTest): handle the case where we have no cells but have
298         relations.  Right now we generate a hit in cell 0 of whatever the
299         row is, not sure if this is strictly correct, but it works for our
300         purposes.
301         
302         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
303         bother doing anything.
305 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
307         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
308         early version of StatusStrip.  Not responsible for eaten
309         application or firstborn children.
311 2006-11-06  Chris Toshok  <toshok@ximian.com>
313         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
314         call GetTabRect with a -1 index.  Fixes #79847.
316 2006-11-06  Jackson Harper  <jackson@ximian.com>
318         * TreeNodeCollection.cs: Update scrollbars after clearing.
320 2006-11-06  Chris Toshok  <toshok@ximian.com>
322         * NumericUpDown.cs: fix the ToString method for some unit test
323         love.
325 2006-11-06  Chris Toshok  <toshok@ximian.com>
327         * PropertyGrid.cs:
328         - set the initial SelectedGridItem if we can.
330         - Exclude non-mergable properties only if we're merging > 1
331         object.  Merging 1 object isn't really merging, obviously.
333         - Handle PropertySort.NoSort just like Alphabetical, which is
334         wrong of course, but at least gets things on the screen.
335         
336         * PropertyGridView.cs:
337         - Add method "FindFirstItem" which finds the first property grid
338         item, so we can select it by default.
340         - make use of GridEntry.CanResetValue.
342         - Don't call RedrawBelowItemOnExpansion here anymore, the
343         individual GridEntry's will do that.
345         - Remove the ITypeDescriptorContextImpl internal class.
346         
347         * GridEntry.cs:
348         - this class needs to implement ITypeDescriptorContext, as it's
349         what MS's PropertyDescriptorGridEntry does, which means we can
350         remove the ITypeDescriptorContextImpl internal class from
351         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
353         - keep a reference to our PropertyGridView, and move the call to
354         RedrawBelowItemOnExpansion here from PGV.  This means
355         programmaticly setting Expanded actually does something visible.
357         - add a CanResetValue() function which takes into account our
358         possibly multiple "selected_objects" in the merged case.  Shifting
359         PropertyGridView to use this method fixes another unreported
360         crasher found running the test for #79829.
362         - when Top or Bounds is updated, make sure the PropertyGridTextBox
363         is updated to reflect this.
365         * CategoryGridEntry.cs: the ctor takes the PGV now.
366         
367 2006-11-06  Jackson Harper  <jackson@ximian.com>
369         * TextControl.cs: These are 1 based.
370         * TextBoxBase.cs: When setting the selected text, don't change the
371         selected text tags, this is done by ReplaceText, just position the
372         cursor at the end of the new text.
374 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
376         * ListView.cs: Allow label edit only when, when LabelEdit is
377           set to true.
379 2006-11-06  Jackson Harper  <jackson@ximian.com>
381         * TextControl.cs: If a suitable wrapping position isn't found,
382         just wrap right in the middle of a word.
384 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
386         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
387           bug #79820.
389 2006-11-06  Jackson Harper  <jackson@ximian.com>
391         * TreeView.cs: Can't use the VisibleCount property when setting
392         scrollbar heights, because this doesn't take into account whether
393         or not the horz scrollbar just came visible.
395 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
397         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
398         activated.  Fixes #79369, #79832.
400 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
402         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
403           had to remove support for links that point to a directory. FileInfo
404           returns no usefull information (means, the directory they point to)
405           for such links. Replaced some empty string ("") with String.Empty.
407 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
409         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
410         NullReferenceException when attempting to remove node that is not in
411         collection. Throw NullReferenceException when null is passed to 
412         Remove. Allow first element of the collection to be removed. Fixes
413         bug #79831.  In GetEnumerator ().Current return null if positioned 
414         before the first element of the collection. In GetEnumerator ().Reset,
415         position before first element of the collection.
417 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
419         * PropertyGrid.cs: To match MS, remove default title and description
420         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
421         buttons.
423 2006-11-04  Chris Toshok  <toshok@ximian.com>
425         * Theme.cs: add a Clamp method, just for kicks.
427         * ThemeWin32Classic.cs: clamp all color components to [0..255].
429 2006-11-04  Chris Toshok  <toshok@ximian.com>
431         * Form.cs: if the form isn't visible, Close() does nothing.
433 2006-11-03  Chris Toshok  <toshok@ximian.com>
435         * Form.cs (Close): if the form is modal, don't Dispose of it, only
436         Hide it.
437         (WndProc): don't Dispose after handling the WM_CLOSE message.
439         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
440         them as such, instead of using casts from Control to Form.  Also,
441         don't Dispose of the modal dialog when we fall out of the loop -
442         Close() it instead.
444         fixes bug #79813.
446 2006-11-03  Chris Toshok  <toshok@ximian.com>
448         * Control.cs (Dispose): only go through the dispose thing if we're
449         @disposing, and we haven't already been disposed.  Fixes bug
450         #79814.
452         * Form.cs: no reason to call "base.Dispose()" here instead of
453         "Dispose()".
455 2006-11-03  Mike Kestner  <mkestner@novell.com>
457         * ComboBox.cs : use ToString instead of casts in AddItem for
458         sorting functionality.  Fixes #79812.
460 2006-11-03  Chris Toshok  <toshok@ximian.com>
462         * Application.cs: pave the way for actually using the thread
463         exception dialog.  it's ifdefed out at the moment.
465 2006-11-03  Chris Toshok  <toshok@ximian.com>
467         * ThreadExceptionDialog.cs: until we get a better layout, actually
468         hide the details textbox and label when we shouldn't see them.
470 2006-11-03  Jackson Harper  <jackson@ximian.com>
472         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
473         multiline textboxes anymore.  This method also determines the
474         width/height of a textboxes canvas area.
475         - Sorta a revert of the last patch.  For multiline just position
476         the controls, then bail.  This way the scrollbar width won't be
477         altered.
479 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
481         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
482         it dont need.  Fixes #79537.
484 2006-11-02  Jackson Harper  <jackson@ximian.com>
486         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
487         send the status after firing the DndOver event.
489 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
491         * TrackBar.cs: Now orientation only switches height / width if
492         the control's handle is created (Win32 does it like this). Also 
493         fixed a typo in ToString() for a test to pass, changed the 
494         exception thrown in set_LargeChange and set_SmallChange to 
495         match Win32 behaviour, and added TrackBar tests to the unit 
496         tests.
498 2006-11-02  Chris Toshok  <toshok@ximian.com>
500         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
501         not _NET_WM_STATE_NO_TASKBAR.
503 2006-11-02  Jackson Harper  <jackson@ximian.com>
505         * TextControl.cs: Increment count by one, since in the update view
506         count - 1 is used.
508 2006-11-02  Jackson Harper  <jackson@ximian.com>
510         * TextBoxBase.cs: Use client rectangle not bounds for checking if
511         the mouse is in the client rectangle (duh).
513 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
514         
515         * TrackBar.cs: Fixed trackbar jumping around when clicking
516         on it - the trackbar was not detecting correctly at which
517         side of the thumb the click was done. (fixes #79718)
519 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
521         * ListBox.cs: scroll visible area when change SelectedIndex to
522         a non visible area.  Fixes #79481.
524 2006-11-01  Jackson Harper  <jackson@ximian.com>
526         * TextControl.cs: When replacing the selection move the selection
527         start/end/anchor to the end of the new text.
529 2006-11-01  Jackson Harper  <jackson@ximian.com>
531         * XplatUIWin32.cs: When setting the parent change the controls
532         visibility to it's visibility flag, not to it's old parents
533         visibility (.Visible walks the parent chain).
535 2006-11-01  Chris Toshok  <toshok@ximian.com>
537         * XplatUIX11.cs: revert the #79790 fix, as the simple.
538         XSetTransientForHint fix breaks paint .net's tool windows.  more
539         work needed for that one.
541 2006-11-01  Chris Toshok  <toshok@ximian.com>
543         * ScrollBar.cs: throw ArgumentException instead of Exception in
544         LargeChange/SmallChange setters.  fixes unit tests.
546 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
548         * ContainerControl.cs: reverted rev.67183 (which was itself
549         a reversion of rev.66853... eh).
550         
551         * Control.cs: Fixes Reflector hang by changing Focus() call
552         to what it was before rev.66643 (calling Select() here sets 
553         ActiveControl, which in some situations calls back Focus and 
554         eventually does a stack overflow). Temp fix.    
555         Changes to GetNextControl() to not look for children to select when
556         parent cannot be selectable (so it looks for siblings instead)  
557         
558 2006-10-31  Mike Kestner  <mkestner@novell.com>
560         * CheckedListBox.cs : off by one error in returned index from
561         ObjectCollection.Add.  Fixes #79758.
563 2006-10-31  Chris Toshok  <toshok@ximian.com>
565         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
566         calls for the textbox/spinner, to keep from recursing to the point
567         where we crash.  Fixes #79760.
569 2006-10-31  Chris Toshok  <toshok@ximian.com>
571         * ListControl.cs (set_SelectedValue): don't throw exceptions on
572         null/"" value, just return.  matches ms's behavior and fixes some
573         failing tests.
575 2006-10-31  Chris Toshok  <toshok@ximian.com>
577         * Control.cs (set_Capture): make a logic a little easier to
578         follow.
580         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
581         if it's being destroyed.  A necessary fix surely, but a bandaid
582         also, to fix the stuck capture problem in bug #78413.
584 2006-10-31  Chris Toshok  <toshok@ximian.com>
586         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
587         convention of clearing hwnd.ClientRect when we set the
588         width/height (so it'll be recalculated by Hwnd).
590 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
592         * ContainerControl.cs: reversed Contains check from
593         ActiveControl due to hanging problems. This fix
594         partly regresses #79667 (button does not have
595         initial focus), so this might be a symptom for 
596         a larger parenting problem (set_ActiveControl
597         is being called but the child control does
598         not have the parent set yet?)   
599         
600 2006-10-31  Mike Kestner  <mkestner@novell.com>
602         * MenuAPI.cs : fix keynav when menu is click activated.
604 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
606         * ToolStrip*: Version 0.2.
608         * MenuStrip.cs: Version 0.1.
610         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
612 2006-10-30  Chris Toshok  <toshok@ximian.com>
614         [ fixes the oversized notify icon issue in bug #79745 ]
615         
616         * NotifyIcon.cs: scale the icon down to the size we're given by
617         the XplatUI layer (this would be faster if we did it once instead
618         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
619         since it's never invoked.
621         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
622         pixels high by default, so let's hardcode our systray icon to that
623         size.  The SYSTEM_TRAY protocol should really have a way for
624         client apps to query for the correct icon size.. but oh well.  A
625         couple of patches to deal with the screwy client_window ==
626         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
627         instance, and also make sure we don't XSelectInput twice).
629 2006-10-30  Chris Toshok  <toshok@ximian.com>
631         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
632         recreating forms.  Control recreation is the bane of my existence.
633         Fix it in a way that keeps everyone happy.
635 2006-10-30  Chris Toshok  <toshok@ximian.com>
637         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
638         just non-CHILD ones.  otherwise sometimes scrollbars end up with
639         client_windows not being resized to the proper size (ReportBuilder
640         shows this extremely well).
642 2006-10-30  Chris Toshok  <toshok@ximian.com>
644         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
645         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
646         showing up in the gnome taskbar.  Fixes bug #79790.
648 2006-10-30  Chris Toshok  <toshok@ximian.com>
650         * ApplicationContext.cs: guard against a NRE.
652         * Application.cs: null out the old MainForm for the context, so we
653         don't try to use it again once it's disposed.  Fixes bug #79783.
655 2006-10-30  Chris Toshok  <toshok@ximian.com>
657         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
658         BindingContext, set the data source directly, otherwise do the
659         lazy approach - the actual ListManager will be created when we get
660         a BindingContext. Fixes bug #79700.
662 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
664         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
665           XplatUIX11.cs: Remove old 2 parameter SetVisible.
667         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
669 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
671         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
672         of SetVisible that allows a window to be shown, but not activated.
673         This is needed on Windows for MenuStrip, and can probably be used
674         with MainMenu and ComboBox to fix the focus stealing issues on
675         Windows.
677         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
679 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
681         * PictureBox.cs: Fix the output of the ToString method.
683 2006-10-29  Chris Toshok  <toshok@ximian.com>
685         * Control.cs (get_TopLevelControl): fix bug #79781.
687 2006-10-29  Chris Toshok  <toshok@ximian.com>
689         * ListControl.cs (set_DataSource): throw Exception here, not
690         ArgumentException, to match MS behavior.
692 2006-10-29  Chris Toshok  <toshok@ximian.com>
694         * Form.cs: remove the try-catch's around calls to GetWindowState.
695         We can just check the return value.
697         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
698         Instead return -1.
700         * XplatUI.cs: Add note about additional return value for
701         GetWindowState.
703 2006-10-29  Chris Toshok  <toshok@ximian.com>
705         * Control.cs (CreateHandle): when we create our handle, we also
706         create the handles of our child controls.  Fixes one of the
707         Control unit tests (CH11).
709 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
711         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
713 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
715         * ThemeClearlooks.cs: A little speedup.
717 2006-10-27  Chris Toshok  <toshok@ximian.com>
719         * Control.cs: implement Control.FromChildHandle in a way that
720         matches the docs (and fixes the failed test.)
722 2006-10-27  Chris Toshok  <toshok@ximian.com>
724         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
725         comments).
727         * DataGrid.cs: implement ResetForeColor such that the tests
728         succeed.
729         
730 2006-10-27  Chris Toshok  <toshok@ximian.com>
732         * ToolBarButton.cs: setting text/tooltiptext to null results in it
733         being set to "".  Fixes bug #79759.
735 2006-10-27  Jackson Harper  <jackson@ximian.com>
737         * TextControl.cs: We need to clear the entire selection area when
738         setting the start, otherwise multiline selections are still
739         visible.
741 2006-10-26  Chris Toshok  <toshok@ximian.com>
743         * PropertyGridView.cs: 
745         - ifdef all the code specific to the double
746         buffer case, and provide some alternatives in the non-doublebuffer
747         code, which makes heavy use of XplatUI.ScrollWindow to move things
748         around without having to invalidate (and cause flicker).  There
749         are still some drawing problems in the non-doublebuffered case, so
750         DOUBLEBUFFER is defined by default.
752         - Fix the way dropdowns are handled.  now we explicitly watch for
753         the events which might cause the dropdown to close, and break out
754         of the nested event loop there.  This gets rid of all Capture
755         code, at the expense of the Msg special casing.  Seems to work,
756         though, and fixes bug #79743.
758 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
759         * Control.cs: SetIsRecreating now recreates implicitly added
760         child controls as well. Finally fixes #79629. The flag passed to 
761         SetIsRecreating has also been removed since it wasn't used.
762         
763 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
765         * PageSetupDialog.cs: Clean some code, fix some bits, 
766         add some checks, and add a printer sub-dialog.
768 2006-10-26  Chris Toshok  <toshok@ximian.com>
770         * PropertyGrid.cs: make set_SelectedObject call
771         set_SelectedObjects, and move the duplicate logic to the
772         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
774         * PropertyGridView.cs: hide the textbox when we get a
775         SelectedObjectsChanged event.
777         Fixes bug #79748.
779 2006-10-26  Chris Toshok  <toshok@ximian.com>
781         * PropertyGridView.cs: deal with the type converter not supporting
782         GetStandardValues() or GetStandardValues() returning null, which
783         is does in the default case.  Fixes #79742.
785 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
787         * CheckedListBox.cs: nunit no longer crashes when selecting 
788         Project/Edit menu option
789         
790 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
792         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
793         is no menu selected. fixes #79739
795 2006-10-25  Chris Toshok  <toshok@ximian.com>
797         * PropertyGridView.cs: factor out the splitter invalidation code
798         into the SplitterPercent setter, and for kicks implement the
799         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
800         amount in either direction.
802 2006-10-25  Chris Toshok  <toshok@ximian.com>
804         * PropertyGridView.cs: do some cleanup of the brush used to draw
805         text - read only fields should be grayed out.  not sure how to do
806         this with the textbox, though.  but the textbox's should also be
807         readonly now at least.  Also, hide/show the textbox when resizing
808         the control.
809         
810         * CursorConverter.cs: use System.Reflection when getting the
811         properties of Cursors, as TypeDescriptor.GetProperties isn't
812         returning static properties.
814 2006-10-25  Chris Toshok  <toshok@ximian.com>
816         * PropertyGridView.cs: factor out the up/down handling, and reuse
817         it for page up/down.  also add End/Home support.
819 2006-10-25  Chris Toshok  <toshok@ximian.com>
821         * PropertyGridView.cs:
823         - ensure the selected grid item is visible in the scrolled area,
824         fixes bug #79572.
826         - fix Keys.Down handling when you're on the last item in the
827         propertygrid.
829 2006-10-25  Mike Kestner  <mkestner@novell.com>
831         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
832         clicks too.  Fixes #79725.
834 2006-10-24  Chris Toshok  <toshok@ximian.com>
836         * PropertyGrid.cs: use property.Converter instead of
837         TypeDescriptor.GetConverter(property.PropertyType), so we catch
838         TypeConverters declared on the property as well as on the
839         PropertyType.  Fixes bug #79678.
841 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
843         * MimeIcon.cs, Mime.cs:
844           Fallback to the default platform handler if no shared mime info
845           stuff exists (fixes #79693).
847 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
848         * ContainerControl.cs: Incorrect contains check in ActiveControl 
849         from previous fix (duh).
851 2006-10-20  Chris Toshok  <toshok@ximian.com>
853         * PropertyGridView.cs: the dropdown should be MIN(number of items
854         in list, 15).  Fixes #79551.
856 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
857         Fixes #79384, #79394, #79652, #79667
858         * Application.cs: 
859         
860         - Modal windows are now destroyed in the proper order for windows
861         
862         * ContainerControl.cs:
863         
864         - ActiveControl setter has more conditions on when to return:
865                 - if we're reselecting the active control, but it actually
866                 didn't have focus (window hidden or some such), it runs
867                 - if the active control being selected doesn't actually 
868                 exist in the container, it returns
869         
870         * Form.cs
871         
872         - The ShowDialog now gets the current form as the owner when
873         invoking without parameters, and correctly activates the owner 
874         when returning
875         
876         * MessageBox.cs
877         
878         - MessageBox now catches the Escape key to exit
880 2006-10-20  Chris Toshok  <toshok@ximian.com>
882         * PropertyGridView.cs: fix a number of issues (bug #78565, and
883         most of bug #79676):
885         - you can navigate around the property grid with the arrow keys.
887         - the dropdown is sized properly when the pg has a vertical
888         scrollbar.
890         - fix the indentation for subentries, and properly select the
891         entire label rect.
893         - fix the gray bar's drawing (only draw it to the last element,
894         not for the height of the control.  Also make sure we draw that
895         last horizontal grid line.
897         - use the same mechanism the datagrid uses wrt the editing textbox
898         when scrolling/resizing/etc.  Namely, we hide it first, do the
899         operation, then show it again (if it's still visible).
900         
901         - aggressively remove a lot of unnecessary refreshes (and also
902         calls to Invalidate(). call more limited variants, and only redraw
903         what we need.)
904         
905         * PropertyGrid.cs:
907         - when we're populating the merged collection, fill in the UI
908         parent with either the passed in item, or the category item we
909         create.
911         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
913         * GridItem.cs: drop some fully qualified names.
914         
915         * GridEntry.cs: add a "UIParent", which is basically the parent
916         treenode.
918         * GridItemCollection.cs: add an IndexOf method.
920 2006-10-20  Mike Kestner  <mkestner@novell.com>
922         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
923         a working win32 NC invalidation mechanism, we can't invalidate
924         menus.  [Fixes #79705]
926 2006-10-20  Mike Kestner  <mkestner@novell.com>
928         * ListBox.cs : don't update the VScrollbar if the list is empty,
929         just hide it.  [Fixes #79692]
931 2006-10-20  Jackson Harper  <jackson@ximian.com>
933         * RichTextBox.cs: Handle some special chars better, and don't skip
934         the entire group when we encounter a special char that we don't
935         handle correctly.
937 2006-10-18  Chris Toshok  <toshok@ximian.com>
939         * PropertyGridView.cs: address a number of issues from bug #79676,
940         mostly of the cosmetic variety.
942         - The highlight rectangle for indented items not extends all the
943         way to the left.
945         - Indented items aren't indented so much.
947         - the dropdown is properly sized width-wise if the pg has a
948         vertical scrollbar.
950 2006-10-18  Chris Toshok  <toshok@ximian.com>
952         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
953         systray stuff is rather convoluted to begin with.
955         systray icons are a single window for some reason (that I haven't
956         figured out yet), and for them, client_window == whole_window.
957         Given the way the tests are structured elsewhere to determine
958         which paints are pending (client vs. nc), that situation will
959         always yield PAINT, not NCPAINT.  So, if we have a pending
960         nc_expose and no pending expose, remove the hwnd from the paint
961         queue, and also set nc_expose_pending to false, to keep us from
962         blocking further expose's adding the hwnd to the paint queue.
964         phew.  like i said, a rather convoluted change.  Fixes the
965         notifyicon repaint issues in bug #79645.
967 2006-10-18  Chris Toshok  <toshok@ximian.com>
969         * Form.cs: when getting the backcolor of the form, don't get
970         base.BackColor, as this allows parents to influence the background
971         color.  This breaks mdi forms.  Instead, if the background_color
972         is empty, return the default.
974 2006-10-18  Chris Toshok  <toshok@ximian.com>
976         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
977         to being private instead of internal static.
979         * Control.cs: remove all the stupid ParentWaitingOnRecreation
980         crap, it wasn't working for more deeply nested controls anyway,
981         and we already have the is_recreating flag - use that instead.
982         Before calling DestroyHandle in RecreateHandle, recurse through
983         the control tree setting it to true.  this returns the recreate
984         code to much of its original simplicity, while now guaranteeing we
985         actually recreate everything we're supposed to.  This change gets
986         fyireporting actually showing mdi children.
988 2006-10-17  Chris Toshok  <toshok@ximian.com>
990         * Form.cs: remove some debug spew, and collapse some duplicate
991         code at the end of SetClientSizeCore.
993         * XplatUIX11.cs: 
994         - add some more debug spew here too wrt Destroy handling.
995         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
996         in Control's handling of WM_DESTROY.
997         - Remove the handling of zombie window DestroyNotifies from the
998         event loop - we don't need it.  Now the only DestroyNotifies we
999         actually handle are ones generated by X.
1000         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
1001         match gtk's (functioning) handling of this. This keep metacity
1002         from leaving droppings in the form of wm borders with no window
1003         contents all over the place.
1005         * Control.cs:
1006         - add a bunch of debug spew wrt control recreation.
1007         - fix a bug where we weren't tracking Visible properly on
1008         recreated hwnds.
1009         - fixed the WM_PAINT double buffer handling to support re-entrant
1010         calls (yes, i know it's gross, but it's happening to us).
1012 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
1013         * ThemeWin32Classic.cs: changed drawing of selected days
1014         to make them look better.
1016 2006-10-16  Chris Toshok  <toshok@ximian.com>
1018         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
1019         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
1021         * XplatUIX11.cs: move away from using hwnd.client_dc and
1022         hwnd.non_client_dc and on to a stack of dc's (and in window's
1023         case, PAINTSTRUCT's), so we can deal with nested Paint calls
1024         without puking or not disposing of Graphics objects.
1026         * XplatUIOSX.cs: same.
1028         * XplatUIWin32.cs: same.
1030 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
1032         * FileDialog.cs: Don't call on_directory_changed inside
1033           OnSelectedIndexChanged (it changes the SelectedIndex too).
1034           Instead move it to OnSelectionChangeCommitted.
1036 2006-10-13  Chris Toshok  <toshok@ximian.com>
1038         * XplatUIX11.cs: more Destroy work.  the current code does the
1039         following things, in order:
1041         1. Enumerates all handles of all controls at or below the one
1042         being destroyed, in pre-order.  As it is doing this, it marks the
1043         handles as zombie and clears all references to them.
1044         
1045         2. calls XDestroyWindow on the window passed in.
1047         3. SendMessage's WM_DESTROY to all he handles in the accumulated
1048         list.
1050 2006-10-13  Chris Toshok  <toshok@ximian.com>
1052         * XplatUIX11.cs: set hwnd.zombie to true before calling
1053         SendMessage (WM_DESTROY).  this keeps us from marking the new
1054         window a zombie, and also keeps us from calling sendmessage at
1055         all.
1057 2006-10-13  Jackson Harper  <jackson@ximian.com>
1059         * TextControl.cs: Do not show the caret and selection at the same
1060         time.  Reduces ugliness by 35%.
1062 2006-10-13  Chris Toshok  <toshok@ximian.com>
1064         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
1065         zombie after we do the recursive call, so we actually do call
1066         SendMessage on the children controls.
1067         (GetMessage): if we find a pending paint event for a zombie hwnd,
1068         remove the hwnd from the paint queue, or else it will always be
1069         there (and we'll effectively loop infinitely)
1071 2006-10-13  Mike Kestner  <mkestner@novell.com>
1073         * MenuItem.cs : add Selected format under keynav too.
1074         Fixes #79528.
1076 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
1078         * PropertyGrid.cs: Fixed some NRE's and small difference between our
1079         implementation and that of MS.
1081 2006-10-13  Chris Toshok  <toshok@ximian.com>
1083         * Control.cs (OnInvalidated) only futz with the invalid_region if
1084         the control is double buffered.  this fixes the apparent hang in
1085         the ListView unit tests.  Someone needs to make the
1086         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
1088 2006-10-13  Chris Toshok  <toshok@ximian.com>
1090         * PropertyGridView.cs:
1092         - do a little refactoring so that only one place calls
1093         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
1094         else call that.  Also make it Refresh, since there are redraw bugs
1095         otherwise (we should take a look at that...)
1097         - do a little more refactoring work to share the body of code
1098         involved with the drop down.  it was duplicated in the code
1099         dealing with the listbox handling and in the code dealing with the
1100         UITypeEditors.
1102         - add a Capture to the dropdown form's control once it's
1103         displayed, and add a MouseDown handler that checks to make sure
1104         the position is inside the control.  If it's not, close the
1105         dropdown.  This fixes #78190.
1107         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
1108         if the value is different than the initial value.
1109         
1110 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
1112         * Control.cs: see #78650
1113         - Fixed GetNextControl for several cases:
1114                 - Changed FindFlatForward to return 
1115                 correct sibling control when more than one
1116                 control has same TabIndex as the currently 
1117                 focused one.
1118                 - Changed FindFlatBackward to loop children
1119                 from last to first and apply same logic as in
1120                 FindFlatForward
1121                 - Changed FindControlForward to search for
1122                 children when control is not a container
1123                 but has children, or search for siblings if
1124                 control is a container...
1125                 - Changed FindControlBackward   to continue
1126                 searching for child controls when hitting 
1127                 Panel-like parents
1128                 
1129         - Fixed Focus method to update ActiveControl
1130         (FocusTest.FocusSetsActive failure)
1131         
1132         * TabControl.cs:
1133         - Focus rectangle now refreshes when gaining
1134         or losing focus
1135         - Removed grab for Tab key on IsInputKey that 
1136         was keeping tab navigation from working (#78650)
1138 2006-10-13  Chris Toshok  <toshok@ximian.com>
1140         * PropertyGridView.cs:
1141         - Rewrite SetPropertyValue to loop over SelectedGridItem's
1142         SelectedObjects.
1144         - Deal with GridItem.Value == null a few places.
1146         * PropertyGrid.cs: 
1147         - replace the PopulateGridItemCollection with a pair of methods
1148         which compute the intersection of all the properties in the
1149         SelectedObjects array.  Fixes #79615.
1151         - Throw ArgumentException from set_SelectedObjects if there's a
1152         null in the array.
1154         - Add GetTarget method which can be used to traverse up the
1155         GridItem.Parent chain.  It depends on the assumption that
1156         selected_objects for different GridEntries are always in the same
1157         order (a safe assumption).  Use this method and loop over all the
1158         selected objects in the entry when calling RemoveValueChanged and
1159         AddValueChanged.
1160         
1161         * GridEntry.cs: Make this handle multiple selected objects.
1162         .Value returns null if not all the selected objects share the same
1163         value.
1165 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
1166         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
1167           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
1168           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
1169           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
1170           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
1171         add additional functionality.
1173 2006-10-12  Mike Kestner  <mkestner@novell.com>
1175         * ErrorProvider.cs : new ToolTipWindow ctor sig.
1176         * HelpProvider.cs : new ToolTipWindow ctor sig.
1177         * ToolTip.cs : remove ToolTip param from Window sig since it is
1178         not used.
1179         * ToolBar.cs : add tooltip support.  Fixes #79565.
1181 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
1183         * ComboBox.cs: move the events in set_SelectedIndex to 
1184         after the call to HighlightIndex in order to avoid 
1185         possible recursion and subsequent problems with the call
1186         to HighlightIndex and include a range check in 
1187         set_HighlightIndex. Fixes #79588
1188         
1189 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
1191         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
1192         to ui thread's settings instead of sunday. 
1193         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
1195 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
1197         * DateTimePicker.cs
1198         * MonthCalendar.cs
1199         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
1200         and implement missing functionality (selecting different parts 
1201         of the date and edit them individually with the keyboard).
1202         
1203 2006-10-11  Chris Toshok  <toshok@ximian.com>
1205         * Control.cs (OnInvalidated): fix NRE relating to last change.
1207 2006-10-11  Chris Toshok  <toshok@ximian.com>
1209         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
1210         atoms in _NET_WM_STATE here if the window is maximized.  We need
1211         to do this because we're *replacing* the existing _NET_WM_STATE
1212         property, so those atoms will be lost otherwise, and any further
1213         call to GetWindowState will return Normal for a window which is
1214         actually maximized.  Fixes #79338.
1216 2006-10-11  Jackson Harper  <jackson@ximian.com>
1218         * TextControl.cs: Special case for setting selection end to
1219         selection start, we basically kill the anchor.
1220         - some todo comments.
1222 2006-10-11  Chris Toshok  <toshok@ximian.com>
1224         * Control.cs: switch to using an "invalid_region" to track which
1225         parts of the image buffer need updating.  This is more code than
1226         the simple fix from r66532.  That version just attempted to always
1227         fill the entire buffer on redraw, which turns out to be
1228         inefficient when invalidating small rectangles.  This version
1229         simply adds the invalid rectangle to the invalid region.  When we
1230         get any WM_PAINT message we see if it can be filled using the
1231         image buffer, and if it can't (if the paint event's clip rectangle
1232         is visible in the invalid region) we first fill the image buffer.
1233         So, the image buffer is still a cache, we just fill it lazily.
1235         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
1236         need it any longer.
1238 2006-10-11  Chris Toshok  <toshok@ximian.com>
1240         * XplatUIX11.cs (SetWindowPos): we need to update both position as
1241         well as size after calling XMoveResizeWindow.  This keeps us from
1242         ignoring future SetWindowPos calls.  Fixes the disappearing
1243         DateTimePicker in the ToolBarDockExample from bug #72499.
1245 2006-10-11  Chris Toshok  <toshok@ximian.com>
1247         * TextBoxBase.cs: reorder things a bit when it comes to
1248         resizing-causing-recalculation.  we were recalculating the
1249         document when our position was changed, which shouldn't happen.
1250         We only care about size changes.  Clear up some more redundant
1251         recalculation calls while I'm at it.  This makes the toolbar dock
1252         example snappy when you're just dragging toolbars around (since it
1253         causes a relayout whenever you move one.)
1255 2006-10-11  Chris Toshok  <toshok@ximian.com>
1257         * ToolBarButton.cs (get_Rectangle): this only returns
1258         Rectangle.Empty if Visible == false, or Parent == null.
1259         Parent.Visible doesn't matter.
1261 2006-10-10  Chris Toshok  <toshok@ximian.com>
1263         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
1264         by .net 1.1, so switch to an internal method instead.
1266 2006-10-10  Chris Toshok  <toshok@ximian.com>
1268         * Control.cs (WM_PAINT): when a control is double buffered we draw
1269         initially to the ImageBuffer and then copy from there.  But when a
1270         parent control which has child controls is double buffered, the
1271         initial drawing doesn't encompass the entire ClientRectangle of
1272         the parent control, so we end up with uninitialized bits (this is
1273         easily seen by dragging the top toolbar in
1274         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
1275         manually set the ClipRectangle of the paint_event (only the one we
1276         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
1277         of the nastiness in bug #72499.
1279         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
1280         which we use in Control.cs's WM_PAINT handling.
1282 2006-10-10  Jackson Harper  <jackson@ximian.com>
1284         * TextBoxBase.cs: Finish off the autoscrolling stuff.
1286 2006-10-10  Chris Toshok  <toshok@ximian.com>
1288         * Cursor.cs: Apply a slightly different patch to the one suggested
1289         in #79609.
1291 2006-10-10  Jackson Harper  <jackson@ximian.com>
1293         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
1294         not the parent form.
1295         * TextControl.cs: use difference in old line count vs new count to
1296         calculate how many lines were added, this takes into account soft
1297         line breaks properly.
1299 2006-10-10  Chris Toshok  <toshok@ximian.com>
1301         * LinkLabel.cs: don't call MeasureCharacterRanges against a
1302         rectangle located at 0,0 and the size of the text.  Use
1303         ClientRectangle instead.  This fixes rendering of non-left aligned
1304         link labels.
1306 2006-10-10  Jackson Harper  <jackson@ximian.com>
1308         * TextBoxBase.cs: When we set the selection start position the
1309         caret.
1310         * TextControl.cs: Need to update the caret when we decrement it to
1311         zero.
1312         - Make sure that the selection_visible flag gets reset to false if
1313         the selection isn't visible.  Before this you could get it set to
1314         visible by changing the selection start, then changing the end to
1315         equal the start.
1317 2006-10-09  Jackson Harper  <jackson@ximian.com>
1319         * TreeView.cs: Don't update scrollbars when we aren't visible.
1320         * TreeNodeCollection.cs: Only need to update scrollbars if being
1321         added to an expanded visible node or the root node.
1323 2006-10-09  Chris Toshok  <toshok@ximian.com>
1325         * XplatUIX11.cs (SendMessage): fix NRE.
1327 2006-10-09  Jackson Harper  <jackson@ximian.com>
1329         * TextBoxBase.cs: Implement horizontal autoscrolling.
1330         * TextControl.cs: Add a movement types that allows moving forward
1331         and backwards without wrapping.
1333 2006-10-09  Mike Kestner  <mkestner@novell.com>
1335         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
1336         with focus "expansion" of labels.  Fixes #79532 and then some.
1337         * ThemeWin32Classic.cs : add LineLimit to ListView label format
1338         when wrapping.
1340 2006-10-09  Jackson Harper  <jackson@ximian.com>
1342         * TextBoxBase.cs: Set the default max values to MaxValue since
1343         we use the scrollbar for autoscrolling and the default value is
1344         100.  If we don't do this the caret won't keep up with typing
1345         after about 18 characters.
1346         * TextControl.cs: Make sure the selection is offset by the
1347         viewport x.  This fixes selection when using auto scrolling.
1349 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
1350         
1351         * Form.cs: The active control should be selected after the 
1352         OnLoad so that any child control initialization that affects
1353         the selection is done. Fixes #79406
1355 2006-10-06  Chris Toshok  <toshok@ximian.com>
1357         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
1358         to have no evil effects.
1360         - Stop selecting StructureNotifyMask on non-toplevel windows.
1362           The only way children should be resized is by using the SWF api,
1363           and we already send WM_WINDOWPOSCHANGED messages in those cases.
1364           Toplevel windows can be interacted with via the window manager,
1365           and so we keep the input mask there.
1367           The other event StructureNotifyMask gives us (that we care
1368           about) is DestroyNotify.  The code is already structured such
1369           that it assumes we won't be getting a DestroyNotify event for
1370           the window we pass to XDestroyWindow (which is what
1371           StructureNotifyMask is supposed to guarantee.)  So, that code
1372           shouldn't be affected by this either.
1374         - Stop selecting VisibilityChangeMask altogether.
1376           We weren't doing anything with the resulting events anyway.
1377         
1378         This vastly reduces the number of X requests and events we see
1379         when resizing/laying out a large ui.
1381 2006-10-06  Chris Toshok  <toshok@ximian.com>
1383         * ScrollableControl.cs (DisplayRectangle): we need to take into
1384         account the DockPadding regardless of whether or not auto_scroll
1385         == true.  rework this slightly to this effect, and fix bug #79606,
1386         and part of #72499 (you can now see the drag handles and drag
1387         toolbars around).
1389 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
1391         * ListViewItem.cs: Collections of selected and checked items are now
1392         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
1393         we mark the collection "dirty".
1394         * ListView.cs: Marked collections readonly. Modified UpdateSelection
1395         to only clear SelectedItems when a new item is selected and MultiSelect
1396         is enabled. CheckedItems and SelectedItems now subscribe to Changed
1397         event of ListViewItemCollection, and mark its list dirty whenever
1398         that event is fire. This allows us to return selected/checked items 
1399         in the same order as they are in the Items collection. This matches
1400         the MS behavior.
1402 2006-10-06  Chris Toshok  <toshok@ximian.com>
1404         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
1405         right mouse clicks.  Fixes bug #79593.
1407 2006-10-06  Chris Toshok  <toshok@ximian.com>
1409         * Splitter.cs: doh, fix splitters that don't want to cancel the
1410         movement when you drag them.  Also, impose the limits on the
1411         values we send to the SplitterMovingEvent.  Fixes #79598.
1413 2006-10-06  Jackson Harper  <jackson@ximian.com>
1415         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
1416         since we use this for auto scrolling also.
1418 2006-10-05  Chris Toshok  <toshok@ximian.com>
1420         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
1421         beginning to think that most datagrid column types don't need this
1422         method.  Fixes bug #79392.
1424 2006-10-05  Chris Toshok  <toshok@ximian.com>
1426         * DataGrid.cs: move back to a more lazy scheme for creating the
1427         CurrencyManager, so we aren't updating it every time you set
1428         either DataSource or DataMember.  Also, don't call
1429         RecreateDataGridRows if the currency manager hasn't changed.
1431 2006-10-05  Chris Toshok  <toshok@ximian.com>
1433         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
1434         emitted, SelectedIndex should already be updated.  Fixes bug
1435         #78929.
1437 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
1439         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
1440           ToolStripTextBox.cs: Initial commit.
1441         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
1443 2006-10-05  Jackson Harper  <jackson@ximian.com>
1445         * TabControl.cs: We need to invalidate the tab control area when
1446         new ones are added (duh).
1448 2006-10-03  Chris Toshok  <toshok@ximian.com>
1450         * Form.cs (ProcessDialogKey): if the focused control is in this
1451         form and is a button, call its PerformClick method here.  Fixes
1452         #79534.
1454 2006-10-04  Jackson Harper  <jackson@ximian.com>
1456         * TabPage.cs: Ignore setting of Visible, and add an internal
1457         method for setting the controls visibility.  TabPage's Visible
1458         property is a little strange on MS, this seems to make us
1459         compatible, and fixes cases where people set all the tab pages to
1460         visible.
1461         * TabControl.cs: Use the new internal setting on tab pages
1462         visibility.
1464 2006-10-03  Mike Kestner  <mkestner@novell.com>
1466         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
1468 2006-10-03  Mike Kestner  <mkestner@novell.com>
1470         * ListView.cs : use is_visible instead of Visible to check if 
1471         scrollbars should be placed/sized.  Also some max_wrap_width
1472         love for LargeIcon view.  [Fixes #79533]
1474 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
1476         * TextControl.cs :
1477           Make set_TextAlign() do actually update the align. Fixed #78403.
1479 2006-10-03  Chris Toshok  <toshok@ximian.com>
1481         * DataGrid.cs: fix a crash when switching datasources if the
1482         vertical scrollbar is at someplace other than Value = 0.  Also,
1483         reduce the number of recalculation passes we do in SetDataSource
1484         from 2 to 1.
1486 2006-10-03  Jackson Harper  <jackson@ximian.com>
1488         * TextBoxBase.cs: Move the if value the same bail check up, we
1489         don't want to empty the document if it is already empty, this
1490         seems to severly mess up the caret.  TODO: I should probably fix
1491         the empty statement to update teh caret somehow.
1493 2006-10-03  Chris Toshok  <toshok@ximian.com>
1495         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
1496         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
1497         reflection, an internal row type, properties on said type, etc.)
1498         will work with our datagrid.  Fixes #79531.
1500 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
1502         * FileDialog.cs: Don't crash if a path is not accessible
1503           (System.UnauthorizedAccessException). Fixes #79569.
1504         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
1505           a ':' too. Return unknown icon for those paths/files.
1507 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
1509         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
1510         GetContainerControl returns null.
1512 2006-10-02  Chris Toshok  <toshok@ximian.com>
1514         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
1515         call to XGetWindowAttributes instead of "handle".  fixes an X
1516         error using notifyicon after the NotifyIconWindow to Form base
1517         class switch.
1519 2006-10-02  Chris Toshok  <toshok@ximian.com>
1521         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
1522         server grab and looping we need to do to get down to the most
1523         deeply nested child window.
1524         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
1525         QueryPointer again after the WarpPointer so we can generate a
1526         proper (fake) MotionNotify event to be enqueued in the destination
1527         window's queue.
1528         (GetCursorPos): call QueryPointer.
1530         Fixes #79556.
1532 2006-10-02  Jackson Harper  <jackson@ximian.com>
1534         * NotifyIcon.cs: Derive the notify icon from a form, so things
1535         like FindForm work on it.
1536         - Swallow the WM_CONTEXTMENU message, since that is generated on
1537         mouse down, and context menu is a mouse up kinda guy.  I believe
1538         the correct fix here is probably to make the notify icon entirely
1539         NC area, but this seems to work fine for anyone not manipulating
1540         WndProc.
1542 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
1544         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
1545           ToolStripItemCollection.cs, ToolStripLabel.cs,
1546           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
1547           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
1548           Initial implementation.
1549         * TextRenderer.cs: Provide padding to MeasureText.
1551 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
1553         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
1554         of ButtonBaseAccessibleObject. Fix bug #79552.
1556 2006-10-02  Jackson Harper  <jackson@ximian.com>
1558         * MdiWindowManager.cs: When maximizing use the containers client
1559         rect, not it's bounds, so nc area is accounted correctly.
1560         - Use the parent form's size for the menu position, since the
1561         client isn't always the full form size.
1563 2006-10-01  Chris Toshok  <toshok@ximian.com>
1565         * ScrollableControl.cs: make sure neither right_edge or
1566         bottom_edge are < 0, since they're used as LargeChange for the
1567         horiz/vert scrollbars respectively.  Fixes #79539.
1569 2006-10-01  Chris Toshok  <toshok@ximian.com>
1571         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
1572         the xplatuix11 code can cause us to destroy/recreate our handle.
1574         * XplatUIX11.cs
1575         (SystrayAdd):
1576         - this code can be invoked many times for the same Hwnd.  Make
1577           sure we only destroy the client window once (the first time this
1578           method is called).  This fixes bug #79544.
1579         - Remove the call to the improperly bound XSync.  why we had two
1580           bindings to this, I will never know, but this call resulted in
1581           events being discarded from the queue(!).
1582         - correct a misunderstanding of _XEMBED_INFO - the second atom is
1583           not our current state but the state we wish to be in.  So, 0 if
1584           we don't want to be mapped.  Change it to 1.
1585         (SystrayRemove): The XEMBED spec makes mention of the fact that
1586         gtk doesn't support the reparent of client windows away from the
1587         embedder.  Looking at gtksocket-x11.c seems to agree with this.
1588         The only avenue we have for removing systray icons is to destroy
1589         them.  We don't want the handle to go away for good, though, so
1590         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
1591         #79545.
1592         
1593 2006-10-01  Chris Toshok  <toshok@ximian.com>
1595         * Form.cs (WndProc): inline the native_enabled variable usage into
1596         the cases in which it's used.  Fixes #79536.
1598 2006-09-29  Mike Kestner  <mkestner@novell.com>
1600         * ListView.cs : toggle the selection state for ctrl clicks in 
1601         multiselect mode. [Fixes #79417]
1603 2006-09-29  Mike Kestner  <mkestner@novell.com>
1605         * ListView.cs : kill CanMultiSelect and refactor the selection
1606         code to support multiselection in the absence of mod keys. Steal
1607         arrow/home/end keys by overriding InternalPreProcessMessage to
1608         restore regressed keynav behavior.
1609         [Fixes #79416]
1611 2006-09-29  Jackson Harper  <jackson@ximian.com>
1613         * MdiClient.cs: Repaint the titlebars when the active window is
1614         changed.
1616 2006-09-29  Chris Toshok  <toshok@ximian.com>
1618         * Application.cs: when entering a runloop with a modal, make sure
1619         the hwnd is enabled.  Fixes #79480.
1621 2006-09-29  Chris Toshok  <toshok@ximian.com>
1623         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
1624         when ListManager.CanAddRows == false, bump us back one.
1626         * DataGridColumnStyle.cs (ParentReadOnly): remove the
1627         listmanager.CanAddRows check.  This makes ArrayLists uneditable
1628         using a datagrid, which is not right.
1629         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
1630         is an IEditable, but call property_descriptor.SetValue regardless.
1631         fixes #79435.
1633 2006-09-29  Chris Toshok  <toshok@ximian.com>
1635         * DataGridBoolColumn.cs: we need to test equality in the face of
1636         possible null values (as is the case with the default NullValue).
1637         This patch keeps us from crashing in that case.
1639 2006-09-29  Jackson Harper  <jackson@ximian.com>
1641         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
1642         here, since it will get called for every node collection in the
1643         tree. This is now done in the treeview once the sorting is
1644         finished.
1645         * TreeView.cs: Recalculate the visible order, and update the
1646         scrollbars after sorting, set the top nope to the root so that the
1647         recalc actually works.
1649 2006-09-29  Chris Toshok  <toshok@ximian.com>
1651         * LinkLabel.cs: more handling of the default link collection in
1652         the face of LinkArea manipulation.  The default link collection
1653         contains 1 element (start=0,length=-1).  If the user sets LinkArea
1654         to anything and the links collection is the default, clear it.
1655         Then only add the link if its nonempty.  Fixes #79518.
1657 2006-09-29  Chris Toshok  <toshok@ximian.com>
1659         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
1660         piece correctly when we hit a '\n'.  Fixes #79517.
1662 2006-09-29  Chris Toshok  <toshok@ximian.com>
1664         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
1665         change the binding of gdk_init_check to take two IntPtr's, and
1666         pass IntPtr.Zero for both of them.  Fixes #79520.
1668 2006-09-29  Mike Kestner  <mkestner@novell.com>
1670         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
1671         [Fixes #78779]
1673 2006-09-28  Jackson Harper  <jackson@ximian.com>
1675         * XplatUIX11.cs: When translating NC messages make sure we go from
1676         whole window to screen, not client window to screen.
1677         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
1678         method doesn't exist
1679         - Skip over controls that aren't forms when arranging.
1681 2006-09-28  Jackson Harper  <jackson@ximian.com>
1683         * XplatUIWin32.cs: Clip the rect to the parent window.
1684         * XplatUIStructs.cs: Add clipping modes struct.
1685         * InternalWindowManager.cs: New private method that factors title
1686         bar heights in when calculating the pos of an NC mouse message.
1687         - Use SendMessage to force a paint when the form's size is changed
1688         instead of painting the decorations immediately.
1689         - Don't let the NC button click messages get to DefWndProc,
1690         because they will attempt to handle windowing themself, and this
1691         messes up z-order (it will put them in front of the scrollbars).
1692         * XplatUIX11.cs: Make sure that we don't reset window managers if
1693         we already have one (ie the window is an MDI window).
1695 2006-09-28  Chris Toshok  <toshok@ximian.com>
1697         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
1698         menu code really needs going over.
1700 2006-09-27  Chris Toshok  <toshok@ximian.com>
1702         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
1703         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
1704         window is maximizable.  So, we need to make sure that even if we
1705         clear the border/wm frame of those functions, they're still
1706         available (basically, we remove the decoration without removing
1707         the function).  Half the fix for #79338.
1709 2006-09-27  Chris Toshok  <toshok@ximian.com>
1711         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
1712         Fixes bug #79515.
1714 2006-09-27  Chris Toshok  <toshok@ximian.com>
1716         * Splitter.cs: reorder things a bit so that we don't actually
1717         draw/move the splitter until after calling OnSplitterMoving.  This
1718         lets users cancel/disallow the movement by explicitly setting
1719         event.SplitX/SplitY.  Fixes #79372.
1721 2006-09-27  Jackson Harper  <jackson@ximian.com>
1723         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
1724         because it is most likely on a window being destroyed, and that
1725         will give us an X11 error.
1727 2006-09-27  Chris Toshok  <toshok@ximian.com>
1729         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
1730         the dropdown button now toggles between showing and hiding the
1731         dropdown.  Also, get rid of dropdown_form_showing and just use
1732         dropdown_form.Visible.  We still don't do a grab, but I'll leave
1733         that part to someone who has handled Capture-fu before.
1735 2006-09-27  Chris Toshok  <toshok@ximian.com>
1737         * DataGrid.cs: return false if alt isn't pressed when '0' is
1738         pressed.  this keeps the '0' key from being swallowed, and fixes
1739         bug #79350.
1741 2006-09-27  Chris Toshok  <toshok@ximian.com>
1743         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
1744         Calling Refresh (in response to a scrollbar event) screws up the
1745         scrollbar painting.  Fixes bug #78923.
1747 2006-09-27  Chris Toshok  <toshok@ximian.com>
1749         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
1750         then insert into hashtable" blocks threadsafe.
1752 2006-09-27  Chris Toshok  <toshok@ximian.com>
1754         * MessageBox.cs (CreateParams): the styles should be |'ed with our
1755         baseclass's, since otherwise the
1756         ControlBox/MinimizeBox/MaximizeBox assignments above have no
1757         effect.  This gets the close button back in messageboxes.
1759 2006-09-27  Chris Toshok  <toshok@ximian.com>
1761         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
1762         flag, not just != 0.  this makes flags that are actually multiple
1763         bits (like WS_CAPTION) work.  fixes bug #79508.
1765 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
1767         * PageSetupDialog.cs: add support for getting and settings the 
1768         paper size, source and orientation.
1770 2006-09-26  Chris Toshok  <toshok@ximian.com>
1772         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
1773         and caption == "", we need to remove the resize handles as well as
1774         the title bar.
1776         * Control.cs (set_Text): turns out that setting Text on a form
1777         should change the WM styles on the window, since if ControlBox ==
1778         false, the only way to get a window border is to have a non-""
1779         Text property.  check winforms/forms/text.cs for an example.  so,
1780         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
1781         update both window styles and title.  This fixes a lot of dialogs
1782         (including the preferences dialog in MonoCalendar.)
1784 2006-09-26  Chris Toshok  <toshok@ximian.com>
1786         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
1787         control isn't a Form), call Win32ShowWindow to hide the window,
1788         but don't update the control Visible property.  When we reparent
1789         back to a parent control, call SetVisible in order for the
1790         window's visibility to be reinstated.
1792         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
1793         the FosterParent.
1795         * Control.cs (ControlCollection.Remove): remove that value.Hide()
1796         call for good, since it breaks MonoCalendar (and other things I'm
1797         sure.) Also, set all_controls to null *after* the owner calls,
1798         which end up regenerating it.
1799         (ChangeParent): allow new_parent to be == null, passing
1800         IntPtr.Zero down to XplatUI.
1802         this fixes #79294 the right way.
1804 2006-09-26  Mike Kestner  <mkestner@novell.com>
1806         * GridEntry.cs : internal SetParent method.
1807         * PropertyGrid.cs : attach to property changed on the proper
1808         target if we have a hierarchical grid with subobjects. Setup
1809         GridItem.Parent for hierarchical items.
1810         * PropertyGridView.cs : Set value on the correct target for
1811         hierarchical grids. [Fixes #78903]
1813 2006-09-26  Chris Toshok  <toshok@ximian.com>
1815         * Control.cs (ChildNeedsRecreating): this should return true if
1816         either we're being recreated and the child is in our list, or our
1817         parent is waiting for our recreation.
1819 2006-09-26  Chris Toshok  <toshok@ximian.com>
1821         * Control.cs (ControlCollection.Remove): reinstate the
1822         value.Hide() call as suggested in bug #79294.
1824 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
1826         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
1827         coordinates (versus a relative move).
1829 2006-09-26  Chris Toshok  <toshok@ximian.com>
1831         * Control.cs: rework child recreation a little bit.  It turns out
1832         that we race between the DestroyNotify the WM_DESTROY message.  If
1833         the parent gets its DestroyNotify before the child gets the
1834         WM_DESTROY message, the child ends up not recreating (since the
1835         parent finishes its recreation on DestroyNotify, and the child
1836         checks ParentIsRecreating.)
1838         So, instead we store off a list of all the child controls which
1839         need to be recreated when the parent control starts to recreate
1840         itself.  Then, when child controls get their WM_DESTROY message we
1841         check to see if they're in the parent's pending recreation list,
1842         and if so, we recreate.  This removes all dependency on ordering
1843         from the code and fixes the initial MonoCalendar upgrade dialog.
1844         
1845 2006-09-26  Jackson Harper  <jackson@ximian.com>
1847         * TextControl.cs: Use the Line to get the length of the line,
1848         since soft line breaks can change the end line.
1850 2006-09-26  Chris Toshok  <toshok@ximian.com>
1852         * Control.cs (ControlCollection.AddImplicit): don't add the
1853         control again if it's already in one of our lists.  This keeps us
1854         from adding controls over and over again for comboboxes when their
1855         handle gets recreated (as the combobox adds implicit controls in
1856         OnHandleCreated).  Fixes the X11 errors in bug #79480.
1858 2006-09-26  Jackson Harper  <jackson@ximian.com>
1860         * TextControl.cs: When deleting characters make sure that any
1861         orphaned zero lengthed tags get deleted.
1862         - Fix ToString for zero lengthed tags.
1864 2006-09-25  Jackson Harper  <jackson@ximian.com>
1866         * TextControl.cs: When getting a tag at the location there can be
1867         multiple tags at the same spot, these are 0-lengthed tags that
1868         appear when extra formatting has been stuck in a location.  We
1869         need to pull out the last of these 0 lengthed tags.
1871 2006-09-25  Jackson Harper  <jackson@ximian.com>
1873         * TextControl.cs: Fix print out in debug method.
1874         * TextBoxBase.cs: When text is set bail if we are setting to the
1875         previous value.
1876         
1877 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
1879         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
1880           It is now possible to change the selected index in a FontXXXListBox
1881           with the up and down arrow keys from the FontXXXTextBoxes.
1882           Also, send the FontXXXTextBox mouse wheel event to the corresponding
1883           FontXXXListBoxes to match ms.
1885 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
1887         * SystemInformation.cs: Return a clone of the theme's MenuFont because
1888         anyone can dispose it, anytime. All other properties returns enums, 
1889         structs or basic types so they don't need such tricks.
1891 2006-09-22  Jackson Harper  <jackson@ximian.com>
1893         * XplatUI.cs:
1894         * XplatUIWin32.cs:
1895         * Clipboard.cs:
1896         * DataFormats.cs:
1897         * XplatUIOSX.cs:
1898         * XplatUIDriver.cs: Update interface to add a primary selection
1899         flag, so the driver can use the primary selection buffer if
1900         needed.
1901         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
1903         * RichTextBox.cs: We need to supply the data object to paste now
1904         (so we can choose to supply CLIPBOARD or PRIMARY).
1905         * TextBoxBase.cs: Supply data object to paste (see above).
1906         - Middle click uses the primary selection data object.
1907         
1908 2006-09-21  Chris Toshok  <toshok@ximian.com>
1910         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
1911         of SetWMStyles.  It's still a rat's nest and is largely
1912         order-dependent which I dislike immensely.  This also fixes the X
1913         button disappearing from toplevel forms.
1915 2006-09-21  Mike Kestner <mkestner@novell.com>
1917         * ListBox.cs: move Jordi's click/dblclick raising code to the
1918         mouse up handler.
1920 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
1922         * ListBox.cs: Fixes 79450
1924 2006-09-21  Mike Kestner <mkestner@novell.com>
1926         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
1927         to deal with people updating the TreeNodeCollection after the tree
1928         is disposed.  "Fixes" 79330.
1930 2006-09-20  Jackson Harper <jackson@ximian.com>
1932         * TextControl.cs: Push the cursor record onto the undo stack
1933         before the delete action. This fixes 78651.
1935 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
1937         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
1938         CreateParams. Fixes 79329.
1940 2006-09-19  Chris Toshok  <toshok@ximian.com>
1942         * XplatUIX11.cs: a couple of blanket code massage passes to clean
1943         things up a bit.  First, get rid of the NetAtoms array (and the NA
1944         enum), and just embed the atoms as static fields.  Also, add a
1945         couple of functions (StyleSet and ExStyleSet) to clean up all the
1946         bitmask testing of styles.
1948         * X11Structs.cs: remove the NA enum, not needed anymore.
1949         
1950 2006-09-19  Chris Toshok  <toshok@ximian.com>
1952         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
1953         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
1954         added cleanup to get MessageBox titles appearing again, which were
1955         broken by my earlier fix for caption-less/ControlBox-less windows.
1957 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
1959         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
1960           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
1961           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
1962           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
1963           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
1964           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
1965           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
1966           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
1967           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
1968           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
1969           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
1970             Inital import.
1971         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
1972           ToolStripButton.cs: Stubs needed for above.
1973         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
1975 2006-09-15  Chris Toshok  <toshok@ximian.com>
1977         * XplatUIX11.cs:
1978         - make the MessageQueues hashtable Synchronized.
1979         
1980         - SendMessage: if the Hwnd is owned by a different thread, use the
1981         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
1982         thread.  Fixes bug #79201.
1984 2006-09-15  Chris Toshok  <toshok@ximian.com>
1986         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
1987         ControlBox == false, we disallow maximize/minimize/close.  If the
1988         form Caption is "" we also disallow move (and get rid of the Title
1989         decoration).  Unfortunately, regardless of how things are set,
1990         we're stuck with the Title and WM menu.
1992 2006-09-15  Chris Toshok  <toshok@ximian.com>
1994         * Application.cs: add locking around the static message_filters
1995         ArrayList, part of #79196.
1997 2006-09-15  Chris Toshok  <toshok@ximian.com>
1999         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
2000         Form.ControlBox == false, the window has no titlebar nor resize
2001         handles.  fixes bug #79368.
2003 2006-09-15  Chris Toshok  <toshok@ximian.com>
2005         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
2006         >= 0.  Fixes bug #79370.
2008 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
2009         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
2010         * Control.cs:
2011             Add properties: LayoutEngine, Margin, DefaultMargin.
2012             Add method: GetPreferredSize.
2013             Move layout logic from PerformLayout to layout engines. 
2015 2006-09-13  Chris Toshok  <toshok@ximian.com>
2017         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
2018         fix for #79326 broke #78718, so this change addresses that.
2020         - in SendWMDestroyMessages remove the call to
2021         CleanupCachedWindows, since we might be recreating the control and
2022         need to maintain the references to right Hwnd handles.  Also, set
2023         the zombie flag to true for each of the children in the hierarchy
2024         instead of calling hwnd.Dispose.  This will cause GetMessage to
2025         ignore all events for the window except for DestroyNotify.
2027         - In GetMessage, ignore messages except for DestroyNotify for
2028         zombie hwnds.
2029         
2030         * Control.cs: revert the is_recreating fix from the last
2031         ChangeLog.  It's definitely "right", but it breaks switching from
2032         an MDI form to a non-MDI form.  Will need to revisit that.
2034         * Hwnd.cs: add a zombie flag, which means "the
2035         client_window/whole_window handles are invalid, but we're waiting
2036         for the DestroyNotify event to come in for them".  Set the flag to
2037         false explicitly if setting WholeWindow/ClientWindow, and also
2038         when Disposing.
2039         
2040 2006-09-13  Chris Toshok  <toshok@ximian.com>
2042         * XplatUIX11.cs: rework window destruction slightly.
2044         - when destroying the windows associated with a control, we don't
2045         need 2 separate XDestroyWindow calls.  Just the one for the
2046         whole_window (or for client_window if whole_window is somehow
2047         IntPtr.Zero -- can this happen?) is enough.
2049         - reworked SendWMDestroyMessages slightly, so we always dispose
2050         the child control hwnd's after sending the messages.
2051         
2052         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
2053         the two places it was used (one was even using hwnd.Handle and the
2054         other hwnd.client_window.  ugh), adding another call in
2055         SendWMDestroyMessages.  We need this new call because now the
2056         DestroyNotify events in the queue will be ignored for the child
2057         controls (as their hwnd's were disposed, and the window id's
2058         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
2060         - this fixes bug #79326.
2062 2006-09-13  Chris Toshok  <toshok@ximian.com>
2064         * Control.cs: don't always set is_recreating to false at the end
2065         of RecreateHandle, since sometimes we're not done (and won't be
2066         until WndProc handles the WM_DESTROY message).  Also, set
2067         is_recreating to false in the WM_DESTROY handling code.  Part of
2068         the fix for bug #79326.
2070 2006-09-13  Miguel de Icaza  <miguel@novell.com>
2072         * X11DesktopColors.cs: Start the droppage of debugging messages.
2074         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
2076 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
2078         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
2080 2006-09-12  Chris Toshok  <toshok@ximian.com>
2082         * DataGrid.cs (get_ListManager): if the list_manager is null, try
2083         to create it using SetDataSource.  Fixes bug #79151.
2085 2006-09-11  Chris Toshok  <toshok@ximian.com>
2087         * XEventQueue.cs: add a DispatchIdle property.
2089         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
2090         either the queue is null, or the queue has DispatchIdle set to
2091         true.
2092         (DoEvents): set queue.DispatchIdle to false around the
2093         peek/translate/dispatch message loop in this method.  This keeps
2094         Application.Doevents from emitting idle events.  Part of the fix
2095         for #78823.
2097 2006-09-11  Chris Toshok  <toshok@ximian.com>
2099         * DataGrid.cs (set_DataSource): make this work for both the
2100         winforms/datagrid test and ReportBuilder.  It seems as though when
2101         we've created a ListManager (or maybe it's if we have a
2102         BindingContext?), when we set the DataSource it clears the
2103         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
2104         #79333.
2106 2006-09-11  Chris Toshok  <toshok@ximian.com>
2108         * XplatUIX11.cs: deal with queue being null, which happens in all
2109         the Clipboard functions.  Fixes one of the two problems mentioned
2110         in #78612.
2112 2006-09-11  Chris Toshok  <toshok@ximian.com>
2114         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
2115         button on various spots (including outside the menu) works closer
2116         to MS, and doesn't crash.  Fixes #79343.
2118 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
2120         * ListView.cs: Do not initialize item_sorter in init. To match MS,
2121         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
2122         and the internal comparer is set. When a new ListViewItemSorter is set,
2123         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
2124         was specified. No further processing is necessary if SortOrder is set
2125         to it's current value. If Sorting is modified to None, and View is
2126         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
2127         (either custom or our internal ItemComparer) to null, on 1.0 profile
2128         only set item_sorter to null if its our internal IComparer. If Sorting
2129         is modified to Ascending or Descending, then use our internal IComparer
2130         if none is set, and if the current IComparer is our internal one then:
2131         on 2.0 profile always replace it with one for new Sorting, and on 1.0
2132         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
2133         Enum.IsDefined to verify whether a valid View value is specified in
2134         its setter. Automatically sort listview items when listview is
2135         created. In Sort, do nothing if ListView is not yet created, or if
2136         no item_sorter is set (no Sorting was set, Sorting was explicitly set
2137         to None or ListViewItemSorter was set to null). Added Sort overload
2138         taking a bool to indicate whether the ListView should be redrawn when
2139         items are sorted (we use this in ListViewItemCollection to avoid double
2140         redraws). Modified our internal IComparer to take the sort order into
2141         account. In Add and AddRange methods of ListViewItemCollection, also
2142         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
2143         view), but use overload with noredraw option to avoid double redraw.
2144         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
2145         true when View is Tile, and do the same when attempting to set View to
2146         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
2147         for selected/checked indices, as it involves overhead when sorting is
2148         done while these collections are not used all that often. Instead
2149         we'll build the indices on demand. Modified IList implementation of
2150         CheckedIndexCollection to use public methods if object is int.
2151         Modified CheckedListViewItemCollection to hide checked items if
2152         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
2153         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
2154         IList implementation in SelectedIndexCollection to use public methods
2155         if object is int. Modified SelectedListViewItemCollection to hide
2156         selected items if listview is not yet created.
2157         * ListViewItem.cs: CheckedIndices list no longer needs to be
2158         maintained separately (see ListView changes). Also clone font, fixes
2159         test failure.
2161 2006-09-11  Mike Kestner  <mkestner@novell.com>
2163         * ComboBox.cs: if we are updating the contents of the currently
2164         selected index, refresh the control or the textbox selection.
2165         [Fixes #79066]
2167 2006-09-11  Mike Kestner  <mkestner@novell.com>
2169         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
2170         the 'specified' logic has been moved there.  This seems like a bug 
2171         in Control.cs, since our current SetBoundsCore completely ignores 
2172         the specified parameter.  Peter's commit seems to indicate that is 
2173         the way the MS control implementation works.  [Fixes #79325]
2175 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
2177         * XplatUI.cs: Set default_class_name to be composed
2178         of current domain id. This allows MWF to be loaded in multiple
2179         domains on Win32.
2181 2006-09-09  Miguel de Icaza  <miguel@novell.com>
2183         * X11Keyboard.cs: If we are unable to obtain the input method, do
2184         not call CreateXic to create the input context.   Should fix
2185         #78944/79276.
2187 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
2189         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
2190           Simplified gnome support by adding more pinvokes to get the
2191           icon for a file or mime type.
2193 2006-09-08  Jackson Harper  <jackson@ximian.com>
2195         * MenuAPI.cs: Deslect popup context menu items before closing the
2196         window, so that you don't see the previously selected item
2197         selected when you reopen the menu.
2198         * TextControl.cs: Update the cursor position even if we don't have
2199         focus.  This fixes typing in things like the ComboBox.  I'm not
2200         totally sure we should always set the visibility if we don't have
2201         focus, but couldn't find any corner cases where the cursor showed
2202         up when it shouldn't.
2204 2006-09-08  Chris Toshok  <toshok@ximian.com>
2206         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
2207         our arrays are length 256.  & 0xff before indexing.  Fixes the
2208         crash in bug #78077.
2209         
2210 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2212         * ThemeWin32Classic.cs: 
2213         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
2214         is true. Handle that check box too.
2216 2006-09-07  Chris Toshok  <toshok@ximian.com>
2218         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
2219         79244.
2221 2006-09-07  Chris Toshok  <toshok@ximian.com>
2223         * Control.cs: in set_BackColor only do the work if
2224         background_color != value.
2226         * XplatUIX11.cs: move the clearing of invalid areas (both client
2227         and nc) to the same block of code where we set (nc_)expose_pending
2228         to false.  That is, move it from PaintEventEnd to PaintEventStart,
2229         so things that cause invalidates from within OnPaint will trigger
2230         another call to OnPaint.  Fixes bug #79262.
2232 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
2234         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
2235         * FileDialog.cs: Fix typo
2237 2006-09-07  Jackson Harper  <jackson@ximian.com>
2239         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
2240         for tab pages if they have any.
2242 2006-09-06  Mike Kestner  <mkestner@novell.com>
2244         * Splitter.cs: use the "current" rect when finishing drag handle
2245         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
2247 2006-09-06  Mike Kestner  <mkestner@novell.com>
2249         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
2250         support offset splitters. [Fixes #79298]
2252 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
2254         * Mime.cs: Fixed a bug that could override the global mime type
2255           result.
2257 2006-09-05  Jackson Harper  <jackson@ximian.com>
2259         * TabControl.cs: Better calculation method for setting the slider
2260         pos. Prevents crashes on really wide tabs.
2261         - Draw Image on tab pages if an image list is used.
2263 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2265         * MonthCalendar.cs: When Font changes, the Size should be
2266         updated to fit the new font's space requirements.
2268 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
2270         * ListBox.cs: If the items are cleared with Items.Clear set
2271           top_index to 0.
2273 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2275         * MonthCalendar.cs: Handle arrow keys as input keys. Also
2276         fire DateChanged event instead of DateSelected event when
2277         the date was changed by keyboard interaction.
2279 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2281         * DateTimePicker.cs: Handle DateChanged for the associated
2282         month_calendar control, and set month_calendar.Font from 
2283         OnFontChanged method, as well as resize the height of the
2284         control when needed. Make PreferredHeight proportional.
2286 2006-09-01  Chris Toshok  <toshok@ximian.com>
2288         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
2289         properties.
2291         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
2293 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
2295         * FileDialog.cs: Set ClientSize instead of window size, to allow space
2296           for decorations (Fixes #79219)
2298 2006-09-01  Mike Kestner  <mkestner@novell.com>
2300         * ComboBox.cs: first stab at sorting plus some selection handling
2301         fixes to bring us more in line with MS behavior.  Also switches back
2302         to index based selection.  Alternative patches for index-based 
2303         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
2304         and latency@gmx.de on bug 78848.  I assume they were similar to this
2305         code I've had simmering in my tree forever.
2306         [Fixes #78848]
2308 2006-09-01  Chris Toshok  <toshok@ximian.com>
2310         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
2311         when setting list position guard against ending up with a -1 index
2312         (the other part of the fix for #78812).  Should probably make sure
2313         we don't need the analogous fix in the ItemDeleted case.
2315         * DataGrid.cs:
2316         - in SetDataSource, work around the fact that the way
2317         OnBindingContextChanged is invoked will cause us to re-enter this
2318         method.  I'll remove the hack once I investigate
2319         OnBindingContextChanged.
2321         - fix the logic in set_DataSource and set_DataMember (basically
2322         what to do if the other of the two is null.)
2323         
2324         - in OnListManagerItemChanged, we need to take into account the
2325         edit row when deciding whether or not to call RecreateDataGridRows
2326         (part of the fix for #78812).
2328 2006-09-01  Jackson Harper  <jackson@ximian.com>
2330         * Splitter.cs: Don't do anything if there is no control to affect
2331         (prevents us from crashing in weird tet cases).
2332         * TreeView.cs: Bounding box for the mouse movement reverting
2333         focus/selection back to previously selected node.  This matches
2334         MS, and makes the tree a lot more useable.
2335         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
2336         use clipping so they are not drawn.  This fixes when the control
2337         is set to have a transparent background, or if it was over an
2338         image.
2340 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
2342         * MimeIcon.cs: Improved handling for reading default icons when
2343           using gnome (2.16 made it necessary). Check and read svg icons
2344           first, then 48x48 and then 32x32 icons.
2346 2006-08-31  Chris Toshok  <toshok@ximian.com>
2348         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
2349         visible.
2351         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
2352         ProcessKeyPreview.  Fixes part of #77806.
2354         * DataGrid.cs: big patch.
2356         - revert the queueing up of DataSource/DataMember if inside
2357         BeginInit/EndInit calls.  That's not the way the datagrid achieves
2358         its delayed databinding.  Instead, call SetDataSource in
2359         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
2360         #78811.
2362         - Also, it wasn't mentioned in #78811, but the test case exhibits
2363         behavior that was lacking in our datagrid implementation - Columns
2364         that have mapping names that don't exist in the datasource's
2365         properties aren't shown.  Yuck.  To fix this I added the bound
2366         field to the column style, and basically any calculation to figure
2367         out anything about columns uses a loop to find the bound columns.
2368         still need to investigate if I can cache an array of the bound
2369         columns or if the indices must be the same.
2371         - When setting CurrentCell, we no longer abort if the cell being
2372         edited was in the add row.  This fixes the other part of #77806.
2374         - The new code also fixes #78807.
2375         
2376         * ThemeWin32Classic.cs: perpetrate the same disgusting
2377         column.bound field hack, and only render bound fields.
2379 2006-08-31  Chris Toshok  <toshok@ximian.com>
2381         * DataGridColumnStyle.cs: add bound field.  this field is true if
2382         the datasource has a property corresponding to the mapping name.
2384         * DataGridTableStyle.cs: set the bound field on the column styles
2385         depending on whether or not we have a column for that property.
2387 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
2389         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
2390           splitter control (fixes #79228)
2392 2006-08-31  Chris Toshok  <toshok@ximian.com>
2394         * DataGridColumnStyle.cs: we need to delay the assignment of
2395         property descriptor until the last possible moment due to the lazy
2396         databinding stuff in the datagrid.  Also, fix the exceptions
2397         thrown by CheckValidDataSource to match MS.
2399 2006-08-31  Jackson Harper  <jackson@ximian.com>
2401         * Form.cs: When activated select the active control, if there is
2402         no active control, we select the first control.
2403         * XplatUIX11.cs: If there is no focus control when we get a
2404         FocusIn event, find the toplevel form and activate it.  This
2405         occurs when you popup a window, it becomes the focus window, then
2406         you close that window, giving focus back to the main window.
2408 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2410         * MonthCalendar.cs: 
2411         * ThemeWin32Classic.cs: Cache Font in bold style, as well
2412         as StringFormat with Center alignments in MonthCalendar,
2413         instead of creating new ones when drawing the control. 
2414         Also, draw the month name in bold style.
2416 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
2418         * Control.cs:
2419           - PerformLayout(): It would seem MS performs the fill even if the 
2420             control is not visible (part of #79218 fix)
2421           - ResetBackColor(): Use the setter to reset the color, to allow
2422             overriders to catch the change.
2423         * Form.cs:
2424           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
2425           - CreateHandle(): dito (part of $79218 fix)
2426           - Don't set an icon if we have a dialog
2427         * ScrollableControl.cs:
2428           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
2429           - ScrollIntoView(): No need to scroll if control is already visible
2430             (resolves fixme and fixes #79218)
2432 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2434         * MonthCalendar.cs: Change proportions in SingleMonthSize
2435         to match the aspect of the original control.
2437 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
2439         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
2440           get updated when they get maximized.
2442 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
2444         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
2446 2006-08-29  Chris Toshok  <toshok@ximian.com>
2448         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
2450 2006-08-29  Jackson Harper  <jackson@ximian.com>
2452         * TreeView.cs: Need to track selected node and highlighted node,
2453         they aren't always the same thing, when the mouse is down on a
2454         node it is hilighted, but not selected yet.
2455         - Do the HideSelection stuff right
2456         - Need to focus on rbutton mouse down. And redraw selection when
2457         right click is mouse upped.
2459 2006-08-29  Mike Kestner  <mkestner@novell.com>
2461         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
2462         when SubItems.Count < Columns.Count.  [Fixes #79167]
2464 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
2466         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
2468 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
2470         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
2471           from X. Only send based on ConfigureNotify if we don't have the
2472           correct location in hwnd (if the window manager moved us)
2474 2006-08-28  Mike Kestner  <mkestner@novell.com>
2476         * ListView.cs: remove a TODO. 
2477         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
2478         [Fixes ListView part of #79166]
2480 2006-08-28  Mike Kestner  <mkestner@novell.com>
2482         * ListView.cs: move wheel handler to parent since it is focused
2483         instead of the item_control now.  [Fixes #79177]
2485 2006-08-28  Mike Kestner  <mkestner@novell.com>
2487         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
2488         when the control is focused. [Fixes #79171]
2490 2006-08-28  Mike Kestner  <mkestner@novell.com>
2492         * ListView.cs: size the item and header controls for empty and
2493         unscrollable views.
2494         * ThemeWin32Classic.cs: draw disabled backgrounds.
2495         [Fixes #79187]
2497 2006-08-28  Chris Toshok  <toshok@ximian.com>
2499         * Form.cs: remove unused "active_form" static field.
2501         * Hwnd.cs: lock around accesses to static windows collection.
2503         * Application.cs: lock threads in Exit ().
2505 2006-08-28  Chris Toshok  <toshok@ximian.com>
2507         * NativeWindow.cs: lock around accesses to window_collection.
2508         
2509 2006-08-28  Chris Toshok  <toshok@ximian.com>
2511         * Control.cs: err, fix this the right way, by locking on controls
2512         when using it.  not by making it synchronized.
2514 2006-08-28  Chris Toshok  <toshok@ximian.com>
2516         * Control.cs: make the static "controls" field synchronized, as it
2517         gets updated from multiple threads.
2519 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
2521         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
2522           Prevent other threads from exiting when calling thread sets quit state.
2523         * XEventQueue.cs: Added PostQuitState property
2525 2006-08-27  Chris Toshok  <toshok@ximian.com>
2527         * AsyncMethodData.cs: add a slot for the window handle.
2529         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
2530         window (the destination control's window, not the foster window).
2532         * Control.cs (BeginInvokeInternal): store the window's handle in
2533         the AsyncMethodData.
2534         
2536 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
2538         * XplatUIX11.cs:
2539           - PostQuitMessage: Removed resetting S.D display handle, we might have
2540             another loop started after calling PostQuitMessage (Fixes #79119)
2541           - Created destructor to reset S.D handle
2543 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
2545         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
2547 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
2549         * TextControl.cs (Insert): Update the caret position even if we don't
2550           have a handle yet, just don't call the driver in that case.
2551         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
2552           to the end of the new selection text (Fixes #79184)
2554 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
2556         * Form.cs (Activate): Only activate if the handle is created)
2557         * Control.c:
2558           - Mark window as invisible when it's disposed
2559           - Check if window handle is created when setting window visible, 
2560             instead of relying just on the is_created variable
2561           - Check if object is disposed when creating the control (Fixes #79155)
2563 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
2565         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
2566           when allowing layout again. Otherwise we re-generate the anchoring 
2567           distance to the border again and actually alter what the user wanted
2568           This is ugly, it'd be better if we used DisplayRectangle instead of
2569           ClientRectangle for Control.UpdateDistances, but that causes us to
2570           have other problems (initial anchoring positons would be wrong)
2571           (Fixes #78835)
2573 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
2575         * Control.cs:
2576           - The size and location setters shouldn't go directly to 
2577             SetBoundsCore, but to SetBounds, which triggers layout on the
2578             parent, then calls SetBoundsCore. (Related to fix for #78835)
2579           - SetBounds: Moved actual location update code into this function
2580             from SetBoundsCore, to match MS. Added call to PerformLayout if
2581             we have a parent (to trigger resizing of anchored parents if the 
2582             child size has changed (see testcase for #78835) 
2583         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
2584           new control code
2585         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
2587 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
2589         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
2590           System.Drawing when a toplevel window gets closed; there might
2591           be other toplevel windows belonging to the same app (Fixes #78052)
2593 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
2595         * FileDialog.cs: After reading FileDialog settings from mwf_config
2596           use Desktop prefix only if a real folder doesn't exist anymore.
2597         * FontDialog.cs: Added char sets.
2598           It is now possible to select the font, size or style with the
2599           textboxes.
2601 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
2603         * PrintPreviewDialog.cs: Use assembly name constants.
2605 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
2607         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
2608           scrollbar from whacking it's buttons)
2610 2006-08-24  Chris Toshok  <toshok@ximian.com>
2612         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
2613         in this patch (aggregating setting Left/Top/Width/Height to
2614         setting Bounds on the scrollbars), but the crux of the fix is in
2615         Recalculate, where we scroll by the remaining scroll_position if
2616         we're hiding a scrollbar.  The 2*$5 reward in the comment is
2617         serious.
2619 2006-08-24  Jackson Harper  <jackson@ximian.com>
2621         * MdiClient.cs:
2622         * MdiWindowManager.cs: If the form is made a non-mdi window we
2623         need to remove the form closed event so that closing forms works
2624         correctly.
2626 2006-08-24  Jackson Harper  <jackson@ximian.com>
2628         * Control.cs: Make IsRecreating internal so that the driver can
2629         check it
2630         - Temporarily remove the Hide when controls are removed, its
2631         making a whole bunch of things not work because visibility isn't
2632         getting reset elsewhere correctly
2633         * Form.cs: Need to do a full handle recreation when the mdi parent
2634         is set.
2635         * XplatUIX11.cs: If we are recreating handles don't dispose the
2636         HWNDs.  What was happening is the handles were being recreated in
2637         SendWMDestroyMessages, but then flow continued on in that method
2638         and destroyed the new handles.
2640 2006-08-23  Jackson Harper  <jackson@ximian.com>
2642         * Form.cs: MdiClient is always at the back of the bus
2643         * Control.cs: When the order of items in the collection is changed
2644         we need to reset the all_controls array
2645         - do the same sorta setup thats done when adding a control when a
2646         control is set on the collection.
2648 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
2650         * TextBoxBase.cs (get_Text): Return an empty array if our document
2651           is empty (fixes #79052)
2653 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
2655         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
2656           on WM_SYSCHAR messages (fixes #79053)
2658 2006-08-23  Chris Toshok  <toshok@ximian.com>
2660         * DataGrid.cs: fix flickering when scrolling vertically.
2662 2006-08-23  Chris Toshok  <toshok@ximian.com>
2664         * DataGrid.cs (EndEdit): only invalidate the row header when we
2665         need to.
2667 2006-08-23  Chris Toshok  <toshok@ximian.com>
2669         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
2670         methods.  fixes the flicker when scrolling around.
2672 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
2674         * FileDialog.cs: Making sure the control is created before we get a 
2675           chance to use it with BeginInvoke (Fixes #79096)
2677 2006-08-23  Chris Toshok  <toshok@ximian.com>
2679         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
2680         width to use when painting the rows.
2682 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
2684         * TextBoxBase.cs:
2685           - Throw ArgumentException if a negative value is passed to SelectionLength
2686           - Update the selection end if start is moved. end needs to be always
2687             after start. (Fixes #79095)
2688           - Track selection length; MS keeps the selection length even if start
2689             is changed; reset on all other operations affection selection
2691 2006-08-22  Jackson Harper  <jackson@ximian.com>
2693         * TreeView.cs: Make sure both scrollbars get displayed and sized
2694         correctly when the other bar is visible.
2695         - Use the original clip rectangle for checking if the area between
2696         the two scrollbars is visible, not the viewport adjusted clipping
2697         rectangle.
2699 2006-08-22  Jackson Harper  <jackson@ximian.com>
2701         * Binding.cs: We don't use IsBinding because it requires the
2702         control to be created, which really shouldn't be necessary just to
2703         set a property on the control.
2705 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2707         * ComboBox.cs: Some CB.ObjectCollection methods must throw
2708         ArgumentNullReferenceException when the argument is null.
2710 2006-08-21  Jackson Harper  <jackson@ximian.com>
2712         * Timer.cs: Track the thread that the timer is started in (NOT
2713         CREATED), this way messages for it will only be triggered on its
2714         queue.
2715         * XEventQueue.cs: Track the timers here, this makes timers per
2716         thread, like MS.
2717         * XplatUIX11.cs: The timers are moved to the XEventQueue.
2719 2006-08-19  Chris Toshok  <toshok@ximian.com>
2721         * XplatUIX11.cs: after further communication with pdb, we get the
2722         best of both worlds.  SetZOrder working for un-Mapped windows, and
2723         no X errors for un-mapped windows.
2725 2006-08-19  Chris Toshok  <toshok@ximian.com>
2727         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
2728         as it was causing pdn toolbars to not have the correct stacking.
2730 2006-08-18  Mike Kestner  <mkestner@novell.com> 
2732         * ListView.cs : guard against negative ClientArea.Width in scrollbar
2733         calculation.  Not sure why control should ever be setting a negative
2734         width though.  Fixes #78931.
2736 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2738         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
2739         null items in ObjectCollection class.
2740         * ListBox.cs.: Likewise.
2742 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
2744         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
2745           as the base method in ThemeWin32Classic should work fine.
2746           Fixed bug #78607.
2748 2006-08-18  Jackson Harper  <jackson@ximian.com>
2750         * Binding.cs: When validating if the value entered doesn't convert
2751         properly reset to the old value.
2752         * RadioButton.cs: Don't fire click when we get focus.
2754 2006-08-18  Jackson Harper  <jackson@ximian.com>
2756         * FileDialog.cs: Paint the selection on the directory combobox the
2757         same way as on MS. 
2759 2006-08-17  Jackson Harper  <jackson@ximian.com>
2761         * ErrorProvider.cs: Don't allow the error control to be selected.
2762         * Control.cs: Don't send the SetFocus messages, the control
2763         activation will do this, and if we do it blindly here validation
2764         does not work.
2766 2006-08-17  Jackson Harper  <jackson@ximian.com>
2768         * Control.cs:
2769         * ContainerControl.cs: Make validation events fire in the correct
2770         order.  TODO: For some reason the first validation event is not
2771         getting fired.
2773 2006-08-17  Mike Kestner  <mkestner@novell.com> 
2775         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
2777 2006-08-17  Mike Kestner  <mkestner@novell.com> 
2779         * ComboBox.cs : implement scroll wheel support for popped-down
2780         state. Fixes #78945. 
2782 2006-08-17  Jackson Harper  <jackson@ximian.com>
2784         * TreeView.cs: Specify treeview actions (old patch that didn't get
2785         committed for some reason).
2786         - Don't let the mouse wheel scroll us too far.  Just want to make
2787         the bottom node visible, not scroll it all the ways to the top.
2789 2006-08-17  Jackson Harper  <jackson@ximian.com>
2791         * XplatUIX11.cs: Mouse wheel events go to the focused window.
2793 2006-08-17  Mike Kestner  <mkestner@novell.com> 
2795         * ComboBox.cs : don't do mouseover selection in simple mode.
2797 2006-08-16  Jackson Harper  <jackson@ximian.com>
2799         * Form.cs: Fire the closing events for all the mdi child windows
2800         when a window is closed.  If the cancel args are set to true, the
2801         main window still gets the event fired, but it doesn't not close.
2802         * MdiWindowManager.cs: Do this closing cleanup in a Closed
2803         handler, instead of when the button is clicked, so cancelling the
2804         close works correctly.
2805         * ComboBox.cs: Send the mouse down to the scrollbar.
2807 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2809         * ListBox.cs: When passing 'null' to SelectedItem,
2810         set SelectedIndex to -1, to unselect items. This is the
2811         observed behaviour in .Net.
2813 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
2815         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
2816           MS flags saying there won't be any. (fixes #78800)
2817         * Control.cs (HandleClick): Made virtual
2819 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
2821         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
2822           cultures. Fixed bug #78399.
2824 2006-08-16  Jackson Harper  <jackson@ximian.com>
2826         * Form.cs: Use the MdiClients MdiChildren property to access
2827         MdiChildren instead of creating the array from the child controls.
2828         * MdiClient.cs: Maintain a separate array of the mdi children, so
2829         that insertion order is maintained when the Z-order is changed.
2831 2006-08-16  Mike Kestner  <mkestner@novell.com> 
2833         * ListView.cs : add an ItemComparer and default to it for sorting.
2834         Fixes #79076, but sorting needs a complete overhaul to be compat with
2835         MS.
2837 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
2839         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
2841 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
2843         * Hwnd.cs (Mapped): Properly traverse the tree
2845 2006-08-15  Chris Toshok  <toshok@ximian.com>
2847         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
2848         pass manager.Current.GetType() to ParseData.  It has to be the
2849         property type.  So, hold off doing the ParseData until we're in
2850         SetPropertyValue where we know the type.  This fixes the crash in
2851         #78821 but the textbox is still empty.
2853 2006-08-15  Chris Toshok  <toshok@ximian.com>
2855         * DataGrid.cs:
2856         - when we're scrolling, only call Edit() again if the
2857         current cell is still unobscured. Fixes bug #78927.
2858         - when handling mousedown on a cell, ensure the cell is visible
2859         before calling Edit.
2860         - remove the properties from DataGridRow, and remove the
2861         DataGridParentRow class altogether.
2862         
2864 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
2866         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
2867           fire OnTextChanged by ourselves. There's no point calling base,
2868           we don't set the base value anywhere else. Fixes #78773.
2870 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2872         * ListBox.cs: Call CollectionChanged when modifying
2873         an item from Items indexer, to update the actual items
2874         in the list box.
2876 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2878         * PrintDialog.cs: Small fixes for focus and a pair of checks,
2879         to match .Net behaviour.
2881 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
2883         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
2885 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
2887         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
2889 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
2891         * MessageBox.cs: Prevent potential NRE exception.
2892         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
2894 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
2896         * MessageBox.cs: Calculate the owner of a messagebox, also make
2897           it topmost. Fixes #78753
2899 2006-08-14  Chris Toshok  <toshok@ximian.com>
2901         * XplatUIX11.cs: A couple of fixes so that metacity will let us
2902         programmatically move windows.  first, set the PPosition hint as
2903         well as the USPosition hint.  Second include some code from pdb
2904         that sets the window type to NORMAL when we set the transient for
2905         hint.  This is because, in the absence of a window type, metacity
2906         thinks any window with TransientFor set is a dialog, and refuses
2907         to let us move it programmatically.  fascists.
2909 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
2911         * XplatUIX11.cs: When setting normal hints, take into consideration
2912           an different hints previously set so we don't delete them (fixes #78866)
2914 2006-08-12  Chris Toshok  <toshok@ximian.com>
2916         * ToolBarButton.cs: make Layout return a boolean, if something to
2917         do with the button's layout changed.
2919         * ToolBar.cs:
2920         - add another parameter to Redraw, @force, which all existing
2921           calls set to true.
2922         - make the Layout function return a boolean which is true if the
2923           layout has actually changed.  Redraw now uses this (and @force)
2924           to determine when to invalidate.  At present the only place
2925           where @force can be false is the call from OnResize, when
2926           background_image == null.  So, resizing a toolbar when the
2927           layout doesn't change results in no drawing.
2929 2006-08-12  Chris Toshok  <toshok@ximian.com>
2931         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
2932         the VScrollBar and HScrollbar reversed.  oops.
2934         * DataGrid.cs: fix the logic that assigns sizes to the implicit
2935         scrollbars.  we were assigning them twice (once in
2936         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
2937         therefore causing two scrollbar resizes (and redraws?) to happen
2938         per grid resize.
2940 2006-08-12  Chris Toshok  <toshok@ximian.com>
2942         * ToolBarButton.cs: redraw the entire button if the theme tells us
2943         to.
2945         * Theme.cs: add ToolBarInvalidateEntireButton.
2947         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
2948         buttons, just the border.
2950         * ThemeNice.cs: redraw the entire toolbar button since we need to
2951         draw the highlight image.
2953         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
2954         we need to redraw the entire button (not just the border).
2956 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
2958         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
2959           for vertical bars. Fixes the mismatches shown by #78513
2961 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
2963         * FileDialog.cs: If a saved/remembered path doesn't exist
2964           anymore, fall back to "Desktop".
2966 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
2968         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
2969           parent. It's apparently legal to not have one
2970         * XplatUIX11.cs:
2971           - SetZOrder: Don't try to set Z-Order on an unmapped window
2972           - CreateWindow: 0,0 are legal coordinates for a window. don't move
2973             it unless the coordinates are negative
2975 2006-08-10  Mike Kestner  <mkestner@novell.com>
2977         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
2978         when setting to null per msdn docs.  Fixes #78854.
2980 2006-08-10  Chris Toshok  <toshok@ximian.com>
2982         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
2983         flickering by setting a clip rectangle on the Graphics when we
2984         need to redraw just a particular menuitem.  Also, rename "OnClick"
2985         to "OnMouseDown" to reflect what it actually is.
2986         
2987         * Form.cs: track the OnMouseDown change.
2989 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
2991         * CommonDialog.cs: Properly inherit the CreateParams from the form
2992           and only change what we need. Fixes #78865
2994 2006-08-10  Chris Toshok  <toshok@ximian.com>
2996         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
2997         flickering in flat mode (and most of the flickering in general) by
2998         only invalidating the button border (and not the entire rectangle)
2999         when the state changes.  A couple of cases still flicker:
3000         ToggleButtons, and the dropdown arrow case when the user mouse
3001         ups.
3003 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
3005         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
3006           for german keyboards. Numlock state shouldn't affect the behaviour
3007           of the Del key. Fixes bug #78291.
3009 2006-08-10  Chris Toshok  <toshok@ximian.com>
3011         * ListControl.cs: remove the items.Clear line from BindDataItems,
3012         as this is the first thing done by both subclasses in their
3013         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
3014         passed -1, refresh the list.  This gets databinding working when
3015         the datasource is set on the list before the datasource is
3016         populated (as in wf-apps/ReportBuilder.)
3018         * ComboBox.cs: remove the argument to BindDataItems.  This call
3019         should really go away, and be initiated by the ListControl code.
3021         * ListBox.cs: same.
3023 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
3025         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
3026           if no data is in the document when the control is displayed
3028 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
3030         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
3031           yes (fixes #78806)
3032         * TextControl.cs: 
3033           - PositionCaret: Allow positioning of caret but don't call methods 
3034             requiring a handle if the window isn't created yet
3035           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
3036           - owner_HandleCreated: Don't position the caret, just update it's 
3037             location. User might have already set a different position
3039 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
3041         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
3042           windows. Screws up the returned coordinates for child windows. 
3043           Fixes #78825. I'm hoping this doesn't break something, since the
3044           code was explicitly put in 8 months ago, but no bug was attached.
3045           Menus still seem to work properly.
3047 2006-08-08  Chris Toshok  <toshok@ximian.com>
3049         * DataGrid.cs: make BeginInit/EndInit actually do what they're
3050         supposed to do - delay data binding until the EndInit call.  Also,
3051         make the table style collection's CollectionChangeAction.Refresh
3052         work properly.
3054         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
3055         (with action = Refresh) when a consituent table's MappingName is
3056         changed.
3058 2006-08-08  Chris Toshok  <toshok@ximian.com>
3060         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
3061         Invalidate, since changing the text can change the size of the all
3062         toolbar buttons.
3064 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
3066         * Form.cs (AddOwnedForm): Still need to add the form to our listif
3067           we don't have it yet
3069 2006-08-08  Chris Toshok  <toshok@ximian.com>
3071         * PrintControllerWithStatusDialog.cs: don't .Close() the status
3072         dialog, as this causes X errors later on, since we actually
3073         destroy the window.  Instead, .Hide() it.
3075 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
3077         * ComboBox.cs: Added focus reflection for popup window
3078         * XplatUIX11.cs: 
3079           - Removed transient setting for non-app windows for now, not sure it
3080             was needed
3081           - Fixed logic checking if we have captions when deciding 
3082             override_redirect, WS_CAPTION is two bits and a 0 check was not
3083             sufficient
3084           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
3085             complicated
3086         * Form.cs: 
3087           - AddOwnedForm: Don't just add the form to the list, call the property
3088             to ensure the driver is informed about the ownership as well
3089           - CreateHandle: Set the TopMost status in the driver if we have an owner
3090         * XplatUI.cs: Fixed debug statement
3092 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
3093         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
3094           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
3095           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
3096           TrackBarRenderer.cs: Make constructor private.
3097         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
3098         * ProfessionalColorTable.cs: Make properties virtual.
3100 2006-08-06  Duncan Mak  <duncan@novell.com>
3102         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
3103         is not changing.
3105 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
3106         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
3107           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
3108           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
3109           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
3110           Initial import of new 2.0 classes.
3112 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
3113         * Application.cs: Add 2.0 VisualStyles properties.
3115 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
3116         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
3117           XplatUIX11.cs: Create property to allow access to existing private
3118           variable "themes_enabled"
3120 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3122         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
3123         file size, as otherwise our class libraries fail using windows. Fixes
3124         bug #78759.
3126 2006-08-04  Jackson Harper  <jackson@ximian.com>
3128         * Form.cs:
3129         * XplatUIX11.cs: Move the toolwindow window manager creation into
3130         the X11 driver, this way on win32 we can let windows create/handle
3131         the toolwindows.
3133 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3135         * PrintDialog.cs: Remove some redundant checks, add some others,
3136         clean some code, and move the focus to the text boxes when the
3137         values are incorrect.
3139 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
3141         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
3143 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
3145         * NumericUpDown.cs: Setting the Minimum and Maximum is now
3146           handled correctly. Fixes bug #79001.
3148 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3150         * PrintDialog.cs: The "Copies" numeric up down must have
3151         set the Minimum property to 1; only if the value is bigger
3152         than 1, activate "Collate" check box. This is the behaviour of .Net.
3153         Also modify the Document elements only if it is not null.
3155 2006-08-03  Jackson Harper  <jackson@ximian.com>
3157         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
3158         length. (We have a larger array then actual node count).
3159                 
3160 2006-08-03  Jackson Harper  <jackson@ximian.com>
3162         * ComboBox.cs: Don't show selection by default.
3163         - The SelectAll isn't needed here, since the focus code should do
3164         that
3165         - DDL style lists to manual selection drawing, so when they
3166         get/lose focus they have to invalidate.
3168 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
3170         * TextBoxBase.cs: Don't always show all selections by default.
3172 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
3173         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
3174           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
3175           Fixed various typos.
3177 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
3179         * Control.cs: Removing the controls in a ControlCollection with
3180           Clear now hides the controls as expected. Fixes bug #78804. 
3182 2006-08-03  Jackson Harper  <jackson@ximian.com>
3184         * Control.cs: Revert previous focus patch, it breaks reflector.
3186 2006-08-03  Jackson Harper  <jackson@ximian.com>
3188         * ComboBox.cs: Cleanup selection and focus with the combobox.
3189         This also eliminates some duplicated keyboard code, since now
3190         everything is handled by the main class.
3191         - Make list selection work on mouse up instead of down, to match
3192         MS.
3194 2006-08-02  Jackson Harper  <jackson@ximian.com>
3196         * Control.cs: Setting focus needs to go through the whole
3197         selection mechanism.
3199 2006-08-02  Chris Toshok  <toshok@ximian.com>
3201         * PrintPreviewDialog.cs: change MinimumSize to use
3202         base.MinimumSize so it works.
3204 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
3206         * TextControl.cs:
3207           - UpdateCaret: Added sanity check in case caret isn't defined yet
3208           - Line.Delete: Now updating selection and caret markers if we're
3209             transfering a node (Properly fixes #78323)
3210           - SetSelectionEnd: Added sanity check
3211         * TextBoxBase.cs: Removed broken attempt to fix #78323
3213 2006-08-01  Chris Toshok  <toshok@ximian.com>
3215         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
3216         Close() call is handled in Form, not here.
3218 2006-08-01  Chris Toshok  <toshok@ximian.com>
3220         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
3221         layout/rendering.
3223         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
3224         for sizes < 100% zoom.  The code now aggressively attempts to keep
3225         from calling document.Print (), and tries not to use the scaling
3226         g.DrawImage whenever possible (it still does if you scale to >
3227         100%, since usually that involves huge images).
3229         * PrintPreviewControl.cs: hook up the close button.
3231 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
3232         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
3233           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
3234           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
3235           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
3236           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
3237           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
3238           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
3239           Removed [Serializable] for 2.0 Event Handlers.
3241 2006-07-31  Jackson Harper  <jackson@ximian.com>
3243         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
3244         * TextControl.cs: Uncomment out the body of this method.
3246 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
3248         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
3249           standard cursors.
3251 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
3253         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
3254           that embed TextBox and need selections visible even if textbox is not
3255           focused to enforce that behaviour.
3256         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
3257           selection drawing
3259 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
3261         * TextControl.cs:
3262           - Added new SetSelectionStart/SetSelectionEnd overloads
3263           - Fixed viewport width assignment to be accurate
3264           - Adjusted alignment line shift calculations to allow cursor on right
3265             aligned lines to be always visible at the right border (like MS)
3266         * TextBoxBase.cs:
3267           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
3268           - TextBoxBase_SizeChanged: recalculating canvas on size changes
3269           - CalculateScrollBars: Use ViewPort size instead of window size, to
3270             properly consider space occupied by the border and scrollbars 
3271             (Fixes #78661)
3272           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
3273             calculations; no longer leaves artifacts
3274           - CaretMoved: Adjusted window scrolling to match MS and fixed several
3275             calculation bugs (Still missing right/center align calculations)
3277 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
3279         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
3280           use of both scroll rect and clip rect, as they do the same.
3282 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
3284         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
3285           in the event handler (fixes #78912)
3287 2006-07-31  Chris Toshok  <toshok@ximian.com>
3289         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
3290         grid.ListManager.Count, since grid.ListManager might be null.
3291         This of course begs the question "why are we drawing rows for a
3292         grid with no list manager (and therefor no rows)?"  Fixes the
3293         crash in bug #78929.
3295 2006-07-31  Chris Toshok  <toshok@ximian.com>
3297         * RelatedPropertyManager.cs: Don't always chain up to the parent
3298         ctor.  instead, call SetDataSource if the parent's position is !=
3299         -1.  Fixes the crash in #78822.
3301 2006-07-31  Chris Toshok  <toshok@ximian.com>
3303         * DataGrid.cs (get_ListManager): use field instead of property
3304         accessors for datasource and datamember.
3305         (RowsCount): make internal again.
3306         (OnMouseDown): end edits before resizing columns/rows.
3307         (OnMouseUp): restart edits after resizing columns/rows.
3309 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
3311         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
3312           This fixes the situation where the last set cursor is displayed
3313           whenever the mouse is over scrollbars.
3315 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3317         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
3318         Document properties, as well as initial values.
3320 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
3322         * XplatUIWin32.cs (SetBorderStyle): Setting both border
3323           and ClientEdge results in a 3-pixel border, which is
3324           wrong.
3326 2006-07-28  Jackson Harper  <jackson@ximian.com>
3328         * TreeNodeCollection.cs: Fix the clear method.
3329         - Fix the Shrink also
3331 2006-07-27  Jackson Harper  <jackson@ximian.com>
3333         * TreeView.cs: Make sure the visible order is computed when we
3334         attempt to size the scrollbars (for trees that mess with the
3335         scrolling when they shouldn't.
3336         - Make sure to give the scrollbars valid values.
3338 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
3340         * XplatUIX11.cs: Move motion compression code to where it
3341           has less performance impact
3343 2006-07-26  Jackson Harper  <jackson@ximian.com>
3345         * UpDownBase.cs: When the control is selected make the child
3346         controls non selectable, so that a click on them won't do a
3347         focus/unfocus cycle.
3348         - Don't give focus to the text box when the spinner is selected.
3349         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
3351 2006-07-26  Chris Toshok  <toshok@ximian.com>
3353         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
3354         satisfied with this solution.  If the bitmaps are small, we should
3355         just cache them in the PrintPreviewDialog and draw them here.
3356         Also, the layout is broken for the 2-up and 3-up cases.
3358         * Theme.cs: add PrintPReviewControlPaint.
3360         * PrintPreviewDialog.cs: first pass implementation.
3362         * PrintPreviewControl.cs: first pass implementation.  No
3363         scrollbars yet.
3365         * PrintDialog.cs: only validate fields if that particular portion
3366         of the UI is enabled.  Also, set the document's controller to a
3367         PrintControllerWithStatusDialog wrapping the document's print
3368         controller.
3370         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
3371         bring up a SaveFileDialog (i hope we don't want to match the
3372         behavior of the crappy windows file entry) and set the
3373         PrinterSettings.PrintFileName accordingly.
3375 2006-07-26  Jackson Harper  <jackson@ximian.com>
3377         * ContainerControl.cs: Add a field that disables auto selecting
3378         the next control in a container when the container is activated.
3379         * UpDownBase.cs: Don't select the text box when the up down is
3380         selected.
3382 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
3384         * XEventQueue.cs: Added methods for peeking (used for compression
3385           of successive events)
3386         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
3387           mouse move events (fixes #78732)
3389 2006-07-25  Jackson Harper  <jackson@ximian.com>
3391         * UpDownBase.cs: Use an internal class for the textbox so that we
3392         can control focus.  the updown control should always have focus,
3393         if either the text area or the buttons are clicked.
3394         - Send the key messages to the textbox, since it never actually
3395         has focus
3396         - Activate and decativate the textbox caret.
3398 2006-07-24  Jackson Harper  <jackson@ximian.com>
3400         * Control.cs: Use the directed select when selecting a control,
3401         this way the container controls override will get called and the
3402         whole ActiveControl chain will get triggered.  TODO: probably need
3403         to make sure this gets done everywhere instead of the old
3404         Select(Control).
3405         * ContainerControl.cs: Implement the directed Select method to
3406         find and activate the correct child control.    
3407         
3408 2006-07-22  Mike Kestner  <mkestner@novell.com>
3410         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
3411         menu handling code so that clicks without a grab work too.
3412         [Fixes #78914]
3414 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
3416         * FileDialog.cs: Enable the BackButton when dirstack has one element.
3417           Added some small optimizations.
3419 2006-07-21  Matt Hargett  <matt@use.net>
3421         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
3423 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
3425         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
3426           tests pass and match MS in some strange border cases.
3428 2006-07-21  Chris Toshok  <toshok@ximian.com>
3430         * ThemeWin32Classic.cs: handle drawing of the relation links and
3431         parent row buttons.
3433         * Theme.cs: change args to DataGridPaintParentRow.
3435         * DataGrid.cs: Don't use controls for the relation links and
3436         parent buttons, so we have to handle all their interactions in
3437         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
3438         when we're navigating through child tables, so we can reinstate
3439         selection, expanded state, current cell, etc.
3441 2006-07-20  Chris Toshok  <toshok@ximian.com>
3443         * ToolBar.cs: When we redraw a button, for whatever reason,
3444         there's no reason to redraw the entire toolbar.  Also, don't call
3445         Control.Refresh from within Redraw, as it's much heavier than
3446         Invalidate (which is really what we want).
3448 2006-07-20  Chris Toshok  <toshok@ximian.com>
3450         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
3451         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
3452         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
3453         traces from within a debug IBindingList datasource
3454         (in mono/winforms/datagrid) for *days*, I've finally gotten things
3455         to work in a similar fashion.
3457 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3459         * ListBox.cs: Don't call Sort () when setting 
3460         the Sorted property to false (avoid an unnecessary sort).
3462 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3464         * ListControl.cs: DataSource should throw an ArgumentException
3465         instead of a normal exception when the argument is not of the 
3466         correct type.
3468 2006-07-20  Mike Kestner  <mkestner@novell.com>
3470         * Control.cs: add InternalPreProcessMessage to allow us to steal
3471         key events before MWF gets its paws on them.  Adapted from a
3472         suggestion by eno.
3473         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
3474         up/down/left/right navigation. Override the new internal control
3475         method to steal the events since they never make it to WndProc.
3476         * ToolBarButton.cs: don't worry about pushed when setting hilight
3477         since the drawing code prefers pushed to hilight. Invalidate on 
3478         Hilight changes. Fixes #78547 and #78525.
3480 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
3482         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
3483           the canvas size. Fixes #78868
3485 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
3487         * Splitter.cs: Track requested split position until first layout
3488           is performed. Fixes #78871
3490 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
3492         * Application.cs: Removed code that forces 1.x for the version
3493           number if the version started with 0. Not sure why that code was
3494           there and I couldn't find any bugs that indicated we needed it.
3495           Fixes #78869
3497 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
3499         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
3500           ResetDefaults(), just write some output to the console until it's
3501           implemented. Fixes bug #78907 for now. Eliminated two warnings.
3503 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
3505         * PropertyGridView.cs: set StartPosition of drop down forms
3506         so they appear in correct initial spot.  Fixes #78190.
3508 2006-07-19  Mike Kestner  <mkestner@novell.com>
3510         * ThemeWin32Classic.cs: use parent background color when drawing
3511         flat toolbars.  Restructure the conditionals to make sure non-flat
3512         non-Divider toolbars are filled too.  Fixes #78837.
3514 2006-07-19  Mike Kestner  <mkestner@novell.com>
3516         * ListBox.cs: Sort on collection changes even if the handle
3517         isn't created yet.  Fixes #78813.
3519 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3521         * ListControl.cs: DisplayMember should never be null,
3522         and now we assign String.Empty when null is passed to it (this
3523         is the .Net way).
3525 2006-07-17  Mike Kestner  <mkestner@novell.com>
3527         * ListViewItem.cs: restructure Font and subitem Font handling 
3528         to hold a specific font and refer back to owner on null.
3529         Fixes #78761.
3531 2006-07-17  Mike Kestner  <mkestner@novell.com>
3533         * ToolBar.cs: bandaid for side-effect of previous patch which was
3534         discarding explicit heights for non-AutoSize toolbars.  Need to
3535         extend my format tester to deal with AutoSize=false. Fixes #78864.
3537 2006-07-15  Jackson Harper  <jackson@ximian.com>
3539         * LabelEditTextBox.cs:
3540         * TreeView.cs: Use a new LabelEdit class for node editing, this
3541         class automatically 'closes' itself when it gets the enter key or
3542         loses focus.
3543         - Use the client rectangle when setting the trees scrollbars, so
3544         border style is taken into account.
3545         
3546 2006-07-14  Jackson Harper  <jackson@ximian.com>
3548         * TreeNode.cs:
3549         * TreeView.cs: Make the editing work similar to MSs, firing the
3550         events correctly and ending edits correctly.
3552 2006-07-14  Mike Kestner  <mkestner@novell.com>
3554         * ToolBarButton.cs:
3555         * ToolBar.cs: layout restructuring and redraw enhancements to support
3556         formatting changes gracefully, like setting TextAlign, ImageList, 
3557         ButtonSize, and Appearance.  Handles explicit button sizing quirks
3558         of the MS controls.  Things like flat toolbars ignoring button size
3559         but becoming constant sized at the largest button's size.  Normal
3560         toolbars with an image set cannot be shrunk smaller than the image,
3561         but text can be clipped/ignored.
3562         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
3563         is zero.  Seems like DrawString should be smart enough to not put
3564         anything on screen though. Also trim labels and ellipsize at the char
3565         boundary, not word.
3566         Fixes #78711 and #78483.
3568 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
3570         * FolderBrowserDialog.cs: Disable "New Folder" button and
3571           "New Folder" contextmenu menuitem if a folder like "My Computer"
3572           is selected.
3574 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
3576         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
3577         * FolderBrowserDialog.cs:
3578           - Use MWFConfig to store and read size and position settings
3579           - Added code to create a new folder (button or context menu).
3580             Use TreeView labeledit to change the name of the new folder.
3582 2006-07-14  Jackson Harper  <jackson@ximian.com>
3584         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
3585         when the tree is scrolled we end editing.
3587 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
3589         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
3590           Down arrows
3592 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
3594         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
3595         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
3596         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
3597         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
3598         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
3599         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
3600         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
3601         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
3602         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
3603         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
3604         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
3605         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
3606         ListViewItemSelectionChangedEventHandler.cs,
3607         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
3608         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
3609         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
3610         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
3611         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
3612         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
3613         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
3614         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
3615         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
3616         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
3617         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
3618         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
3619         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
3620         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
3621         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
3622         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
3623         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
3624         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
3625         WebBrowserNavigatingEventHandler.cs, 
3626         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
3628 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
3630         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
3631         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
3632         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
3633         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
3634         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
3635         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
3636         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
3637         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
3638         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
3639         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
3640         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
3641         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
3642         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
3643         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
3644         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
3645         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
3646         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
3647         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
3648         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
3649         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
3650         ListViewItemStates.cs, MaskFormat.cs: Added
3652 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
3654         * PropertyGridView.cs: Fix keyboard navigation of drop down.
3655         Patch from eno for bug 78558.
3656         
3657 2006-07-13  Jackson Harper  <jackson@ximian.com>
3659         * TreeView.cs: When an edit is finished make sure that the
3660         selected node is visible.
3661         - When setting the top/bottom use the scrollbars is_visible, so
3662         everything will be set correctly even if the tree isn't visible
3663         yet.
3665 2006-07-13  Jackson Harper  <jackson@ximian.com>
3667         * ComboBox.cs: Revert the item->index part of my previous patch.
3668         * TreeView.cs: Use LostFocus instead of Leave for detecting when
3669         the edit box has lost focus (duh).
3670         - Just make the edit box not visible when we get return, that will
3671         take the focus, which will call EndEdit
3672         * TreeNode.cs When we start editing, notify the treeview.
3674 2006-07-12  Jackson Harper  <jackson@ximian.com>
3676         * ComboBox.cs: Clear out old items before setting the item list.
3677         This prevents databound controls from having their items added
3678         twice.
3679         - Switch the combobox to use indices whereever possible instead of
3680         using Item's.  This allows usto navigate through lists that have
3681         more then one item with the same string value (ie a, b, b, a).
3682         - Scroll the listboxes scrollbar when a non visible item is
3683         highlighted
3684         - Allow keypress to cycle through all the possible values. For
3685         example if you have b1, b2, b3 and hold down the B key all the
3686         values will be cycled through.
3687         
3688 2006-07-12  Jackson Harper  <jackson@ximian.com>
3690         * TextBoxBase.cs:
3691         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
3692         this using the internal methods.
3693         * Control.cs: Add OnGotFocusInternal.  A new method that allows
3694         controls to "override" OnGotFocus and change focus behavior if
3695         needed.
3696         - Same thing for LostFocus
3697         * ComboBox.cs: Pass off focus to the text control properly.
3699 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
3701         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
3702         * FolderBrowserDialog.cs: Almost a complete rewrite.
3703           - Better support for Environment.Specialfolders
3704           - Added support for MWFVFS
3705           - Made setting SelectedPath work
3707 2006-07-12  Jackson Harper  <jackson@ximian.com>
3709         * Control.cs: Optimze getting all the controls.
3711 2006-07-11  Jackson Harper  <jackson@ximian.com>
3713         * ContainerControl.cs: Override SETFOCUS in the container control,
3714         so that it is not selected on mouse click.
3716 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
3718         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
3719           Hopefully we will have a better way once all of focus is complete.
3721 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
3723         * ThemeWin32Classic.cs: Commented out some debug code and fixed
3724           a compile error with csc.
3726 2006-07-11  Jackson Harper  <jackson@ximian.com>
3728         * Control.cs: When hiding a control only select the next control
3729         if the current control was focused.
3730         - Don't handle enter/leave when setting/killing focus, this is
3731         done by the container control.
3732         - Remove is_selected, it's not needed anymore.
3733         - Add utility methods for selecting a child control, and for
3734         firing the Enter/Leave events.
3735         * ContainerControl.cs: When a control is activated fire the
3736         enter/leave events.
3737         - Don't wrap when processing the tab key, so that focus can be
3738         moved outside of the container.
3739         - Use the correct active control
3741 2006-07-11  Jackson Harper  <jackson@ximian.com>
3743         * ComboBox.cs: Remove some debug code that was blinding me.
3744         * UpDownBase.cs: These controls actually aren't implicit, they are
3745         visible to the user.
3747 2006-07-10  Chris Toshok  <toshok@ximian.com>
3749         * DataGrid.cs: move back to the is_adding boolean field.  god i
3750         hate this is_editing/is_adding/is_changing stuff.
3752 2006-07-10  Chris Toshok  <toshok@ximian.com>
3754         * DataGridTableStyle.cs: just check if the property type is bool.
3755         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
3756         Don't use CanRenderType.
3758         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
3759         if our text == NullText.  Remove CanRenderType.
3761         * DataGridBoolColumn.cs: nuke CanRenderType.
3763         * DataGrid.cs: reenable some code to end the current edit inside
3764         of set_CurrentCell.  This fixes the other 1.1.16 regression.
3765         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
3766         Also, remove the visible_row_count arg from CalcRowHeaders, since
3767         we don't need to worry about the actual height of the area.
3769 2006-07-10  Chris Toshok  <toshok@ximian.com>
3771         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
3772         mode, just return.
3774         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
3775         the real sense of the IsInEditOrNavigateMode property (true =
3776         navigate, false = edit).  Also, update OnKeyPress to reflect this.
3778         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
3779         column style exists, we still need to set its property descriptor
3780         to match up with our list manager.
3782 2006-07-10  Chris Toshok  <toshok@ximian.com>
3784         * ThemeWin32Classic.cs: implement the new row/header painting
3785         approach.  The parent row painting will likely go away and
3786         replaced with label controls, but the rest seems to work ok (and
3787         efficiently).
3789         * Theme.cs: change the way we draw datagrid rows.  we don't draw
3790         the row headers as a block now.  Instead we draw them in the
3791         normal draw-row loop.  Add some calls for drawing parent rows and
3792         relation rows.
3794         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
3795         a default table style.  Set the defaults from ThemeEngine.Current,
3796         not SystemColors.  Fix lots of misc issues with property setters.
3798         * DataGrid.cs: move loads of style information out of this class
3799         as it's being duplicated with DataGridTableStyle.  keep track of a
3800         special DataGridTableStyle for the properties we used to mirror
3801         here.  Switch all the style properties to access this table style
3802         instead of instance fields of this class.  Also add a internal
3803         class to represent parent rows (more needs to be stored here, like
3804         the selection state from the parent table, as well as the
3805         expansion state.)  Also, for datasources with relations, do the
3806         right thing for collapse/expand, and add support for the
3807         navigation/parent row buttons.
3809         Lastly, fix the crash in the 1.1.16 build.
3811         * GridTableStylesCollection.cs: make the explicit interface
3812         implementations call the class's methods as opposed to duplicating
3813         them.
3815         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
3816         0 so the text doesn't jump around when we move the cursor.
3818 2006-07-10  Jackson Harper  <jackson@ximian.com>
3820         * TextBoxBase.cs:
3821         * ListBox.cs: Match MS's ToString (this makes debugging focus
3822         stuff infinitely easier).
3824 2006-07-10  Jackson Harper  <jackson@ximian.com>
3826         * Control.cs (SelectNextControl): When checking the control's
3827         parent use this instead of ctrl.parent so that null can be passed
3828         to SelectNextControl. (I have unit tests for this).
3829         - Remove unused var.
3831 2006-07-10  Chris Toshok  <toshok@ximian.com>
3833         * CurrencyManager.cs: correct one regression, the removal of the
3834         finalType field.  Also, add a MonoTODO on CanAddRows, implement
3835         Refresh() correctly, and fix some event emission in
3836         ListChangedHandler.
3838 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
3840         * FileDialog.cs: Don't use brackets for new folders if they exist
3841           under *nix. Instead use -(number of existing folders +1).
3843 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
3845         * FileDialog.cs:
3846           - Fixed really nasty bug #78771
3847           - Don't block the whole GUI when reading directories with a lot of
3848             entries. Use an other thread instead and call BeginInvoke to
3849             update the ListView in MWFFileView
3851 2006-07-07  Chris Toshok  <toshok@ximian.com>
3853         * Control.cs (Dispose): release any Capture when disposing.
3855 2006-07-07  Chris Toshok  <toshok@ximian.com>
3857         * LinkLabel.cs (Select): if we chain up to the parent, set
3858         focused_index to -1 so we'll search for the first available link
3859         the next time the user tabs into us.  Also, if the direction is
3860         backward and focused_index == -1, start the search from the last
3861         element.
3863 2006-07-07  Chris Toshok  <toshok@ximian.com>
3865         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
3866         is beyond the end of the text, don't do anything.
3867         (CreateLinkPieces): set our ControlStyles.Selectable based on
3868         whether or not we have any links.
3869         (Link.Invalidate): use a loop instead of foreach.
3870         (Link.set_Start): null out owner.sorted_links so it'll be
3871         recreated by CreateLinkPieces.
3873 2006-07-06  Chris Toshok  <toshok@ximian.com>
3875         * LinkLabel.cs: revert the SetStyle change.
3877 2006-07-06  Chris Toshok  <toshok@ximian.com>
3879         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
3880         (OnEnableChanged): s/Refresh/Invalidate
3881         (OnGotFocus): if we have a focused index already, refocus it (so
3882         if we mouse out/in to the window it'll focus the right link).
3883         (OnKeyDown): move the tab handling out of here.
3884         (OnLostFocus): don't set focused_index to -1, so we can refocus it
3885         when we lose focus.
3886         (OnMouseDown): don't Capture here - Control handles it.  Also,
3887         focus the active link.
3888         (OnMouseUp): don't deal with Capture.
3889         (OnPaintBackgroundInternal): remove.
3890         (OnTextAlignChanged): CreateLinkPieces before calling the
3891         superclass's method.
3892         (OnTextChanged): call CreateLinkPieces before calling superclass's
3893         method.
3894         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
3895         move around.
3896         (Select): implement this, moving the selection between different
3897         links, and call parent.SelectNextControl if we don't have another
3898         link to focus in the given direction.
3899         (CreateLinkPieces): call Invalidate instead of Refresh.
3900         
3901 2006-07-06  Chris Toshok  <toshok@ximian.com>
3903         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
3904         new LinkLabel internals.
3906         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
3907         over pieces looking for active/focused/etc links.  also, deal with
3908         runs of text (and links) with embedded \n's in them, and use
3909         MeasureCharacterRanges instead of MeasureString to figure out the
3910         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
3911         two-step.
3913 2006-07-04  Jackson Harper  <jackson@ximian.com>
3915         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
3916         XKB or key auto repeat, do it manually.  Without key auto repeat,
3917         when a key is held down we get key press, key release, key press,
3918         key release, ... with auto repeat we get key press, key press, key
3919         press ..., and then a release when the key is actually released.
3921 2006-07-03  Jackson Harper  <jackson@ximian.com>
3923         * TabControl.cs:
3924         * ThemeWin32Classic.cs: Tabs do not obey normal background color
3925         rules, they are always control color regardless of the background
3926         color.
3928 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
3930         * FileDialog.cs: Added internal class MWFConfig.
3931           Removed Registry support and replaced it with support for the new
3932           MWFConfig class. See MWFConfig comments for more information.
3934 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
3936         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
3937           rectangle. Added some patches from eno from bug #78490 and fixed
3938           the arrow position for small up and down CPDrawScrollButtons.
3940 2006-06-30  Jackson Harper  <jackson@ximian.com>
3942         * InternalWindowManager.cs: Remove some debug code.
3943         * Form.cs: When an MdiParent is set to null, the window is
3944         "detatched" and becomes a normal window.
3945         * MdiClient.cs: Don't bring the new child form to the front until
3946         it is activated (setting it as active does this), this makes the
3947         previously active forms titlebar get redrawn as inactive.
3949 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
3951         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
3952           with later controls
3954 2006-06-29  Mike Kestner  <mkestner@novell.com>
3956         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
3957         arrow in keynav state.  Fixes #78682.
3959 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
3961         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
3962           order (fixes #78393)
3964 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
3966         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
3967           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
3968           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
3969           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
3970           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
3971           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
3972           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
3973           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
3974           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
3975           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
3976           enumerations (FlagsAttribute, SerializableAttribute, added/removed
3977           values)
3979 2006-06-28  Mike Kestner  <mkestner@novell.com>
3981         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
3983 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
3985         * PropertyGrid.cs,
3986           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
3987           item lines from other area (It also makes BackColor consistent and
3988           compatible with .NET). Fixed bug #78564.
3990 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
3992         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
3993         Patch from Eno for #78555.
3995 2006-06-27  Chris Toshok  <toshok@ximian.com>
3997         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
3999         * DataGridColumnStyle.cs: same.
4001         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
4002         
4003         * DataGridDrawingLogic.cs: nuke.
4005 2006-06-27  Chris Toshok  <toshok@ximian.com>
4007         * DataGridTableStyle.cs: clean up the constructors, and build the
4008         list of child relations for this table.  I have no idea if this is
4009         where we should be doing it (it probably isn't), but since we're
4010         already iterating over the properties..
4012         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
4013         struct and array for keeping track of row information, similar to
4014         what's shown in a hack on
4015         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
4017         * Theme.cs: be consistent about the naming of DataGrid methods,
4018         prefering ColumnWidths and RowHeights over columnsWidths and
4019         RowsHeights.
4021         * ThemeWin32Classic.cs: same, and also add support for variable
4022         sized rows (and the +/- expansion icons for related rows).
4024 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
4026         * TextBoxBase.cs: Applied Eno's patch from #78660
4028 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
4030         * Form.cs (ScaleCore): We don't want to scale our form if it's
4031           state is minimized or maximized, but we still need to scale our
4032           child windows. Also, added try/finally block to ensure layout
4033           gets reset (Fixes #78697)
4035 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
4037         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
4039 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
4041         * Form.cs: Fixed c+p error and added check to resize form if minimum
4042           size is bigger than current size (Fixes #78709)
4044 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
4046         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
4048 2006-06-26  Mike Kestner  <mkestner@novell.com>
4050         * ComboBox.cs: only do Keypress handling in the combo when there  
4051         are items in the collection. Fixes #78710.
4053 2006-06-26  Chris Toshok  <toshok@ximian.com>
4055         * Binding.cs: make this work bi-directionally.  also, clear up
4056         other mixups between Push/Pull Data (e.g. we're supposed to pull
4057         data when validating).
4059         * BindingManagerBase.cs: trim some fully qualified collection
4060         types.
4062         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
4064 2006-06-23  Chris Toshok  <toshok@ximian.com>
4066         * PropertyManager.cs: It appears (according to the unit tests)
4067         that PropertyManager doesn't use
4068         PropertyDescriptor.AddValueChanged to track propery value changes
4069         in its datasource, but uses the same scheme as Binding, where it
4070         looks for a <Property>Changed event and binds to it.
4072         Also, according to the docs, IsSuspended always returns false for
4073         a property manager with a non-null datasource.
4075 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
4077         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
4078           need to update the actual DialogResult. (Fixes #78613)
4080 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
4082         * Form.cs (ShowDialog): Release any captures before running the
4083           new message pump (fixes #78680)
4085 2006-06-22  Mike Kestner  <mkestner@novell.com>
4087         * ListView.cs: Layout column widths properly in details mode even 
4088         if HeaderStyle.None is set.  Fixes #78691.
4090 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
4092         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
4094 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
4096         * Control.cs (ContainsFocus): Using new driver method to get focused
4097           window, instead of trying to use internal tracking var, which can
4098           recursion issues (Fixes #78685)
4099         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
4100           XplatUIWin32.cs: Added GetFocus method to return focused window
4102 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4104         * ColorDialog.cs: when the mouse button is pressed inside the color
4105         matrix, don't let the cursor move out of it until the button is
4106         released, which is the behavior on windows. Changed 'colours' by
4107         'colors' to use the same word consistently.
4109 2006-06-21  Chris Toshok  <toshok@ximian.com>
4111         * DataGrid.cs: add in some basic navigation stuff (navigating to a
4112         child relation and back, using a stack).  Also, remove
4113         GetDataSource and the code that calls it - it's not needed.  Also,
4114         track CurrencyManager.ListName's removal.
4116 2006-06-21  Chris Toshok  <toshok@ximian.com>
4118         * CurrencyManager.cs: push some of the original type checking from
4119         BindingContext.CreateBindingManager to here, and remove some of
4120         the finalType stuff.  Need more tests to make sure I've got the
4121         ListName part right, and we might need more in SetDataSource.
4123         * PropertyManager.cs: add a ctor that takes just the datasource,
4124         and no property name.  Make SetDataSource work with a null
4125         property_name, and make Current return the data_source if the
4126         property descriptor is null.  this makes 'string foo = "hi";
4127         BindingContext[foo].Current' return "hi" as it should.
4129         * RelatedCurrencyManager.cs: make this code more generic - there's
4130         no reason the parent manager has to be CurrencyManager, and
4131         there's no reason to pass the DataRelation.  It suffices to use a
4132         BindingManagerBase and PropetyDescriptor.
4134         * RelatedPropertyManager.cs: make a similar change here.
4135         
4136         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
4137         flower I knew it could be.
4139 2006-06-20  Chris Toshok  <toshok@ximian.com>
4141         * PropertyManager.cs: the PropertyChangedHandler is invoked when
4142         data in the source has changed and we need to update the control,
4143         so s/PullData/PushData.
4145         * CurrencyManager.cs: Refresh is meant to update the control from
4146         data in the datasource.  So, s/PullData/PushData.
4148         * BindingContext.cs: add more ugliness (we weren't handling the
4149         case where data_source = DataTable and data_member = column_name).
4151         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
4152         from the perspective of the datasource.  PullData pulls from the
4153         control, PushData pushes to the control.
4155 2006-06-20  Chris Toshok  <toshok@ximian.com>
4157         * BindingContext.cs: rewrite the CreateBindingManager code to
4158         handle navigation paths more or less properly.  This could
4159         definitely stand some more work, in particular to push the
4160         recursion up to the toplevel.  But that relies on fixes in other
4161         places (System.Data comes to mind).
4163         Also, move to a flat hashtable (and encode the twolevel nature of
4164         the dictionary into the hash key).  This lets us implement the
4165         IEnumerable.GetEnumerator method.
4167         * RelatedCurrencyManager.cs: new class.  Update our view based on
4168         our relation and our parent CurrencyManager's position.
4170         * CurrencyManager.cs: split out some logic from the ctor into
4171         SetView, so it can be called from the new RelatedCurrencyManager
4172         subclass.
4174         * RelatedPropertyManager.cs: new class.  Update our datasource
4175         based on the position of our parent CurrencyManager.
4177         * PropertyManager.cs: split out some logic from the ctor into
4178         SetDataSource, so it can be called from the new RelatedDataSource
4179         subclass.  Also, make the Current getter return the value
4180         of the PropertyDescriptor, not the data_source.
4182         * Binding.cs: no need to duplicate the string splitting code here.
4184 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
4186         * Control.cs:
4187           - set_Enabled: OnEnabledChanged is not called if the inherited state 
4188             of the control is not altered, even though  we might be changing the
4189             internal state of the control (#78458)
4190           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
4191             OnEnabledChanged, to allow easy altering of any child window state
4192           - OnEnabledChanged: Added code to enable/disable driver window state
4193           - OnParentEnabledChanged: Instead of firing the event, call 
4194             OnEnabledChanged, which will fire the event and also a) set driver
4195             window state and pass the enabled state to any grandchildren (#78458)
4197 2006-06-19  Jackson Harper  <jackson@ximian.com>
4199         * InternalWindowManager.cs: We don't set the cursor explicitly
4200         thats done via the response to NCHITTESTs.
4201         - Don't need to adjust for titlebar heights anymore, the
4202         coordinates are coming in the correct coordinates now (see peters
4203         last patch).
4206 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
4208         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
4209           being translated relative to whole window, instead of client window.
4210           That caused broken offsets on mouseclick (and caused gas for our
4211           InternalWindowManager)
4213 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
4215         * TextControl.cs:
4216           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
4217           - Undo(): Added replay of cursor move on DeleteChars action; added
4218             calling Undo() again if a recorded cursor move is invalid (to
4219             ensure that some action is performed on Undo)
4220         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
4222 2006-06-16  Jackson Harper  <jackson@ximian.com>
4224         * MdiClient.cs: Instead of just sizing maximized windows when
4225         there is a resize we also have to adjust the Y of minimized
4226         windows, so they stay pinned to the bottom of the mdi container.
4227         - Eliminate separate tracking of the active control, we can just
4228         get this from the controls collection.
4229         - Paint the decorations for the newly activated titlebar so we get
4230         a pretty blue bar.
4231         * InternalWindowManager.cs:
4232         * ThemeWin32Classic.cs: Minimized windows get all three buttons
4233         even if they are a tool window.
4234         
4235 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
4237         * TextControl.cs (Undo): Handle non-existent cursor locations in the
4238           undo buffer, these can happen when text was deleted and the cursor
4239           was recorded first. Since we will also have a recorded cursor
4240           after the delete this is not an issue. (Fixes #78651)
4242 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
4244         * AccessibleObject.cs: Remove dependence on Control.is_selected;
4245           instead properly track control states internally (allows us to
4246           remove is_selected from Control)
4248 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4250         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
4251         whose width is not a multiple of 8.
4253 2006-06-13  Jackson Harper  <jackson@ximian.com>
4255         * MdiClient.cs:  Only maximize the next child if the current one
4256         is maximized.
4258 2006-06-13  Chris Toshok  <toshok@ximian.com>
4260         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
4261         modified.  Also, guard against grid or grid_drawing being null in
4262         Invalidate.
4264         * DataGrid.cs: Reformat tons of getters/setters.  In the
4265         DataMember setter, just call SetNewDataSource instead of
4266         duplicating some of its functionality.  In SetNewDataSource, don't
4267         check ListManager for null, since the property getter creates the
4268         object if needed.
4270         * DataGridTableStyle.cs: don't set TableStyle or call
4271         SetDataGridInternal on the column here, it's done in
4272         GridColumnStylesCollection.Add.
4274         * GridColumnStylesCollection.cs: fix all the explicit interface
4275         implementations to just call our methods.  Nuke AddInternal() and
4276         move the body of it to Add().  Also, add a call to
4277         column.SetDataGridInternal to Add().
4279         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
4280         base()+duplicate code.  Also, use the Format property instead of
4281         format to generate an Invalidate ala MS.  Lastly, create the
4282         textbox here, unconditionally.
4283         (set_Format): call Invalidate.
4284         (get_TextBox): no need to call EnsureTextBox.
4285         (Commit): remove the message box.
4286         (Edit) remove the call to EnsureTextBox.
4287         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
4288         (EnterNullValue): no need to check textbox for null.
4289         (HideEditBox): no need to check textbox for null.
4290         (SetDataGridInColumn): add the textbox to the grid's controls.
4291         (EnsureTextBox): nuke.
4292         
4293 2006-06-13  Jackson Harper  <jackson@ximian.com>
4295         * MdiWindowManager.cs: Hook up to the maximized menus paint event
4296         and redraw the buttons when needed. Unhook when the window is
4297         unmaximized.
4298         * MainMenu.cs: Add an internal Paint event, the mdi window manager
4299         needs this so that it can redraw its buttons when the menu is
4300         repainted.
4301         * InternalWindowManager.cs:
4302         * Form.cs: The method order has changed for DrawMaximizedButtons,
4303         so that it can be a PaintEventHandler.
4304         
4305 2006-06-13  Jackson Harper  <jackson@ximian.com>
4307         * MdiClient.cs: When we close a maximized mdi window, the next mdi
4308         window is activated and maximized, even if it wasn't before.
4309         - When  a new window is activated repaint the decorations of the
4310         old one, so that it no longer has the Active "look" (the blue
4311         titlebar).
4312         * InternalWindowManager.cs: Open up CreateButtons to base classes
4313         so they can recreate the buttons on state changes.
4314         - If a window is maximized give it all three buttons
4315         * MdiWindowManager.cs: Create the titlebar buttons when the state
4316         is changed, this is needed because a toolwindow will not have all
4317         three buttons until it is maximized.
4319 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
4321         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
4322           Fixed bug #78609.
4324 2006-06-12  Jackson Harper  <jackson@ximian.com>
4326         * KeysConverter.cs: Make sure we handle the Ctrl special case
4327         if its the only key.
4328         
4329 2006-06-12  Jackson Harper  <jackson@ximian.com>
4331         * Theme.cs: Add a method to get the size of a managed window
4332         toolbar button.
4333         * InternalWindowManager.cs: Remove the ButtonSize property, this
4334         should be retrieved from the theme.
4335         * MdiWindowManager.cs: Get the button size from the theme
4336         * ThemeWin32Classic.cs: Make the method to get the managed window
4337         titlebar button size public.
4338         - Handle the different button sizes of maximized toolwindows
4339         (should match any maximized window).
4340         - Get the titlebar height from the theme, not the WM (which gets
4341         it from the theme).
4343 2006-06-12  Jackson Harper  <jackson@ximian.com>
4345         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
4346         event down to the mdi window manager.
4347         - Expose some extra stuff to base classes
4348         - Make sure to end the Capture on an NC Mouse up, so that we can
4349         get double clicks properly, and the sizing doens't stick.
4350         - When doing PointToClient contain it in the workable desktop
4351         area, this prevents windows from changing size when the cursor is
4352         pulled outside of the working area while sizing.
4353         * MdiWindowManager.cs: When we get a double click maximize the
4354         window.
4355         - Reset the cursor after handling mode changes.
4357 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
4359         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
4360           current desktop, instead of just assuming a 0, 0 origin. This
4361           is needed for our internal window manager, to know the top
4362           margin of the desktop
4364 2006-06-12  Chris Toshok  <toshok@ximian.com>
4366         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
4367         we need this to get rid of the selected background in the bool
4368         column.
4369         (CancelEditing): move the ConcedeFocus call to above the Abort
4370         call.  Also, set is_changing to false and invalidate the row
4371         header if we were changing before.
4372         (ProcessKeyPreviewInternal): remove, since noone outside this
4373         class calls it anymore.  Roll the code into ProcessKeyPreview.
4374         (EndEdit): remove the internal version.
4375         (InvalidateCurrentRowHeader): make private.
4377         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
4378         Keys.Escape handling (and with it the last call to
4379         DataGrid.EndEdit from outside the class.)
4382 2006-06-12  Chris Toshok  <toshok@ximian.com>
4384         * DataGridTextBox.cs (.ctor): isedit defaults to false.
4385         (OnKeyPress): set isedit to true.
4386         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
4387         already handled by the grid.
4389         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
4390         right.  ugh.
4391         (set_DataSource): SetDataSource always returns true, so stop
4392         putting it in an if statement.
4393         (EndEdit): get rid of some {}'s
4394         (ProcessGridKey): return true in case Keys.Escape.
4395         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
4396         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
4397         PositionChanged, stopped connecting to CurrentChanged.
4398         (GetDataSource): simplify this a bunch.
4399         (SetDataSource): change return type from bool to void.
4400         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
4401         to this, and make sure we don't set ListManager.Position inside
4402         set_CurrentCell.
4403         (OnListManagerItemChanged): if we're passed an actual index,
4404         redraw that row.
4406         * CurrencyManager.cs (set_Position): don't call PullData here.
4408 2006-06-09  Jackson Harper  <jackson@ximian.com>
4410         * TreeNode.cs:  Recalculate the visible order before doing the
4411         Expand/Collapse Below calls, because those calls generate an
4412         expose.
4413         - Reduce calls to the TreeView property, which is mildly expensive
4414         by using a local var.
4415         * Form.cs: Layout the MDI child windows when creating the parent
4416         form.
4417         - Don't use the internal constructor anymore
4418         * MdiClient.cs: use the parent form width/height (if available)
4419         when laying out the child windows, we do this because the
4420         mdiclient isn't docked yet when the initial layout is done.
4421         - Don't need an internal constructor anymore.
4423 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4425         * FileDialog.cs: handle access errors when trying to create a folder
4426         or changing to a directory. No need to initialize out parameters.
4428 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
4430         * FileDialog.cs: Append a number when creating a new folder if the
4431           folder already exists (use parenthesis instead of square brackets)
4433 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
4435         * FileDialog.cs:
4436           - Disabled registry support for windows and added better registry
4437             error checking for other systems (need to investigate why it
4438             works perfectly on my system)
4439           - If a folder already exist show an error MessageBox instead of
4440             trying to create an indexed name.
4441           - Fixed a non intentional typo.
4443 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4445         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
4447 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
4449         * FileDialog.cs: When creating a new folder don't crash if the
4450           folder already exists.
4452 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
4454         * FileDialog.cs: Allmost a complete rewrite.
4455           - added a "virtual" file system that handles the differences
4456             between unix and windows file systems (especially the directory
4457             structure). Moved most of the directory and file handling code
4458             into the vfs.
4459             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
4460             UnixFileSystem and FSEntry.
4461           - Recently used folder/directory, size, location and used file names
4462             (file name ComboBox) are now stored in the registry and get read
4463             before the dialog shows up (fixes part 6 of bug #78446).
4464           - Creation of new folders/directories is now possible (context menu
4465             or ToolBar). Added TextEntryDialog for this that fills in the gap
4466             until ListView.LabelEdit works.
4467           - Fixed cursor handling (bug #78527) and focus handling for
4468             PopupButtonPanel
4469           - Various "Search in" ComboBox enhancements. The content of the
4470             dropdown listbox now almost matches ms.
4471           - Changed the behaviour when the user switches to SpecialFolder
4472             Recent to show the ListView in View.Details.
4473           - Beside using the ToolBar to change the View property of the
4474             file ListView it is now possible to use the context menu too.
4476 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
4478         * ComboBox.cs: Don't create a new ObjectCollection when an item
4479           gets inserted. Just insert the item in the existing object_items
4480           ArrayList.
4482 2006-06-08  Jackson Harper  <jackson@ximian.com>
4484         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
4485         that the treeview and root node checks are done also, this fixes a
4486         regression i caused in the unit tests.
4488 2006-06-07  Wade Berrier <wberrier@novell.com> 
4490         * RichTextBox.cs: More ISO8859-1 -> unicode
4492 2006-06-07  Mike Kestner  <mkestner@novell.com>
4494         * ComboBox.cs : use items to hold highlight/selection so that
4495         collection insertions don't require synchronization.
4497 2006-06-07  Jackson Harper  <jackson@ximian.com>
4499         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
4500         routine.  We now always keep the sized edge at the cursor instead
4501         of computing movement and adjusting rects.  There is one buglet
4502         with this method though when the cursor is moved over area that
4503         the window can not expand too (such as the toolbars on the desktop).
4505 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4507         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
4508         here. Fixes crash on startup in AlbumSurfer.
4510 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
4512         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
4513           values
4515 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4517         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
4518         statement to avoid calling XNextEvent which will block if another thread
4519         took the event that we were expecting. Fixes bug #78605.
4521 2006-06-07  Mike Kestner  <mkestner@novell.com>
4523         * ListView.cs : isolated checkbox clicking from the selection logic.
4524         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
4526 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4528         * Form.cs: Check that the value passed to Form.DialogResult
4529         is a valid enum value.
4531 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4533         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
4534         Computer'. Clicking it in the network view goes to 'My Computer'.
4535         Added CIFS filesystem type. Display the mount point of filesystems.
4536         Avoid duplicate mount points (happens for me with CIFS);
4538 2006-06-06  Jackson Harper  <jackson@ximian.com>
4540         * InternalWindowManager.cs: Draw the maximized windows buttons
4541         when resizing.
4543 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4545         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
4546         all other dialogs. Fixes bug #78585.
4548 2006-06-06  Mike Kestner  <mkestner@novell.com>
4550         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
4551         Only invalidate checkbox on checkstate changes to avoid flicker.
4552         * ListBox.cs : avoid unselect/select when clicking selected item.
4553         avoid reselection flicker for already multiselected items.
4554         Fixes #78382.
4556 2006-06-06  Jackson Harper  <jackson@ximian.com>
4558         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
4559         the parent form so that the menu is removed if needed.
4561 2006-06-06  Mike Kestner  <mkestner@novell.com>
4563         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
4564         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
4566 2006-06-06  Mike Kestner  <mkestner@novell.com>
4568         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
4571 2006-06-06  Jackson Harper  <jackson@ximian.com>
4573         * Control.cs: Use the property (instead of the field) to get the
4574         default cursor so it is instantiated correctly.
4575         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
4576         resizes so we need to manually repaint the window decorations here.
4577         - Set the titlebar button locations as soon as they are created,
4578         otherwise they are not set correctly on win32.
4579         
4580 2006-06-06  Chris Toshok  <toshok@ximian.com>
4582         * CurrencyManager.cs (set_Position): call PullData before
4583         OnCurrentChanged.
4584         (AddNew): after calling IBindingList.AddNew, update our
4585         listposition, and call OnCurrentChanged/OnPositionChanged (without
4586         calling PullData).
4587         (OnCurrentChanged): remove the call to PullData from here.
4588         (OnItemChanged): remove the call to PushData from here.
4589         (OnPositionChanged): change the test from == null to != null to
4590         match the other methods.
4591         (ListChangedHandler): the grossest part of the patch.  Implement
4592         this such that it passes the unit tests in CurrencyManagerTest and
4593         the output more or less matches that of MS's implementation.
4595 2006-06-06  Mike Kestner  <mkestner@novell.com>
4597         * ListView.cs : only update check state on single click.
4598         * ThemeWin32Classic.cs : fix focus drawing for details view without
4599         fullrowselect.  Fixes #78454.
4600         * XplatUIX11.cs : fix for double click emission.
4602 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
4604         * PropertyGridView.cs : Applied Atsushi's patch to fix
4605         font dialog bug  (#78197).
4607 2006-06-05  Jackson Harper  <jackson@ximian.com>
4609         * TreeNode.cs: Compute the next node for expanding/collapsing
4610         correctly. We now factor in nodes without a NextNode
4611         correctly. (Fixes somes cases in nunit-gui).
4612         * InternalWindowManager.cs: Set the bounds when updating the
4613         virtual position of a tool window.
4614         
4615 2006-06-05  Chris Toshok  <toshok@ximian.com>
4617         * DataGrid.cs: rename cached_currencymgr to list_manager.
4618         (set_CurrentCell): move SetCurrentCell code here, and clean it up
4619         some.
4620         (CurrentRow, CurrentColumn): single accessors so we can make the
4621         cursor movement code a lot easier to understand.
4622         (CurrentRowIndex): implement this in terms of CurrentRow.
4623         (BeginEdit): clean this up a bit.
4624         (CancelEditing): sort out the is_editing/is_changing/is_adding
4625         stuff a little.
4626         (EndEdit): minor changes.
4627         (OnKeyDown): add a comment about a (most likely) unnecessary
4628         check.
4629         (OnMouseDown): cancel editing when we click on a row header.  And
4630         use the CurrentRow setter, not CurrentCell.
4631         (ProcessDialogKey): directly call ProcessGridKey.
4632         (UpdateSelectionAfterCursorMove): factor out this common block of
4633         code (it's used everywhere that we move the cursor by updating row
4634         or column).
4635         (ProcessGridKey): pretty substantial overhaul.  Use the
4636         CurrentRow/CurrentColumn properties to make the code a lot more
4637         readable.  Only use the CurrentCell property when we have to
4638         modify both row and column at once.  Tab behavior is still broken,
4639         and Delete is untested.
4640         (Select): if we have no selected rows, set selection_start to
4641         @row.
4642         (EditCurrentCell): rename EditCell this.  It was only ever invoked
4643         with CurrentCell as the arg, so drop the arg and rename it.
4645         * DataGridColumnStyle.cs: clean up the constructors a little, and
4646         drop CommonConstructor().
4648         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
4649         actually get notified when the user hits it.
4650         (ProcessKeyMessage): *substantially* simplify this method.
4651         There's no reason (that I can see) for the textbox to be making
4652         calls into the datagrid at all.  Remove all of them but the ones
4653         for Enter handling.  those will take some more work.
4655         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
4656         calling HideEditBox.
4657         (HideEditBox): if we have an active textbox, render it invisible
4658         without causing a re-layout of the datagrid.
4660 2006-06-05  Mike Kestner  <mkestner@novell.com>
4662         * ListView.cs : fix NRE crasher when focuseditem is cleared by
4663         collection changes by resetting it to Items[0].  Fixes #78587.
4665 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4667         * MessageBox.cs: if the height of the text is larger than the icon_size,
4668         use that. Fixes bug #78575.
4670 2006-06-05  Jackson Harper  <jackson@ximian.com>
4672         * TreeView.cs: Fix line drawing when scrolling.  To do this each
4673         node is basically responsible for drawing its entire horizontal
4674         area.  When drawing a node it draws its parent node lines if
4675         needed.
4676         - Adjust the clip area to the viewport rectangle
4677         - Fix Left/Right key handling to match MS. (It expand/collapses
4678         and moves to parents/first child but does not move selection to
4679         sibling nodes).
4680         - Fix SetTop to work with new bound calculation code
4681         - When scrollbars are no longer needed we need to reset scrolling
4682         vars and recalculate the visible order so the redraw is correct
4683         * TreeNode.cs: We can't expand/collapse nodes with no children.
4685 2006-06-03  John Luke  <john.luke@gmail.com> 
4687         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
4688         so the colors work without dev packages
4689         
4690 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
4692         * Control.cs 
4693           - Select: Implemented to just use activate. Seems to match MS 
4694             behaviour closest. Documented to only do actual control walking 
4695             based on it's parameters if in a container control so I moved 
4696             the code there.
4697           - Removed selection check logic from our internal Select() method
4698         * ContainerControl.cs:
4699           - Select: Moved selection logic from Control here, since MS documents
4700             that containers obey the bool arguments. No longer calling base
4702 2006-06-02  Jackson Harper  <jackson@ximian.com>
4704         * TreeView.cs: If the selected node isn't changed when we get
4705         focus update the previously selected node so that we see the
4706         selection box.
4708 2006-06-02  Mike Kestner  <mkestner@novell.com>
4710         * ComboBox.cs: restructure grab and general mouse event handling.
4711         Make the composite control raise mouse events like it was a single
4712         control for leaves/enters/motion/up/down events.  fix dropdown list
4713         coordinate mangling and refactor it into the scrollbar subclass to
4714         reduce code duplication.  Fixes #78282 #78361 and #78457.
4716 2006-06-02  Mike Kestner  <mkestner@novell.com>
4718         * ScrollBar.cs: remove Capture setting/clearing, as it happens
4719         automatically in the Control.WndProc.
4721 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4723         * FileDialog.cs: fix crash when running SharpChess, which sets the
4724         FilterIndex to 2 with only one Filter.
4726 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4728         * ToolBar.cs: add SizeSpecified property.
4729         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
4730         try to figure out our real size, otherwise fallback to what the
4731         container says.
4733 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
4735         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
4736         * Control.cs (WndProc): MS always calls the DefWndProc to pass
4737           up the event
4739 2006-06-01  Mike Kestner  <mkestner@novell.com>
4741         * ListView.cs: revamp the focus management in ListView.  It still
4742         causes churn of LostFocus/GotFocus emissions on clicks, but it's
4743         better than not handling focus at all.  Will revisit when pdb feels
4744         the general focus handling is solid.  Fixes #78526.
4746 2006-06-01  Jackson Harper  <jackson@ximian.com>
4748         * TreeView.cs: Set the default border style in the constructor.
4749         - Move painting to use OnPaintInternal instead of capturing
4750         WM_PAINT, this is the correct way of doing things
4751         - UpdateBelow shouldn't invalidate the scrollbar area
4752         - Cap the top on update below in case the node was above the top
4753         of the viewport rectangle.
4754         - ExpandBelow and Collapse below need to obey Begin/End Update.
4755         * TreeNode.cs: Make is_expanded internal so the treenode
4756         collection can change it without firing the whole event chain.
4757         * TreeNodeCollection.cs: When clearing all the child nodes make
4758         sure to recalc the visible order.
4759         - Improve algo for remove the top node
4761 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
4763         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
4764           SendMessage directly calling window procedures, which in turn might
4765           call SetFocus()
4767 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
4769         * Control.cs: Don't handle WM_SETFOCUS if the same window already
4770           has focus (works around X11 sending a FocusIn after our SetFocus)
4771         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
4773 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
4775         * Mime.cs: Fix for the NET_2_0 build.
4776           NameValueCollection needs StringComparer now.
4778 2006-05-31  Chris Toshok  <toshok@ximian.com>
4780         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
4781         return (via an out parameter) the starting X of the column.
4782         (UpdateVisibleColumn): track change to FromPixelToColumn.
4783         (HitTest): add a ColumnResize case here.
4784         (DrawResizeLine): new function, probably poorly named.
4786         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
4787         only need to keep one reference.
4788         (set_ListManager): same.
4789         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
4790         Also, add support for HitTestType.ColumnResize.
4791         (OnMouseMove): add column resize behavior here, and change the
4792         cursor to the correct one as we move around the datagrid.
4793         (OnMouseUp): terminate the column resize if we're resizing.
4794         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
4795         for the current cell.
4796         (ConnectListManagerEvents): use cached_currencymgr.
4797         (DisconnectListManagerEvents): fill this in, using
4798         cached_currencymgr.
4799         (SetCurrentCell): remove cached_currencymgr_events handling.
4800         (SetDataMember): only call DisconnectListManagerEvents if
4801         cached_currencymgr is != null.
4802         (SetDataSource): same.
4803         (OnListManagerCurrentChanged): cached_currencymgr_events ->
4804         cached_currencymgr.
4806 2006-05-31  Jackson Harper  <jackson@ximian.com>
4808         * BindingManagerBase.cs: Remove somedebug code that creeped into
4809         SVN.
4810         * TreeNode.cs: We get the indent level dynamically right now, so
4811         don't track it as a member.
4812         * TreeNodeCollection.cs: Make sure all nodes added to the list
4813         have parents, treeviews/topnodes setup properly.
4814         - Don't attempt to track indent level.
4816 2006-05-30  Jackson Harper  <jackson@ximian.com>
4818         * BindingContext.cs: Create the currency manager tables here.
4819         This allows us to more easily create null tables (when bad data
4820         members are used), and more easily create related currency
4821         managers.
4822         * CurrencyManager.cs: All the table creation stuff is done by the
4823         binding context now.
4824         - Current should throw an exception if listposition is -1.
4825         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
4826         been bound yet.
4828 2006-05-30  Mike Kestner  <mkestner@novell.com>
4830         * ListView.cs: allow reexpansion of zero-width column headers.
4831         Fixes #78528.
4833 2006-05-28  Chris Toshok  <toshok@ximian.com>
4835         * CurrencyManager.cs (get_Current): after the late binding
4836         listposition = -1 fix, we need to guard against it here and return
4837         null, otherwise we raise an exception (which is swallowed
4838         elsewhere, and breaks datagrid databinding.)
4840 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
4842         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
4843           than WM_SYSKEY, don't throw if get something unexpected (#78507)
4845 2006-05-26  Jackson Harper  <jackson@ximian.com>
4847         * ControlPaint.cs:
4848         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
4849         values, it's faster and it's all we care about (we don't care if
4850         the names aren't equal).
4851         * KeyboardLayouts.cs: Eliminate some dead code.
4852         - Lazy init things
4853         * X11Keyboard.cs: Lazy init keyboard detection.
4854         - Cleanup access modifiers a little.
4856 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
4858         * XplatUIX11.cs: Once again, attempting to get layout just right.
4860 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
4862         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
4863           the sizes of each link section, that will result in sizes that
4864           match DrawString's layout (Fixes #78391)
4866 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
4868         * FileDialog.cs: If AddExtension property is true autocomplete the
4869           extensions in SaveFileDialog correctly. Fixes bug #78453.
4870           Set MyNetwork and MyComputer to "C:\" for windows. This should
4871           fix part 8 of bug #78446 for now.
4873 2006-05-26  Chris Toshok  <toshok@ximian.com>
4875         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
4876         invalidate the current row header if we need to, but presumably
4877         we'll invalidate the row corrsponding to the bounds or
4878         editingControl.
4879         (GridHScrolled): switch back to this method, as it's part of the
4880         public api.  *sigh*.
4881         (GridVScrolled): same.
4882         (OnMouseWheel): hack up something that more or less works.  Call
4883         GridHScrolled/GridVScrolled directly, instead of duplicating much
4884         of their code here.
4885         (EnsureCellVisibility): reinstate a bunch of this code, since we
4886         can't just set the scrollbar Value and expect to do all the work
4887         in the ValueChanged handler.  Also, Call Update() after scrolling
4888         in one direction so the other XplatX11.ScrollWindow call has the
4889         proper stuff in the proper places.
4890         (EditCell): set is_editing to true before calling .Edit.
4892         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
4893         don't bother comparing first.
4894         (OnKeyPress): call grid.ColumnStartedEditing before calling
4895         base.OnKeyPress.  this will set is_changing and invalidate the row
4896         header if necessary.
4897         (ProcessKeyMessage): for WM_CHAR messages, call
4898         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
4899         and WM_KEYDOWN.
4900         
4901         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
4902         it's done in the DataGrid.
4903         (NextState): call grid.ColumnStartedEditing, which takes care of
4904         invalidating the row header (and setting is_changing).
4906         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
4907         here.  it's done in the DataGrid.
4909 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4911         * Control.cs: allow changing the cursor when the mouse position is
4912         out of bounds but Capture is set.
4913         * LinkLabel.cs: handle the case when the mouse button is pressed on the
4914         linklabel but released somewhere else.
4916 2006-05-25  Jackson Harper  <jackson@ximian.com>
4918         * TreeView.cs: When we get focus if there is no selected node make
4919         it the top node
4920         - Remove some uneeded setup code from Draw.
4921         * TreeNodeCollection.cs: If the tree doesn't have a top node when
4922         a new node is inserted make the new node the top.
4923         * XplatUIX11.cs:
4924         * Timer.cs: Use Utc time so that no local time zone stuff needs to
4925         be used (should be faster).
4926         
4927 2006-05-25  Chris Toshok  <toshok@ximian.com>
4929         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
4930         problem with the last commit.
4932 2006-05-25  Chris Toshok  <toshok@ximian.com>
4934         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
4935         need the invalidate call here, while scrolling right-to-left via
4936         the left arrow key (i.e. moving the editing cell while scrolling).
4938         * DataGrid.cs (.ctor): remove the initialization of
4939         ctrl_pressed/shift_pressed.  We no longer track them using key
4940         up/down handlers, but by using Control.ModifierKeys.  Also, switch
4941         to using ValueChanged handlers on the scrollbars instead of
4942         Scrolled event handlers.  This simplifies a bunch of the scrolling
4943         code.
4944         (GridHValueChanged): rename from GridHScrolled, and change it to
4945         work with the new event args.
4946         (GridVValueChanged): same.
4947         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
4948         (OnMouseWheel): actually scroll the datagrid.  Don't change the
4949         selected cell.
4950         (ProcessGridKey): correct all the keyboard navigation stuff I
4951         could find.  Ctrl up/down/left/right/home/end work now.
4952         (EnsureCellVisibility): correct method name spelling.  Also,
4953         simplify this a touch by not explicitly calling the
4954         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
4955         scrollbar value.
4956         (OnKeyUpDG): no need for this method now.
4957         
4958 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4960         * LinkLabel.cs: display the OverrideCursor when hovering the label.
4961         Fixes bug #78392.
4963 2006-05-25  Chris Toshok  <toshok@ximian.com>
4965         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
4966         r61019.
4968 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
4970         * Application.cs: Moved setting of is_modal and closing to before
4971           we create the control, to allow the event handlers called as a
4972           result of creation affect closing. Also removed Gonzalo's previous
4973           change to setting DialogResult, the behaviour has been moved to 
4974           Form.ShowDialog()
4975         * Form.cs: 
4976           - ShowDialog(): Removed explicit creation of the form, let RunLoop
4977             handle it instead
4978           - ShowDialog(): If no dialog result is set, we need to return Cancel
4979           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
4980             the close is cancelled
4982 2006-05-25  Jackson Harper  <jackson@ximian.com>
4984         * StatusBar.cs: We only need to update the sizes of the other
4985         panels when we have auto size contents.  Also we are only updating
4986         the contents of the panel, not the borders, so compensate for the
4987         border width (TODO: get this width from the theme somehow).
4988         * TreeView.cs: Scrollable is true by default
4989         - Use invalidate instead of refresh where needed
4990         - Factor the scrollable value into scrollbar updating
4991         - Update the scrollbars if the Scrollable property is altered
4992         - Update the selected node if its ImageIndex is changed
4993         - Handle null nodes in UpdateNode (mainly so we don't have to
4994         check if selected is null when updating it
4995         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
4996         are factored into the visible count
4997         - Use VisibleCount for clarity in the code
4998         - When the font is changed we need to recurse through all the
4999         nodes and invalidate their sizes
5000         
5001 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5003         * Application.cs: set the DialogResult to fixed when the main form is
5004         hidden or destroyed while being modal.
5006 2006-05-25  Miguel de Icaza  <miguel@novell.com>
5008         * Theme.cs: Use Tangoified messagebox icons. 
5010         (GetSizedResourceImage): Also cope with width = 0 and do not
5011         trigger a warning in that case (0 means "give me your icon from
5012         the resouce, no special size needed).
5014 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
5016         * Application.cs: Leave runloop if the the main modal form is 
5017           hidden (fixes #78484)
5019 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
5021         * BindingContext.cs : reject null datasource in Contains() and
5022           Item[].
5023         * CurrencyManager.cs : check data_member validity when data_source
5024           is dataset. When it is late binding, the initial position is -1.
5026 2006-05-24  Jackson Harper  <jackson@ximian.com>
5028         * TreeNodeCollection.cs: Dont't recalculate the visible order on
5029         inserted nodes that aren't visible.  This changes the
5030         max_visible_order which confuses scrollbar settings.
5031         - Use the enumerator to get the prev node instead of duplicating
5032         code.
5033         * TreeView.cs: Use new method for setting scrollbar values
5034         - Don't set the bounds every time the scrollbar is updated
5035         - When updating below the root node use an invalidate instead of a
5036         refresh to prevent the child controls (scrollbars) from being
5037         refreshed. (UpdateBelow still needs to be reworked anyways).
5038         - Reenable SetBottom now that visible orders are set correctly,
5039         added some debug code incase we ever get bad values there again.
5040         - Set the scrollbar max to 2 less then the max value, this
5041         compensates for the max value being one above the node count, and
5042         for scrollbars adding one extra "notch".
5043         - When drawing image nodes if there is an imagelist we draw the
5044         first image in the list if the supplied image index is out of the
5045         image list's bounds.
5046         
5047 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
5049         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
5050           we receive a size change from the WM (Fixes #78503)
5052 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
5054         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
5055           rectangle (Fixes #78501)
5057 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
5059         * ButtonBase.cs: 
5060           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
5061             as a bitfield.
5062           - Fixed MouseMove to no longer switch pressed state unless the left
5063             mouse button is pressed. Atsushi provided the original patch (#78485)
5064           
5065 2006-05-24  Jackson Harper  <jackson@ximian.com>
5067         * ScrollBar.cs: New internal methods that allow us to change a
5068         couple values on the scrollbar (the most common case is maximum
5069         and large change) without getting multiple invalidates.
5071 2006-05-24  Chris Toshok  <toshok@ximian.com>
5073         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
5074         (Edit): save off the original state in oldState, and set
5075         grid.is_editing to true.
5076         (OnKeyDown): abort editing if escape is pressed.  also, call
5077         NextState if space is pressed.
5078         (OnMouseDown): call NextState.
5079         (NextState): factor out shared code from OnKeyDown and OnMouseDown
5080         here.  Also, only invalidate the row header once (on the initial
5081         is_changing switch) to save on redraws.
5083 2006-05-24  Chris Toshok  <toshok@ximian.com>
5085         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
5086         if the value in the cell is different than it was before.  This
5087         keeps us from triggering a layout when we move around a datarid
5088         with a highlighted cell.
5089         (Edit): suspend layout when creating/positining the text box, and
5090         resume passing false so we don't ever actually re-layout.
5091         (ReleaseHostedControl): same.
5092         (EnsureTextBox): reformat slightly, and set WordWrap to false.
5094         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
5095         control-key sequences should go to the datagrid - remove that
5096         lock.  Also, modify the conditions under which we move between
5097         cells when moving the cursor within a cell, and remove the "this"
5098         and "base" from field accesses.  We weren't even consistent, given
5099         they all were in the base class.
5101 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
5103         * Binding.cs : (.ctor)
5104           An obvious NRE fix for BindingTest.CtorNullTest().
5106 2006-05-23  Chris Toshok  <toshok@ximian.com>
5108         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
5109         them between lines.  This fixes some quirks editing cells in the
5110         datagrid.
5112 2006-05-23  Jackson Harper  <jackson@ximian.com>
5114         * TreeView.cs: Use begin/end update when doing expand/collapse all
5115         so that we don't get flicker on the scrollbar.
5117 2006-05-23  Jackson Harper  <jackson@ximian.com>
5119         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
5120         treenode calculations to be independant of the painting code. To
5121         do this nodes track a visible order which is calculated by the
5122         treeview.
5123         - Call new methods for expanding/collapsing nodes.  These methods
5124         use scrollwindow so we don't have to update everything below the
5125         node.
5126         * TreeView.cs: Refactored drawing and scrolling code.  We don't
5127         need to update nodes when drawing anymore or calculate scrollbar
5128         stuff.
5129         - Added new methods for expanding/collapsing nodes. These methods
5130         use ScrollWindow so as to not have to redraw all the nodes below.
5131         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
5132         we add/remove nodes or sort.
5133         - Handle removing the selected and the top node properly.
5135 2006-05-23  Chris Toshok  <toshok@ximian.com>
5137         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
5138         maybe this should actually happen in the datagrid code?
5139         (EndEdit): no need to invalidate anything, given that
5140         ReleaseHostedControl causes the datagrid to relayout, which
5141         invalidates everything anyway.
5143         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
5144         in SetCurrentCell).
5145         (set_SelectionBackColor): call InvalidateSelection instead of
5146         Refresh.
5147         (set_SelectionForeColor): same.
5148         (BeginEdit): Flesh this out a bit.
5149         (CancelEditing): only do any of this if we're editing/adding.
5150         (EndEdit): same.
5151         (OnMouseDown): there's no need to cancel editing here, it's done
5152         in SetCurrentCell.
5153         (SetCurrentCell): only invalidate the current row header if it's a
5154         different row than the new one.
5155         (ShiftSelection): fix this to work like MS does.
5156         (ResetSelection): factor out the invalidation of selected_rows to
5157         InvalidateSelection.
5158         (SetDataSource): cancel any editing that's going on.
5160         * DataGridColumnStyle.cs
5161         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
5162         call the non-interface version.
5164         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
5165         header rectangle with the clip rectangle so we don't redraw the
5166         entire header for just a small area.  Gets rid of the last flicker
5167         when horizontally scrolling.
5168         (DataGridPaintRow): same.
5170 2006-05-23  Mike Kestner  <mkestner@novell.com>
5172         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
5173         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
5174         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
5175         Critical bug report.
5177 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
5179         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
5180           and this fixes #78493
5182 2006-05-23  Miguel de Icaza  <miguel@novell.com>
5184         * Theme.cs (GetSizedResourceImage): Scale images if the proper
5185         size is not found.  
5186         
5187         * FileDialog.cs: Do not change the background for the side bar as
5188         it wont work nicely with the theme, and also reduces the artifacts
5189         in rendering the icons (which I want to fix too).
5191         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
5192         resources, not resgen resources. 
5194         (PlatformDefaultHandler): Pull images using the new API.
5196 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
5198         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
5199           a reference to the hwnd and will not remove it unless there are
5200           no pending exposures (fixes #78341)
5201         * XplatUI.cs: Improved debug
5203 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
5205         * MenuAPI.cs : don't handle OnClick event when it was not the left
5206           button. Fixed bug #78487.
5208 2006-05-23  Mike Kestner  <mkestner@novell.com>
5210         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
5211         prefer submenus to the top menu for item lookup, to avoid popping down
5212         top-row items.
5214 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
5216         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
5217           Graphics.FillRectangle as the visual results are really bad (even
5218           on win). We now draw perfect arrows (and perfect shadows when the
5219           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
5220           Pen.DashPattern to draw the dots of each line.
5222 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
5224         * FileDialog.cs: Update the filename combobox when navigating through
5225           the ListView with the cursor keys. Fixes part 7 of bug #78446.
5227 2006-05-22  Mike Kestner  <mkestner@novell.com>
5229         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
5230         Fixes #78463.
5232 2006-05-22  Mike Kestner  <mkestner@novell.com>
5234         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
5235         requests. Fix a misspelled parameter and a copy paste exception error
5236         in Select.
5238 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
5240         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
5241           to get the same width/height (5/13) on X11 as the default font has on
5242           win32. This means that our DefaultFont emSize is smaller than the 
5243           the MS SWF equivalent (even thought the width/height stays the same)
5245 2006-05-20  Jackson Harper  <jackson@ximian.com>
5247         * MdiClient.cs:
5248         * MdiWindowManager.cs:
5249         * InternalWindowManager.cs: Make sure to use the border width from
5250         the theme.
5252 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
5254         * PrintDialog.cs: Implements printer details
5256 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
5258         * FileDialog.cs: Added focus handling for PopupButtonPanel.
5259           Fixes part 1 and 2 of bug #78446
5261 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
5263         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
5264           instead of sticking to the first ever calculated value
5266 2006-05-19  Mike Kestner  <mkestner@novell.com>
5268         * ComboBox.cs: fix mouse motion selection to use MousePosition and
5269         PointToClient, since Capture is set. Fixes #78344.
5271 2006-05-19  Mike Kestner  <mkestner@novell.com>
5273         * ListView.cs: match MS behavior in Details view where items are not
5274         drawn if Columns.Count == 0. 
5275         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
5276         Use a separate pen to draw the check, since changing the width affects
5277         the box as well.  Fixes #78454.
5279 2006-05-18  Miguel de Icaza  <miguel@novell.com>
5281         * ListView.cs: ArgumentOutOfRangeException, single versions of the
5282         exception should throw the name of the invalid argument.
5284         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
5285         there are no files listed. 
5287 2006-05-18  Jackson Harper  <jackson@ximian.com>
5289         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
5290         up.
5292 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
5294         * Control.cs: Brought back our old UpdateZOrder method as a private
5295           function and switched our calls from UpdateZOrder to the new one.
5296           This fixes the Paint.Net canvas disappearing bug.
5298 2006-05-18  Jackson Harper  <jackson@ximian.com>
5300         * Theme.cs:
5301         * ThemeWin32Classic.cs:
5302         * InternalWindowManager.cs: Move the drawing into the theme,
5303         expose everything the theme should need from the window manager.
5305 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
5307         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
5308           from the call to NativeWindow to avoid walking up the parent chain
5309           further than needed (speeds up setting cursors and avoids setting
5310           the wrong cursor if a parent has another cursor defined)
5311         * Cursor.cs: When loading an icon as cursor, MS uses the center of
5312           the icon as hotspot, not what's contained as hotspot in the icon
5313           file. This fixes the perceived drawing offset seen with Paint.Net
5314         
5315 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
5317         * XplatUIX11.cs: 
5318           - Store the calculated rectangle in Hwnd object and use it when 
5319             setting the client size
5320           - Force Toolwindows to always be type Dock, to ensure they're on top
5322 2006-05-18  Mike Kestner  <mkestner@novell.com>
5324         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
5325         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
5326         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
5327         Substantial refactoring to remove confusing nested classes. Coding
5328         standard and Get+Set->property refactorings.  Shift to index based
5329         highlighting in ComboListBox instead of constantly using IndexOf and
5330         Items[]. Add invalidations on resize for DropDownList to fix ugliness
5331         in FileDialog growth.  Draw borders manually since Simple mode needs
5332         to look like two independent controls.  Make listbox border
5333         conditional to DropDownStyle.  Improved OwnerDraw support.
5335 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
5337         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
5338         Don't set the disposed graphics to null, so we can throw the "right"
5339         exception if the graphics is reused later (added a flag to avoid 
5340         double disposing). Some behaviours are different under 2.0 and are
5341         filled under bug #78448.
5343 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
5345         * Control.cs: When double-buffering is enabled, we need to reset
5346           our graphics context between paint calls. Otherwise, any 
5347           transformations and other alterations on the context will 
5348           become cumulative (#77734)
5350 2006-05-18  Mike Kestner  <mkestner@novell.com>
5352         * ListView.cs: do focused item selection like MS on clicks. 
5353         Rework focus handling for ItemControl so LostFocus invalidates as
5354         well.
5355         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
5356         the ListView ItemControl has focus.
5358 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
5360         * XplatUIX11.cs: If client_window ends up being width or height zero
5361           due to border settings, move it off window inside whole_window (#78433)
5363 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
5365         * Mime.cs: Shrink the mime file cache correctly.
5367 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
5369         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
5371 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
5373         * XplatUIX11.cs (AddExpose): More sanity checks
5375 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
5377         * XplatUIX11.cs:
5378           - AddExpose: Don't add expose ranges outside the size of our
5379             window
5380           - Cast opacity values to Int32 to avoid crashes with certain
5381             values
5382           - Added disabled code paths that protect against illegal cross-
5383             thread painting (Developers.exe)
5385 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
5387         * ProgressBar.cs: Invalidate the control when it's resized
5388           since block size is based on control size. (#78388)
5390 2006-05-16  Miguel de Icaza  <miguel@novell.com>
5392         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
5393         of setting the incoming argument to the "reset" value, we set the
5394         this.datamember to string.empty (before we were invalidating the
5395         incoming data).   
5397         Fixes 78420
5399 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
5401         * Form.cs: Only apply transparency settings after the form
5402           is created. (Fixes #77800)
5404 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
5406         * ApplicationContext.cs: Grab the HandleDestroyed event so
5407           we know when to fire OnMainFormClosed 
5409 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
5411         * Application.cs: Introduced sub-class to allow tracking of
5412           threads and centralized triggering of the event mess for
5413           ThreadExit, AppExit, etc..  (#76156)
5415 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
5417         * MimeIcon.cs:
5418           - Do not return a null icon index value for a mime subclass.
5419             Instead try the main mime type class too.
5420           - Seems that some newer distributions don't have a link to some
5421             gnome default icons anymore. So check the default gnome dir too.
5422           
5424 2006-05-16  Jackson Harper  <jackson@ximian.com>
5426         * MdiClient.cs: Don't paint the parent background image if we have
5427         our own background image.
5429 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
5431         * Control.cs:
5432           - PerformLayout: Do not shrink space filled by DockStyle.Fill
5433             controls, all filled controls are supposed to overlap (#78080)
5434           - UpdateZOrder is supposed to update the control's z-order in the
5435             parent's z-order chain. Fixed to behave like that
5436           - BringToFront: Removed obsolete code
5437           - SendToBack: Simplyfied
5438           - SetChildIndex: Trigger layout calculations when Z-order changes
5439             since layout is done by z-order
5441 2006-05-16  Chris Toshok  <toshok@ximian.com>
5443         [ fixes bug #78410 ]
5444         * DataGrid.cs (set_AlternatingBackColor): use
5445         grid_drawing.InvalidateCells instead of Refresh().
5446         (set_BackColor): call grid_drawing.InvalidateCells.
5447         (set_BackgroundColor): use Invalidate instead of Refresh.
5449         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
5450         invalidate the cell area.
5452 2006-05-15  Chris Toshok  <toshok@ximian.com>
5454         [ fixes bug #78011 ]
5455         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
5456         on to DataGridPaintRow.
5457         (DataGridPaintRow): take a clip argument, and only draw the cells
5458         which intersect it.  same with the not_usedarea.
5460         * Theme.cs (DataGridPaintRow) add @clip parameter.
5462         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
5463         XplatUI.ScrollWindow.
5464         (ScrollToRow): same.
5466         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
5467         with last column which was causing a gray swath to appear with the
5468         XplatUI.ScrollWindow code.
5470 2006-05-15  Chris Toshok  <toshok@ximian.com>
5472         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
5473         use XplatUI.ScrollWindow.
5474         (VerticalScrollEvent): use XplatUI.ScrollWindow.
5476 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
5478         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
5480 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
5482         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
5483           file since there are no equivalent X11 cursors
5485 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
5487         * MonthCalendar.cs : DateTimePicker should reflect selected date
5488           on mouse*up*, not mouse*down*. Fixed originally reported part of
5489           bug #76474.
5491 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
5493         * TabControl.cs : When argument index is equal or more than tab
5494           count, just ignore. Fixed bug #78395.
5496 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
5498         * Control.cs: Dispose all child controls when control is diposed (#78394)
5500 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
5502         * ColorDialog.cs: Finally it is possible to select the color with
5503           the text boxes
5505 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
5507         * PrintDialog.cs: Fix typo
5509 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
5511         * PrintDialog.cs: PrintDialog is not resizable
5512         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
5513           color. Made some ToolBar drawing methods protected virtual.
5515 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
5517         * PrintDialog.cs: Implementation of the PrintDialog
5519 2006-05-12  Chris Toshok  <toshok@ximian.com>
5521         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
5522         thumb, instead use MoveThumb.  This has the side effect of making
5523         most of the other thumb moving machinery use MoveThumb as well.
5524         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
5525         need to actually invalidate the rectangle where the new thumb will
5526         go.
5527         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
5528         We force an Update() after, so it's not as fast as it could be,
5529         but at least there's zero flicker and no droppings.
5530         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
5531         (UpdateThumbPos): add another argument (dirty), which says whether
5532         or not to calculate/add dirty regions which we later invalidate.
5533         For cases where we know we're going to use MoveThumb, we pass
5534         false for this.  Otherwise, pass true.
5536 2006-05-12  Jackson Harper  <jackson@ximian.com>
5538         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
5539         the status bar.
5540         
5541 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
5543         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
5544           and GetClipRegion methods and UserClipWontExposeParent property.
5545         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
5546           overriding UserClipWontExposeParent property, setting to false, since
5547           Win32 handles the required expose messages to draw our clipped parent
5548           areas internally
5549         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
5550           PaintEventStart to set the user clip region if set.
5551         * Control.cs: 
5552           - Now internally tracking the Region for the control since we need to
5553             store it if the handle is not yet created and only set it when it
5554             becomes created. Before setting the region forced handle creation
5555           - Added code to draw the parents underneath a user-clipped region
5556         * Hwnd.cs: Added UserClip property
5558 2006-05-12  Chris Toshok  <toshok@ximian.com>
5560         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
5561         (set_Maximum): same.
5562         (set_Minimum): same.
5563         (set_SmallChange): same.
5564         (OnMouseUpSB): remove the call to refresh when releasing the
5565         thumb.  We shouldn't need it.
5566         
5567 2006-05-12  Miguel de Icaza  <miguel@novell.com>
5569         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
5570         AutoSize set to None, we do not need to relayout everything, we
5571         just need to invalidate the current region.
5573         (Draw): Do not draw the entire ClientArea, just redraw the
5574         clip area being passed.
5576         * MdiClient.cs: Make MdiClient constructor with the Form argument
5577         internal. 
5579 2006-05-12  Jackson Harper  <jackson@ximian.com>
5581         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
5582         parents background image,  but strangely not their own.
5583         - (DrawStatusBarPanel): Take into account horizontal alignment
5584         when drawing the strings and icons.
5586 2006-05-12  Mike Kestner  <mkestner@novell.com>
5588         * ListBox.cs: avoid invalidations for focus when the collection is
5589         empty. 
5591 2006-05-12  Chris Toshok  <toshok@ximian.com>
5593         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
5594         invalidate the entire thumb area.  Call InvalidateDirty which
5595         limits the redraw to the thumb itself and surrounding pixels.
5597         * XplatUIX11.cs (ScrollWindow): optimize copying.
5598         
5599 2006-05-12  Chris Toshok  <toshok@ximian.com>
5601         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
5602         Figure out the positioning/layout in a single pass instead of
5603         multiple recursive invocations.  Speeds up the initial display of
5604         the data grid.  Also, make many things private that were
5605         originally public but unused outside this class.
5607 2006-05-11  Jackson Harper  <jackson@ximian.com>
5609         * MdiClient.cs: Improved layout code.
5611 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
5613         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
5614           not SelectedObject.
5616 2006-05-11  Chris Toshok  <toshok@ximian.com>
5618         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
5619         union of that will always be {0,0,width,height}.
5621 2006-05-11  Jackson Harper  <jackson@ximian.com>
5623         * Form.cs: Match MS's DefaultSize for forms (they must have
5624         changed the size in sp2).
5626 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
5628         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
5630 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
5632         * TextControl.cs : Fixed bug #78109. This incorrect position
5633           comparison caused crash on automatic line split.
5634         * TextBoxBase.cs : reduce duplicate code.
5636 2006-05-10  Jackson Harper  <jackson@ximian.com>
5638         * MdiClient.cs: Active form is only sent to the back when using
5639         the Next form functionality, when a form is clicked the current
5640         active shouldn't be sent to the back.
5641         - Layout the mdi windows when the container is first made visible.
5642         * Form.cs: Give the MdiClient a ref to the containing form when we
5643         create it.
5644         
5645 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
5647         * LinkLabel.cs : link_font could be uninitialized, so populate one
5648           before actual use. Fixed bug #78340.
5650 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
5652         * XplatUIX11.cs : clipboard format native value is IntPtr.
5653           Fixed bug #78283.
5655 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
5657         * Control.cs: 
5658           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
5659             which is passed up the parent chain by DefWndProc
5660           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
5661             to DefWndProc (#77956)
5662         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
5664 2006-05-10  Jackson Harper  <jackson@ximian.com>
5666         * MdiClient.cs: We need to remove the controls from the mdi
5667         collection, when we close the window.
5668         * MdiWindowManager.cs: Special handling of closing mdi windows.
5669         * InternalWindowManager.cs: Make the close method virtual so the
5670         mdi window manager can handle it specially.
5672 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
5674         * DataGrid.cs:
5675           - Recalculate grid when the data source has changed
5676           - Matches styles provided by user from all data sources types
5677         * DataGridTableStyle.cs: For columns that provided by the user set the
5678         with the preferred value is there was unassigned.
5679         * CurrencyManager.cs: throw OnItemChanged event
5681 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
5683         * PictureBox.cs: Don't animate until handle is created. Start animation
5684           when handle is created.
5686 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
5688         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
5689           current codebase.
5690         * XEventQueue.cs: We don't need to provide the extra info
5692 2006-05-10  Jackson Harper  <jackson@ximian.com>
5694         * MdiClient.cs: If the mdi clients parent form has a background
5695         image set, we draw that background image for the mdi area's
5696         background.
5698 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
5700         * TextBoxBase.cs: Set IBeam cursor (#78347)
5702 2006-05-10  Mike Kestner  <mkestner@novell.com>
5704         * ToolBar.cs: fix some text padding issues with ButtonSize
5705         calculation. Update the default size to match MS documentation.
5706         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
5707         button size. Fixes #78296.
5709 2006-05-10  Mike Kestner  <mkestner@novell.com>
5711         * ListBox.cs: use is_visible for scrollbar positioning in case the
5712         control isn't on screen yet.  Fix off by one with Right vs Width
5713         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
5714         
5715 2006-05-10  Jackson Harper  <jackson@ximian.com>
5717         * X11Dnd.cs: Drop to a control with another control on top of it.
5718         * ToolBar.cs: Work on a copy of the buttons list, so that it can
5719         be modified in click handlers. TODO: Look for similar problems in
5720         other controls.
5722 2006-05-09  Jackson Harper  <jackson@ximian.com>
5724         * Form.cs: Window managers need the old window state when setting
5725         window state now.
5726         * InternalWindowManager.cs: Allow the base mdi window manager to
5727         handle more of the MDI only stuff (like maximize buttons).
5728         * MdiWindowManager.cs: Fix some snafus in changing the window
5729         state.  Add all the menu functionality, for both popup and
5730         maximized menus.
5731         * MdiClient.cs: When a new form is selected the currently
5732         activated form is sent to the back, this matches MS.
5733         - Implement a new method to activate the next mdi child window.
5735 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
5737         * Control.cs: 
5738           - Added new InternalCapture method to allow controls to prevent
5739             the capture behaviour on the click handlers
5740           - Switched to use InternalCapture
5741         * ComboBox.cs:
5742           - Using InternalCapture to prevent mouse captures from being released
5743             on mouse button release (Fixes #78100)
5744         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
5745           returns Form borders if a caption is present. (Fixes #78310)
5747 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
5749         * TreeNode.cs: Changed serialization .ctor to not require every field
5750           to be present. (#78265)
5751         * OwnerDrawPropertyBag.cs: Added serialization .ctor
5753 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
5755         * MimeIcon.cs: for is faster than foreach for strings.
5757 2006-05-05  Mike Kestner  <mkestner@novell.com>
5759         * CheckedListBox.cs: update check handling code to not use selected.
5760         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
5761         behavior for visual feedback, motion response, shift/ctrl handling,
5762         and properly deal with all 4 selection modes. Updates to bounds
5763         handling logic.  Add scroll wheel support. [Fixes #77842]
5765 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
5767         * ListView.cs:
5768           - Moved adding of Implicit controls into .ctor. That way, subsequent
5769             creation of the controls will not cause them to think they are 
5770             toplevel windows (fixes #78200 header problem)
5771           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
5772           - Switched visibility setting of header control to use internal field
5773             to avoid triggering handle creation
5774           - Now checking if handle is created before causing a refresh when items
5775             are added (This makes us now match handle creation time with MS)
5776         * Splitter.cs: Removed loading of private splitter cursor, switched to
5777           Cursors version now that that is loading the right ones
5778         * Cursors.cs: Load proper splitter cursors from resources
5779         * Cursor.cs: Added second method of loading resource cursors for the 
5780           VS.Net users amongst us
5782 2006-05-05  Mike Kestner  <mkestner@novell.com>
5784         * ListView.cs: give header_control a minimum size based on the
5785         ListView size.
5787 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
5789         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
5790           window seems to do that with metacity, so set that type. (#78120)
5792 2006-05-05  Mike Kestner  <mkestner@novell.com>
5794         * ListViewItem.cs: fix Details mode checkbox layout bug.
5795         * ThemeWin32Classic.cs: draw a ListView column header for unused space
5796         at the end of the header, if it exists. [Fixes for #78200]
5798 2006-05-04  Jackson Harper  <jackson@ximian.com>
5800         * MdiClient.cs: Add a helper property to get the container form.
5801         * MdiWindowManager.cs: We have to make sure to use the menu origin
5802         when drawing the icons and buttons, this fixes maximized window
5803         icons/buttons on win32.
5804         * InternalWindowManager.cs: Reset the restore captions when a
5805         window goes from Maximized to Minimized and vice versa. Move the
5806         DrawMaximizedButtons into the MdiWindowManager source, tool
5807         windows can't be maximized. NOTE: This could use a little
5808         refactoring if time ever permits.
5809         
5810 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
5812         * TextBox.cs: Add MWFCategoryAttributes
5813         * TextBoxBase.cs: Add MWFCategoryAttributes
5814         * Form.cs: Add MWFCategoryAttributes
5816 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
5818         * Control.cs: Add MWFCategoryAttributes
5819         * ScrollableControl.cs: Add MWFCategoryAttributes
5821 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
5823         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
5824           Divider is true. Fix a little glitch in PropertyToolBar
5825           drawing code
5827 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
5829         * Control.cs:
5830           - Dispose: Call base.Dispose, this causes the disposed event
5831             to be fired (and probably other, more important stuff)
5832           - SetVisibleCore: Set is_visible to true after creating the
5833             window so that the window still gets created invisible (if
5834             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
5835             to generate a WM_ACTIVE message
5836         * Form.cs: Call Dispose when we want to destroy the window, instead of
5837           just destroying the handle (Dispose will do that for us)
5838         * XplatUIX11.cs:
5839           - RootWindow also needs a queue, so we can properly process the
5840             property change events from RootWindow (like Activate)
5841           - Generatic synthetic WM_ACTIVE message when the active window is
5842             being destroyed
5844 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
5846         * LinkLabel.cs: Trigger a recalc of our label dimensions when
5847           bounds are changed
5849 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
5851         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
5852           for determining width and height (image might not be assigned if
5853           we're drawing an imagelist)
5855 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
5857         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
5858         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
5859           height from system
5860         * Theme.cs: No longer returns hardcoded menu height, instead calls
5861           new driver method
5862         * Form.cs (OnLoad): Scaling happens before triggering Load events 
5863           on MS (# 78257)
5865 2006-05-01  Mike Kestner  <mkestner@novell.com>
5867         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
5869 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
5871         * TextBoxBase.cs: Removed Fixme
5872         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
5874 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
5876         * XplatUIX11.cs:
5877           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
5878             the rectangle relative to the parent, considering borders. We
5879             don't really want that.
5880           - ScrollWindow: Fixed warning to be more understandable
5881         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
5882           scrollbars and scroll only the visible area
5883         * RichTextBox.cs: Removed debug output
5885 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
5887         * NumericUpDown.cs (Text): Just use base
5888         * UpDownBase.cs: Ensure txtView is created before using it
5890 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
5892         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
5893           casting to IntPtr to avoid 64bit overflow errors
5895 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
5897         * Control.cs:
5898           - AllowDrop: Don't force handle creation.
5899           - CreateHandle: Added call to tell driver if we're allowed to drop
5901 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
5903         * FileDialog.cs: Remember the last directory not only for the
5904           current instance but also for new FileDialog instances.
5906 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
5907         
5908         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
5909           broke sending async messages
5911 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
5913         * XplatUIX11.cs:
5914           - ScrollWindow: Fixed method. We finally generate expose events again
5915             for scrolled areas. This was causing 'garbage' when scrolling
5916             textbox and other controls that used ScrollWindow
5917           - Switched from using the regular queue for paint events to the MS 
5918             model of 'generating' paint events when the queue is empty.
5919             We use the new XQueueEvent.Paint subclass to store which windows
5920             need painting.
5921           - AddExpose now takes the x/y/width/height of the exposed area
5922             and inserts the window into the paint queue if not already there
5923           - InvalidateWholeWindow: Switched to use new AddExpose method
5924           - UpdateMessageQueue: Added which queue to monitor for paint events
5925           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
5926             the unlikely case nothing above handles it. We reset the expose
5927             pending states to get them off the queue.
5928           - GetMessage: Now pulls a paint event if no other events are in the
5929             queue
5930           - Invalidate: Switched to new AddExpose method
5931           - PeekMessage: Updated to understand pending paint events
5932           - UpdateWindow: Fixed logic bug. We were only updating if the window
5933             didn't need updating. Also switched to sending WM_PAINT directly,
5934             like MS does.
5935         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
5936           and random access Remove(). The random access is needed to handle
5937           UpdateWindow() where a WM_PAINT is sent directly without accessing
5938           the queue.
5939         * ScrollBar.cs: Added Update() calls to cause immediate updates to
5940           allow for better feedback when scrolling. Scrollbars are small and
5941           the immediate update should make it 'feel' more responsive without
5942           slowing things down. ScrollBar still needs it's invaliate logic
5943           updated to not always invalidate the whole bar on certain changes.
5945 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5947         * Control.cs:
5948         (BackColor): if the control does not support a transparent background,
5949         return the default backcolor when the parent backcolor is transparent.
5951 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
5953         * Application.cs: Updated to new StartLoop/GetMessage API
5954         * RichTextBox.cs: Provide some output on RTF parsing errors
5955         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
5956           new queue_id argument to GetMessage and PeekMessage to allow faster
5957           handling of per-thread queues in drivers.
5958         * Hwnd.cs: Added Queue tracking and property
5959         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
5960         * XEventQueue.cs: Added thread trackingA
5961         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
5962         * XplatUIX11.cs:
5963           - Implemented new per-thread queue
5964           - GetMessage: Fixed return/break behaviour on several cases. We were
5965             returning stale messages in some cases, instead of just processing
5966             the next message
5968 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
5970         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
5972 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
5974         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
5975           fixed off-by-one comparisons between Width/Height and Right/Bottom.
5977 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
5979         * PropertyGridView.cs: Fix drop down width.
5981 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
5983         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
5984           a mess in DrawToolBar, so I removed one of them.
5986 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
5988         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
5989           needed (clip). Otherwise we get artifacts.
5991 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
5993         * FixedSizeTextBox.cs: Added constructor to allow specifying which
5994           dimension is fixed
5995         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
5996           and switched FixedSizeTextBox to only be fixed vertical (#78116)
5997         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
5998           if it matches the scale base font (avoids unneeded scaling)
6000 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
6002         * X11DesktopColors.cs: One gtk_init_check should be enough
6004 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
6006         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
6007           match MS behaviour
6009 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
6011         * TextBoxBase.cs: 
6012           - Generate OnTextChanged for Backspace even if we're only deleting
6013             the current selection
6014           - When setting the Text property, only select all text if the
6015             control does not have focus when it is being set. Otherwise
6016             just place the cursor at the beginning of the control
6018 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
6020         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
6021           Added a little helper to draw PropertyGrid ToolBar with a different
6022           border and a different BackColor.
6023         * PropertyGrid.cs: Some background parts didn't get painted with the
6024           correct background color. Added a class that helps us to draw the
6025           correct border for PropertyGridView and a class that helps us to
6026           draw ToolBars with a different backcolor
6027         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
6029 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
6031         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
6032         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
6034 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
6036         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
6037           into the palette entries. Also, since we're working on a copy
6038           we needed to copy the palette back onto the bitmap.
6039         * Cursor.cs: Same fix as XplatUIWin32.cs.
6041 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
6043         * ImageListStreamer.cs: Need to read the var (or we're off)
6045 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
6047         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
6048           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
6049           TextBoxBase.cs: Unused var fixes
6050         * AxHost.cs: Small 2.0 fix
6051         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
6052           as it seems that is what at least Metacity expects. This will make
6053           icons show up on 64bit platforms. We still have some 64bit size
6054           issues, though, since the startup app window size still won't match.
6056 2006-04-25  Mike Kestner  <mkestner@novell.com>
6058         * *.cs: cleanup newly reported exception var unused warnings.
6060 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
6062         * ThemeWin32Classic.cs: Button image alignment now matches exactly
6063           ms
6065 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
6067         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
6068           image. The image position is always the same, no matter if the
6069           button is pressed or not.
6071 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
6073         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
6074           selection and set the correct filename for SaveFileDialog.
6075           Patch by Emery Conrad.
6077 2006-04-24  Mike Kestner  <mkestner@novell.com>
6079         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
6080         check for item.X outside the ClientRect instead of item.Y. Fixes
6081         #78151.
6083 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6085         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
6086         trust that value blindly and do some sanity check. Fixes bug #77814.
6088 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6090         * ImageListStreamer.cs: save the mask as a 1bpp image.
6092 2006-04-21  Mike Kestner  <mkestner@novell.com>
6094         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
6095         pass Checked and Indeterminate to the Theme Engine. Improve
6096         encapsulation with ListBox.
6097         * ListBox.cs: Keep a StringFormat instead of calculating it every item
6098         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
6099         nested types.  Move all CheckState functionality to CheckedListBox.
6100         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
6101         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
6102         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
6103         single base list. Fix scrollbar sizing and placement to mirror MS.
6104         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
6105         used.
6106         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
6107         for CheckedListBox by using new DrawItemState info.  Center the
6108         checkboxes on the items. Use new StringFormat property.
6110 2006-04-18  Jackson Harper  <jackson@ximian.com>
6112         * Form.cs: MdiChildren don't do default locations the same way as
6113         regular forms.  This prevents a crash when trying to position the
6114         mdi windows.
6116 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
6118         * PropertyGridTextBox.cs: Formatting, copyright
6119         * PropertiesTab.cs: Formatting
6120         * PropertyGrid.cs: Formatting
6121         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
6122           click toggling of values
6123           
6124 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
6126         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
6127         * Control.cs (.ctor): verify_thread_handle is static, don't reset
6128           every time a control is created
6129         * Application.cs: Removed obsolete EnableRTLMirroring method
6131 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
6133         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
6134         SelectedIndex to -1. Fixes bug #78121.
6136 2006-04-17  Jackson Harper  <jackson@ximian.com>
6138         * Binding.cs: Handle null values for Current and BindingContext.
6139         This occurs when binding is a little delayed.
6140         * CurrencyManager.cs: return null for Current when there are no
6141         items in the list.
6142         - Hookup to the listchanged event on the DataView and update
6143         bindings when the list is changed.  This fixes late binding of
6144         controls.
6146 2006-04-17  Jackson Harper  <jackson@ximian.com>
6148         * X11Dnd.cs:
6149         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
6150         Ringenbach.
6152 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
6154         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
6155           place
6156         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
6157           with the correct ButtonState
6159 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
6161         * XplatUIX11.cs: Improved distinguishing between window types to
6162           tell the WM a type closer to what the app wants (Fixes #78107)
6164 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
6166         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
6167           GrabHandle
6169 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
6171         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
6172           drawing code to reflect the size grip changes
6174 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6176         * ImageListStreamer.cs: fix handling of the mask that follows the main
6177         bitmap when deserializing and serialize it properly. The generated mask
6178         should better be a 1bpp image, but I'll do that later.
6180 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
6182         * FileDialog.cs: Show something in the DirComboBox on *nix if the
6183           path doesn't fit into some of our Current.Places
6185 2006-04-13  Jackson Harper  <jackson@ximian.com>
6187         * ComboBox.cs: Use borders instead of drawing our own decorations,
6188         try to obey correct rules for heights.
6189         * Theme.cs:
6190         * ThemeNice.cs:
6191         * ThemeClearLooks.cs:
6192         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
6193         this is now handled by borders.
6194         - Remove unused DrawListBoxDecorationSize method.
6195         
6196 2006-04-13  Mike Kestner  <mkestner@novell.com>
6198         * MenuAPI.cs: null guarding for the disbled click check fixes crash
6199         reported by Alex.
6201 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
6203         * ThemeWin32Classic.cs: 
6204           - Fixed CPDrawStringDisabled
6205           - Corrected drawing of disabled menu items
6206           - Fixed drawing of disabled radio buttons (bug #78095)
6207           - Draw check in a disabled CheckBox with color ControlDark 
6209 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
6211         * Form.cs: Use the provided width when calculating the menu size;
6212           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
6213           and ClientSize.Width won't be updated yet
6214         * Application.cs: Use Visible instead of Show() to make form visible,
6215           this way we create the handle later and menusize is considered
6217 2006-04-12  Mike Kestner  <mkestner@novell.com>
6219         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
6220         reporting.
6222 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
6224         * TextBox.cs: Implemented context menu
6226 2006-04-12  Mike Kestner  <mkestner@novell.com>
6228         * ListView.cs: implement box selection. fixes #77838.
6229         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
6231 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
6233         * XplatUIX11.cs: Added setting of window type when transient window
6234           is created (metacity would move it otherwise)
6235         * X11Structs.cs: Added WINDOW_TYPE atoms
6236         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
6237           background (the control is Opaque but still wants transparent
6238           backgrounds)
6240 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
6242         * Control.cs: Added OnPaintBackgroundInternal to allow controls
6243           that set Opaque but don't mean it (like all ButtonBase-derived
6244           controls) to still draw their background
6245         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
6246           the background
6248 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
6250         * Control.cs (PaintControlBackground): Set the graphics object
6251           on our PaintEvent to null to prevent it from being disposed
6252           when the PaintEvent gets disposed
6254 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
6256         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
6257         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
6259 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
6261         * Control.cs: 
6262           - Added transparency check to BackColor property. Transparent
6263             backgrounds are only allowed if the control styles permit it
6264           - Added recursive painting of parent control background and
6265             foreground if a control with a transparent backcolor is drawn
6266             (Thanks to Tim Ringenback for providing his 'hack' as a base
6267              for this patch) Fixes #77985 and #78026.
6268           - Added Opaque style check before calling OnPaintBackground, no
6269             need to draw the background if the control is opaque
6270           - Removed ControlAccessibleObject owner variable (inherited from
6271             base, no need to define again)
6272           - Added some documentation links explaining the drawing events
6273             and styles
6275 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
6277         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
6278           that the affected control is the located at the left border of our
6279           parent (Fixes #77936)
6281 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
6283         * TextBoxBase.cs: When rendering disabled or readonly controls,
6284           draw the background with 'Control' instead of 'Window' color as
6285           long as the user hasn't specifically set a color
6287 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
6289         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
6290           since that won't be updated if the user types text (only if it's
6291           programatically set)
6293 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
6295         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
6296           layout changes do to app-triggered resizes will have the proper
6297           display rectangle for layout
6299 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
6301         * ThemeWin32Classic.cs:
6302           - Make use of the SystemBrushes and SystemPens wherever possible
6303           - Corrected some highlight colors
6304           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
6305             drawing
6306         * Theme.cs: Added Empty field to CPColor struct
6308 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
6310         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
6311           is displayed when calculating the display rectangle. Thanks to Mike
6312           for teaching me the err of my ways.
6314 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
6316         * ScrollableControl.cs:
6317           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
6318             (instead of 0,0) and we now return the real width/height instead of
6319             just the clientrectangle, adjusted for padding. The rectangle is
6320             now cached and created by the new CalculateDisplayRectangle method.
6321           - Created new CalculateDisplayRectange method, which basically does
6322             what get_DisplayRectangle() did originally, but now using the 
6323             right edge instead of DisplayRectangle to determine the size of
6324             our scrollbars
6325           - get_Canvas(): Fixed it to properly calculate canvas for 
6326             right/bottom controls which seem to be placed to the right/bottom
6327             of any controls that have a fixed location
6328           - Removed TODO that's taken care of
6329           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
6330             and SetDisplayRectLocation according to new MSDN2 docs
6331           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
6332             event when that is called, this is added for compatibility
6333           - ScrollControlIntoView(): Implemented.
6334           - Switched scrollbars to be implicit, they shouldn't be selectable
6335         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
6336           call it when the active control is set/changed
6337         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
6338         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
6339           implicit_control variable (used for native Win32 message generation)
6340         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
6341           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
6342         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
6343         * XplatUIStructs.cs: Added ScrollBarCommands enum
6345 2006-04-10  Jackson Harper  <jackson@ximian.com>
6347         * ButtonBase.cs:
6348         * CheckedListBox.cs:
6349         * ComboBox.cs:
6350         * DataGrid.cs:
6351         * DataGridView.cs:
6352         * Form.cs:
6353         * GroupBox.cs:
6354         * ListBox.cs:
6355         * PrintPreviewControl.cs:
6356         * ProgressBar.cs:
6357         * PropertyGrid.cs:
6358         * Splitter.cs:
6359         * StatusBar.cs:
6360         * TrackBar.cs:
6361         * UpDownBase.cs: Fixup base event overrides.
6362         
6363 2006-04-06  Mike Kestner  <mkestner@novell.com>
6365         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
6366         all user-initiated value changes to min <= value <= max-thumbsz+1.
6367         (set_Value): check for vert/horiz when calculating new thumb position.
6368         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
6369         like MS does.
6370         (OnMouseMoveSB): refactor the thumb dragging code and refine
6371         invalidation logic to reduce flicker.
6372         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
6373         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
6374         (UpdateThumbPosition): small code readability cleanup
6376 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
6378         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
6379           different
6381 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
6383         * ThemeNice.cs: Use a better graphics effect when a button is pressed
6385 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
6387         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
6388         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
6389           This dramatically reduces the number of Pen.Dispose calls. 
6390           Where possible call ResPool methods only once instead of calling it
6391           over and over again (for example for the same color).
6393 2006-04-06  Mike Kestner  <mkestner@novell.com>
6395         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
6396         Also remove an unused private field on the collection. Fixes #77972.
6398 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
6400         * ThemeNice.cs: Added ToolBar drawing code
6402 2006-04-06  Mike Kestner  <mkestner@novell.com>
6404         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
6405         I'm assuming that means we need to look up the toplevel for the
6406         provided control. Fixes the crash trace in #77911 but exposes another
6407         crash in some strange reflection usage in NDocGui.
6409 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
6411         * ThemeNice.cs: Gave it a little silver touch and added Images
6412           method
6413         * FontDialog.cs: FontDialog is not resizable
6414         * FileDialg.cs: Added SizeGripStyle.Show
6416 2006-04-05  Jackson Harper  <jackson@ximian.com>
6418         * KeyboardLayouts.cs: Remove warning.
6420 2006-04-05  Jackson Harper  <jackson@ximian.com>
6422         * Control.cs: Enable OnPaintInternal so we can use it for drawing
6423         all of our controls instead of Paint +=.
6424         * ListBox.cs:
6425         * ListView.cs:
6426         * MenuAPI.cs:
6427         * MessageBox.cs:
6428         * NotifyIcon.cs:
6429         * ProgressBar.cs:
6430         * ScrollBar.cs:
6431         * Splitter.cs:
6432         * StatusBar.cs:
6433         * TabControl.cs:
6434         * TextBoxBase.cs:
6435         * ToolBar.cs:
6436         * TrackBar.cs:
6437         * UpDownBase.cs:
6438         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
6439         use OnPaintInternal. Remove Width/Height and Visible checks in
6440         paint handler, this is done at a higher level now.
6441         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
6442         * PaintEventArgs.cs: Add a handled flag so controls that don't
6443         want anymore painting after OnPaintInternal can make sure OnPaint
6444         isn't called.
6446 2006-04-05  Mike Kestner  <mkestner@novell.com>
6448         * Form.cs: fix the menu WndProc hacks to respect the native enabled
6449         state of the form, so that we don't process events when Modal dialogs
6450         are up. Fixes #77922.
6452 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
6454         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
6455           checking is done.
6457 2006-04-05  Mike Kestner  <mkestner@novell.com>
6459         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
6461 2006-04-05  Mike Kestner  <mkestner@novell.com>
6463         * ListView.cs (HeaderMouseMove): null guarding for the over column
6464         when setting up the drag_to_index.  Fixes #78015.
6466 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
6468         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
6469           in the taskbar. Transient windows seem to accomplish that.
6471 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
6473         * Form.cs:
6474           - Re-enabled CreateParams.X/Y code for FormStartPosition
6475           - Added code for manual placement when creating the Control
6476           - Incomplete patch to treat MDI forms differently when
6477             setting the ClientSizeCore. (Still need to figure out handling
6478             x/y coords there)
6479         * XplatUIX11.cs:
6480           - When we're explicitly setting the X/Y position of a non-Child
6481             window, let the WM know. Metacity really wants this.
6483 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
6485         * ThemeNice.cs: Added CPDrawButton
6487 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
6489         * ThemeNice.cs: Changed the color for focused buttons and activated
6490           the arrows for small scroll buttons.
6492 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
6494         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
6495           anymore. Changed some method modifiers to protected (virtual)
6496         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
6497           changes
6498         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
6499           Updated drawing of menus, buttons and progressbars; added
6500           CPDrawBorder3D 
6502 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6504         * ImageListStreamer.cs: implemented serialization/deserialization
6505         of the images.
6507 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
6509         * ThemeWin32Classic.cs:
6510           - Removed all the DrawFrameControl stuff; CPDrawButton,
6511             CPDrawCheckBox and CPDrawRadioButton are now handled directly
6512             inside the methods
6513           - Updated and corrected the drawing code of CPDrawButton,
6514             CPDrawCheckBox and CPDrawRadioButton to better match ms
6515           - Updated theme checkbox and radiobutton code to use the CP*
6516             methods
6518 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
6520         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
6521           bug is fixed
6523 2006-03-31  Jackson Harper  <jackson@ximian.com>
6525         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
6526         sometimes.
6527         * UpDownBase.cs: Don't CreateGraphics manually, use a
6528         Refresh. Ideally we would invalidate the correct areas here.
6530 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
6532         * XplatUIX11.cs: 
6533           - We now track the mapping state of windows. If a window (or 
6534             one of it's parents) is not mapped we no longer permit
6535             WM_PAINT messages to be generated since we'd otherwise get 
6536             lots of BadMatch X errors. Jackson did all the work figuring
6537             out the problem.
6538           - Destroying the caret if the window it's contained in is 
6539             destroyed. Can't use regular DestroyCaret method since it
6540             might fall into a drawing function (trying to remove the
6541             caret) and with that generate new BadMatch errors. Again,
6542             Jackson tracked this down.
6543           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
6544             make sure we send the messages to all windows. (The old code
6545             would send the WM_DESTROY to the window, and then all child
6546             windows would be 'gone' because the WM_DESTROY handle lookup
6547             would no longer find the destroyed window)
6548         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
6549         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
6551 2006-03-31  Jackson Harper  <jackson@ximian.com>
6553         * ScrollableControl.cs: Dont recalc if we are not visible.
6555 2006-03-31  Mike Kestner  <mkestner@novell.com>
6557         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
6558         the visibility branch.
6560 2006-03-31  Jackson Harper  <jackson@ximian.com>
6562         * ScrollBar.cs: Cap values when incrementing/decrementing.
6564 2006-03-31  Mike Kestner  <mkestner@novell.com>
6566         * MenuAPI.cs: setup menu.tracker for popup/context menus.
6567         * ToolTip.cs: guard against timer expirations with no active control.
6568         Not sure why it happened.
6570 2006-03-31  Mike Kestner  <mkestner@novell.com>
6572         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
6573         text.
6574         * ToolTip.cs: Position the tooltip based on where the cursor is at
6575         popup time, not at MouseEnter time.  Add a Down state so that we don't
6576         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
6577         positioning offset. Lookup DisplaySize at positioning time, since it
6578         can theoretically change during invocation.
6579         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
6580         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
6582 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
6584         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
6585           Fixes behaviour when the Text property of the box is String.Empty
6587 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
6589         * XplatUIX11.cs: Only send mouseleave for our client windows, not
6590           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
6591           a window)
6593 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
6595         * FileDialog.cs: Visual enhancement for the popup buttons in 
6596           PopupButtonPanel
6598 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
6600         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
6601           code
6603 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
6605         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
6606           highlighted menu items to match ms
6608 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
6610         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
6612 2006-03-30  Mike Kestner  <mkestner@novell.com>
6614         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
6615         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
6616         go active to account for HotLight to Selected transition.
6617         * MenuItem.cs: add internal Selected prop. Fill out the Status
6618         property by calculating it from item info. Add HotLight,
6619         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
6621 2006-03-30  Mike Kestner  <mkestner@novell.com>
6623         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
6625 2006-03-29  Jackson Harper  <jackson@ximian.com>
6627         * Form.cs: Implement TODO.
6629 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
6631         * PrintPreviewDialog.cs: Implemented missing methods and events; still
6632           missing proper dialog setup in the constructor
6634 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
6636         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
6637         * Control.cs:
6638           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
6639           - Fixed ResetBindings and removed TODO
6640           - Added check for cross-thread calls to get_Handle()
6641           - Added Marshaller attribute for set_Font to satisfy class status
6642         * FontDialog.cs: Removed TODOs that seemed implemented
6643         * UpDownBase.cs: Removed unneeded TODO and Fixme
6644         * MessageBox.cs: Implemented support for Default button and removed TODO
6645         * FileDialog.cs: Removed obsolete TODO
6646         * DomainUpDown.cs: Removed obsolete TODO
6647         * ButtonBase.cs: Removed obsolete TODO
6648         * XplatUIWin32.cs: Removed obsolete TODO
6649         * Form.cs:
6650           - Removed obsolete TODO
6651           - Calling CheckAcceptButton when the acceptbutton is changed to allow
6652             internal status updates
6653           - Making sure the active control is selected when the control is created
6654         * CurrencyManager.cs: Removed obsolete TODO
6656 2006-03-29  Mike Kestner  <mkestner@novell.com>
6658         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
6659         of PrintPreviewDialog and RichTextBox.
6661 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
6663         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
6664           DarkDark, Light and LightLight colors for a specific color
6665         * ThemeWin32Classic.cs:
6666           - Use Button drawing code to draw RadioButtons and CheckBoxes with
6667             Appearance = Button 
6668           - Make use of the new ResPool helper CPColor
6669           - Draw ProgressBar and StatusBar with correct 3D borders
6671 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
6673         * ColorDialog.cs: Return selected color. Fixes bug #77940.
6675 2006-03-28  Mike Kestner  <mkestner@novell.com>
6677         * ListView.cs: fix Icon layout to plan for scrollbar widths when
6678         calculating col/row counts.
6680 2006-03-28  Mike Kestner  <mkestner@novell.com>
6682         * ColumnHeader.cs:
6683         * ListView.cs:
6684         * ListViewItem.cs:
6685         * Menu.cs: 
6686         switch to explicit interface method implementation for some methods
6687         corcompare identifies as inconsistent with MS.
6689 2006-03-28  Mike Kestner  <mkestner@novell.com>
6691         * MainMenu.cs: 
6692         * Menu.cs:
6693         add a few missing methods from the class status output.
6695 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
6697         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
6698           correct.
6700 2006-03-28  Mike Kestner  <mkestner@novell.com>
6702         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
6704 2006-03-27  Mike Kestner  <mkestner@novell.com>
6706         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
6707         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
6709 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
6711         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
6713 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
6715         * ThemeWin32Classic.cs:
6716           - GroupBox: Inserted a little gap between the text and the lines
6717             on the right side
6718           - Made the code in CPDrawBorder3D more readable
6719           - Corrected the drawing location of the up and down arrows in 
6720             CPDrawScrollButton
6722 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
6724         * ControlPaint.cs: Corrected line widths in DrawBorder for
6725           ButtonBorderStyle Inset and Outset
6727 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
6729         * ThemeWin32Classic.cs:
6730           - Rewrote the totally broken CPDrawBorder3D method. That was
6731             one of the main problems for the terrific ThemeWin32Classic
6732             look
6733           - Updated and corrected Button drawing
6734           - Correct the dimensions of the SizeGrip to match ms ones
6735           - Removed a small drawing glitch in DrawComboBoxEditDecorations
6736         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
6737           Border3DStyle.Sunken to match ms.
6739 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
6741         * ThemeWin32Classic.cs: First small part of the "de-uglify
6742           ThemeWin32Classic" effort, SizeGrip
6744 2006-03-24  Jackson Harper  <jackson@ximian.com>
6746         * XplatUIX11.cs: Give a max idle time of one second, this matches
6747         MS and forces an Idle event every second when there are no other
6748         events in the queue.
6750 2006-03-24  Mike Kestner  <mkestner@novell.com>
6752         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
6753         * ListView.Item.cs: fix layout issues with null image lists and images
6754         smaller than checkbox size.
6755         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
6756         mode like MS does.  It's weird, but consistent.  ;-)
6757         Fixes #77890.
6759 2006-03-24  Mike Kestner  <mkestner@novell.com>
6761         * ListView.cs: Scroll wheel support for the item control.  Fixes
6762         #77839.
6764 2006-03-23  Jackson Harper  <jackson@ximian.com>
6766         * ScrollableControl.cs: Special case negative sized areas, not
6767         zero.
6768         * MonthCalendar.cs: Save the rect of the clicked date so we can
6769         use it for invalidation.
6770         - Try to cut down on the number of invalidates
6771         - Invalidate the rect the mouse is over and was over when moving
6772         the mouse, so we get the focus box following the cursor.
6774 2006-03-23  Mike Kestner  <mkestner@novell.com>
6776         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
6777         focus rectangle drawing. Fixes #77835.
6779 2006-03-23  Mike Kestner  <mkestner@novell.com>
6781         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
6782         the if and else if and reverting back to the original == check on the
6783         None conditional.
6785 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
6787         * FontDialog.cs: Update the example panel if the selected index of
6788           the fontListBox changes.
6790 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
6792         * FileDialog.cs: Make FileDialog remember which directory it was in
6793           last in the same execution.
6795 2006-03-22  Mike Kestner  <mkestner@novell.com>
6797         * FileDialog.cs: make the DropDownMenu on the toolbar display
6798         RadioChecks since they are mutually exclusive and that's what MS does.
6800 2006-03-22  Mike Kestner  <mkestner@novell.com>
6802         * Theme.cs: add Color param to CPDrawMenuGlyph.
6803         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
6804         checks and radio marks and arrows are visible on highlighted items.
6805         * ControlPaint.cs: update to use new Theme signature.
6807 2006-03-22  Mike Kestner  <mkestner@novell.com>
6809         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
6810         is active. Fixes #77870.
6812 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
6814         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
6815           to be focused/selected after startup
6817 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
6819         * ColorDialog.cs: 
6820           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
6821             CustomColors and ShowHelp properties
6822           - Some internal rewrites to get better results when using the
6823             ColorMatrix
6825 2006-03-22  Mike Kestner  <mkestner@novell.com>
6827         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
6828         HoverSelection.  Fixes #77836.
6830 2006-03-22  Mike Kestner  <mkestner@novell.com>
6832         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
6833         ToggleButtons.  (De)Sensitize the Back button around a stack count of
6834         1, not 0.  Update ButtonSize based on a pixel count of the win32
6835         control.  Adjust the toolbar size/location for new button size.
6837 2006-03-22  Jackson Harper  <jackson@ximian.com>
6839         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
6840         true.
6841         * ScrollBar.cs: When doing increments and decrements we need to
6842         set the Value property so that ValueChanged gets raised. A
6843         possible optimization here would be to make an internal SetValue
6844         that doesn't invalidate immediately.
6845         * ToolTip.cs: Tooltips get added to their container (when
6846         supplied) so they get disposed when the container is disposed.
6847         - Don't create tooltips for String.Empty. This prevents all these
6848         little 2-3 pixel windows from showing up when running nunit-gui
6849         and driving me mad.
6850         * Form.cs: Don't set topmost when setting the owner if the handles
6851         haven't been created yet.  The topmost set will happen when the
6852         handles are created.
6854 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
6856         * XplatUIX11.cs:
6857           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
6858           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
6859             visible (to allow them to recalculate their sizes)
6861 2006-03-21  Mike Kestner  <mkestner@novell.com>
6863         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
6864         methods. Removed a ton of redundant code.  Still not really happy with
6865         the border rendering, but I think that's mainly because of the
6866         ControlDarkDark being black instead of a dark grey. Depending on how 
6867         close we want to be, we might want to revisit those color choices.
6868         Among the new features added during the refactor were DropDownArrow
6869         pressed rendering, Disabled image rendering.  Proper flat appearance
6870         boundary rendering.  Removed the Divider and Wrapping dividers since I
6871         can't figure out any combination of themes and conditions to make the
6872         MS control draw a horizontal line on a toolbar despite what the
6873         Divider property docs indicate.
6874         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
6875         conditions and incorrect layout.  Updated to coding standard.
6876         * ToolBarButton.cs: refactored layout and positioning code from
6877         ToolBar to here.  Invalidate wherever possible instead of forcing
6878         redraws of the whole toolbar. 
6879         (Known remaining issues: explicit ButtonSize smaller than provided
6880         images.)
6882 2006-03-21  Mike Kestner  <mkestner@novell.com>
6884         * ContextMenu.cs (Show): use the position parameter instead of just
6885         showing at the MousePosition.
6887 2006-03-21  Jackson Harper  <jackson@ximian.com>
6889         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
6890         control handle this.
6891         * TreeNodeCollection.cs: If we are clearing the root node we need
6892         to reset top_node so calcs can still happen.
6893         * ThemeWin32Classic.cs: This is a Flags so we need to check
6894         properly.
6895         
6896 2006-03-21  Jackson Harper  <jackson@ximian.com>
6898         * DataGrid.cs: Create columns when the binding context has been
6899         changed.
6900         * X11Structs.cs: Keysyms are uints.
6901         - Add size to fix build.
6903 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
6905         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
6906           XplatUIOSX.cs: 
6907           - Added ResetMouseHover method to allow controls to retrigger
6908             hovering if they need it more than once
6909           - Implemented MouseHoverTime and MouseHoverSize properties
6910         * Timer.cs: Start() must reset the interval
6911         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
6912           properties
6914 2006-03-21  Jackson Harper  <jackson@ximian.com>
6916         * X11Keyboard.cs: improved layout detection. Move the nonchar
6917         tables into this file.
6918         * KeyboardLayouts.cs: Move the tables into resource files.
6920 2006-03-21  Mike Kestner  <mkestner@novell.com>
6922         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
6924 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
6926         * Mime.cs: Various speed optimizations. Looking up mime types
6927           is now 2 times faster than before
6929 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
6931         * CreateParams.cs: Added internal menu field
6932         * Control.cs: 
6933           - Switched call order for UpdateBounds; now we always call
6934             the one that also takes ClientSize, and we're calculating the 
6935             client size via driver method in the others. The previous
6936             method of tracking client size by difference wasn't working
6937             for forms where even the starting client size wouldn't match
6938             the overall form size (due to borders) (Part of fix for #77729)
6939           - CreateParams(): Do not use parent.Handle unless the handle is
6940             already created. Causes havoc with Nexxia and throws off our
6941             creation of controls
6942         * XplatUIX11.cs:
6943           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
6944           - Switched handling of ConfigureNotify over to new PerformNCCalc 
6945             method (consolidates code)
6946           - Changed RequestNCRecalc to use new PerformNCCalc method
6947           - Added calls to RequestNCRecalc when menus and borders are changed
6948             to allow app to set NC size. (Part of fix for #77729) This matches
6949             when MS send a WM_NCRECALC on Win32 windows.
6950           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
6951             (Part of fix for #77729). This matches what MS does, they also
6952             send that message when the form is made visible.
6953           - XException.GetMessage: Improved usability of X errors by including
6954             a translation of the window into Hwnd and Control class
6955           - Improved debug info for window creation, reparenting and destruction
6956           - Created helper method WindowIsMapped() [Currently not used]
6957         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
6958         * Form.cs:
6959           - CreateParams: Now setting our menu on the new internal menu field
6960           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
6961             avoid calculating the same property twice
6962         * Hwnd.cs:
6963           - Improved usability of ToString() for debugging purposes
6964           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
6965             determine the height of the menu, instead of just the font. This
6966             required to also create a graphics context and to keep a bmp 
6967             around (for performance reasons)
6969 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
6971         * MenuAPI.cs: Added OnMouseUp method
6972         * Form.cs:
6973           - Now remembering the requested client size, avoids size errors
6974           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
6975             instead of base if the menu is active. This is required due to
6976             control now capturing and releasing on down/up and it would
6977             prematurely release our menu capture
6979 2006-03-17  Jackson Harper  <jackson@ximian.com>
6981         * KeyboardLayouts.cs: Add the czech layouts.
6983 2006-03-16  Jackson Harper  <jackson@ximian.com>
6985         * Control.cs: Use the viewport space when sizing not the controls
6986         client size, so things like ScrollableControl that effect the
6987         viewport size (when scrollbars are added) are computed correctly.
6988         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
6989         of ManagerEntrys.
6990         - Handle creating BindingManagers for null data sources.
6991         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
6992         source, otherwise when rows are added they are added to the 'fake'
6993         datasource and we will crash when trying to set the position in
6994         those rows.
6995         - Use Implicit scrollbars on the datagrid so they arent
6996         selectable.
6997         
6998 2006-03-16  Jackson Harper  <jackson@ximian.com>
7000         * Binding.cs:
7001         * InternalWindowManager.cs:
7002         * MdiWindowManager.cs:
7003         * X11Keyboard.cs: I really want Mike to love me again (fix
7004         compiler warnings).
7006 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
7008         * DataGrid.cs:
7009           - OnMouseDown: Switch to editing mode when clicking on the cell
7010                          even if we're clicking on the cell that's currently 
7011                          selected
7012           - ProcessGridKey: Left/Right now wrap like MS.Net does
7013           - ProcessGridKey: Tab now knows to add a new row when tab is
7014                             pressed in the cell of the last column of the 
7015                             last row
7016           - ProcessGridKey: Enter now adds another row  if pressed in the last
7017                             row and selectes the new row, same column cell
7018           - ProcessGridKey: Home/End navigate columns, not rows, like 
7019                             originally implemented
7020           - Broke ProcessKeyPreview code out into an extra Internal method
7021             so it can be called from the edit code
7022         * DataGridTextBox.cs (ProcessKeyMessage):
7023           - Switched to accept Tab keypresses
7024           - Added F2 handling to allow jumping to the end of the edited cell
7025           - Added logic to allow moving caret left/right inside edited cell
7026             and making the edited cell jump when the caret hits cell borders
7027           - Tab and Enter are now passed to the datagrid after being handled
7028         * TextBoxBase.cs:
7029           - Removed capture code now that Control handles it
7030           - set_SelectionStart now ensures caret is visible
7032 2006-03-16  Jackson Harper  <jackson@ximian.com>
7034         * TrackBar.cs: Debackwards the increment/decrement for handling
7035         mouse clicks on the bar with vertical trackbars.
7036         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
7037         bottom to match MS.
7039 2006-03-16  Mike Kestner  <mkestner@novell.com>
7041         * ListView.cs: make shift/ctrl keyboard and mouse selection 
7042         consistent with the MS control. Fix a bug in
7043         SelectedListViewItemCollection.Clear that was pissing me off for the
7044         better part of a day because the collection was being altered
7045         underneath us as we walked the list.
7047 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
7049         * Control.cs: Not sure how we could miss this so long, but it seems
7050           that MS.Net has Capture set all the way from before calling 
7051           OnMouseDown through sending the mouse events until after
7052           OnMouseUp. This will fix DataGrid's selection being set to end
7053           at the location of the MouseUp.
7055 2006-03-15  Jackson Harper  <jackson@ximian.com>
7057         * BindingContext.cs: Check the binding after its added so that it
7058           can initialize the binding managers and hookup to events.
7059         * Binding.cs: Data members seem to sometimes include rows/cols in
7060           the format Row.Column we now take this into account.
7061           - Hookup to the position changed event so we can update the
7062           control when the position has changed in the data set.
7063         * CurrencyManager.cs: Take into account the row/col naming
7064           convention when creating dataset tables.
7065         * BindingContext.cs: Using a newer better way of storing
7066           datasource/datamember pairs.  Hopefully this better matches MS for
7067           looking up binding managers.
7070 2006-03-15  Jackson Harper  <jackson@ximian.com>
7072         * BindingContext.cs: The currency manager needs the data member
7073         name, if the member is a data set we use the name to find the
7074         correct table.
7075         * CurrencyManager.cs: When creating the list prefer an IList over
7076         an IListSource.
7077         - Attempt to create a DataTable from a DataSet (TODO: might need
7078         some better error checking here, although MS doesn't seem to have much)
7079         - If we have a DataTable create a view and use it as our list.
7081 2006-03-15  Mike Kestner  <mkestner@novell.com>
7083         * ListView.cs: keep a matrix of the icon mode layout to facilitate
7084         keyboard navigation. Support Up/Down/Left/Right selection correctly
7085         for all 4 View modes.
7086         * ListViewItem.cs: add internal row/col fields for icon layouts.
7088 2006-03-15  Jackson Harper  <jackson@ximian.com>
7090         * TabControl.cs: Redraw the tabs when we resize so their newly
7091         calculated sizes are drawn on screen.
7092         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
7093         composite characters.
7094         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
7095         - filter events so that composite characters can be created
7096         patches by peter
7097         * X11Structs.cs: Add XIMProperties enum.
7099 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
7101         * Control.cs (BringToFront, SendToBack): Don't use window or handle
7102           unless it's created
7104 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
7106         * Control.cs (PerformLayout): We don't need to consider visiblity
7107           for anchoring, only for docking. This fixes 'whacky' alignment
7108           in listbox and other controls that use implicit scrollbars after
7109           the previous PerformLayout patch
7110         * ListBox.cs: Switched to use implicit scrollbars
7111           
7112 2006-03-14  Mike Kestner  <mkestner@novell.com>
7114         * ToolBar.cs: 
7115         * VScrollBar.cs:
7116         - chain up the "new event" overrides to base and use
7117         OnEvent to raise them.  Part of fix for bug #76509.
7119 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
7121         * FileDialog.cs: Do not select an item in the parent directory
7122           on backspace
7124 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
7126         * Control.cs (PerformLayout): It would seem that we considered
7127           invisible windows for our layout. Not quite the right thing
7128           to do. Now we don't any longer, thereby fixing bug #76889.
7130 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
7132         * Control.cs (CanFocus): I goofed. A control can have focus 
7133           even though it's not selectable. Made it match MS docs.
7135 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
7137         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
7138           center by default (fixes #76895)
7139         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
7140           all uses of Border3DSides.All with the explicit ORd together
7141           Left|Right|Top|Bottom because I assume that nobody was aware 
7142           that All also implies a center fill. Most places I checked had
7143           a fill right above.
7144         * ProgressBarStyle.cs: Added
7146 2006-03-13  Mike Kestner  <mkestner@novell.com>
7148         * ListView.cs: fix breakage in drag shadow header positioning 
7149         from Peter's csc compilation fix.
7151 2006-03-13  Mike Kestner  <mkestner@novell.com>
7153         * ListView.cs: fix NRE produced by backspacing twice in a focused
7154         FileDialog.
7156 2006-03-13  Mike Kestner  <mkestner@novell.com>
7158         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
7160 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
7162         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
7163           be changed
7164         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
7165           the allowed size before making programmatic size changes
7167 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
7169         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
7170           set, metacity is broken and will still use the emty sizes in 
7171           the struct. (Fix for #77089)
7173 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
7175         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
7176           WindowExStyles and marked both enums as Flags
7177         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
7178           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
7179           to match WindowStyles split
7180         * XplatUIX11.cs:
7181           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
7182           - Updated to match WindowStyles split
7183         * XplatUIWin32.cs:
7184           - Fixed FosterParent creation, was using ExStyle on the Style field
7185             (This should help with Popup focus issues)
7186           - Updated to match WindowStyles split
7188 2006-03-13  Jackson Harper  <jackson@ximian.com>
7190         * MdiWindowManager.cs: Use the system menu height. Fixes some
7191         strange sizing issues.
7193 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
7195         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
7196         * TextBoxBase.cs:
7197           - Scroll to caret after inserting text (#77672)
7198           - Make scroll range one pixel higher, fixes off-by-one error (and
7199             makes underlines visible on the last line)
7201 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
7203         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
7204           the keyboard state from being stuck with keys in 'pressed' state when
7205           focus is switched away via keyboard
7206         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
7207           reset the keyboard if no X11 KeyUp events are expected to come
7208         * X11Structs.cs: Switched type of Visible to bool to match driver
7210 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
7212         * TextControl.cs:
7213           - Switched caret to be just 1 pixel wide, matches MS and looks less
7214             clunky
7215           - Moved caret display 1 pixel down from the top of the control
7216             to improve view
7217           - InsertCharAtCharet: Update the selection start if moving the caret
7218             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
7219           - No longer always creating the caret when the caret methods are
7220             called. Only the actual ShowCaret/HideCaret will do that now
7221           - Only setting caret visible if the owner control has focus
7222           - UpdateView: Added invalidation-shortcut logic for center and right 
7223             aligned text. Previously we'd update all according to the left
7224             logic which caused drawing errors. Also fixed height of invalidated
7225             areas, now properly invalidating the whole area (was off-by-one)
7226           - owner_HandleCreated: Always generate the document when the
7227             handle is created; this ensures that 
7228         * TextBoxBase.cs:
7229           - Fixed situation where caret would disappear under the right
7230             window border, also improved scrolling behaviour on left-
7231             aligned textboxes
7232           - Fixed right-aligned textboxes to have a border to the
7233             right instead of the caret being under the right border
7234         * XplatUIX11.cs:
7235           - Switched from 'nested' to simple visible/not visible tracking 
7236             for caret (part of fix for #77671)
7237           - No longer passing through translated FocusIn/FocusOut messages
7238             since we were notifying too often and the wrong windows. Instead
7239             we just notify our focussed window of receiving or loosing focus
7240         * XplatUIWin32.cs: Switched from 'nested' show/hide 
7241           counting for caret to simple visible yes/no behaviour (part of 
7242           fix for #77671)
7244 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
7246         * Mime.cs: Remove debug code...
7248 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
7250         * MimeGenerated.cs: Removed
7251         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
7252           and subclasses) from /usr/(local/)share/mime and
7253           $HOME/.local/share/mime.
7255 2006-03-10  Jackson Harper  <jackson@ximian.com>
7257         * MdiWindowManager.cs: Recalc the NC area when a window is
7258         maximized/restored so that the menu area is drawn on forms that
7259         don't have a menu.
7261 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
7263         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
7264           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
7265           us to force a WM_NCCALCRESIZE message being sent. This is needed
7266           for MDI maximizing.
7268 2006-03-10  Jackson Harper  <jackson@ximian.com>
7270         * Form.cs: We need to use the ActiveMenu when calculating menu
7271         height.
7272         - Fix nullref when the window manager hasn't been created yet.
7273         * Control.cs: Fix nullref when we try to bring a control to the
7274         front that has no parent.
7275         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
7276         height.
7277         - Add a dummy item to the maximized menu so it always has the
7278         correct height. Otherwise when there are no menus we don't get our
7279         icon and buttons.
7280         
7282 2006-03-10  Jackson Harper  <jackson@ximian.com>
7284         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
7285         stuff.
7286         * Form.cs: Make the window_state internal so the window managers
7287         can track it.
7288         - When an MDI child is maximized let its window manager create the
7289         main menu (so it can add its icon).
7290         - Notify the window managers of state changes
7291         - Let the window manager paint its buttons and handle button
7292         clicks on the menu when it is maximized.
7293         * InternalWindowManager.cs: Move the prev_bounds into the mdi
7294         window manager, since tool windows don't use it, only mdi windows.
7295         - Tell the main form that we don't want it to handle NCPAINT
7296         itself to avoid extra painting.
7297         - Handle clicks on a maximized windows menu.
7298         - Handle window state changes
7299         - Handle minimize/maximize clicks correctly by setting the window state.
7300         * MdiWindowManager.cs: Add an icon menu that (the menu you get
7301         when clicking on the forms icon).
7302         - New method to create a forms maximized menu. This is its normal
7303         menu + an icon.
7304         - Handle window state changes.
7305         - Handle sizing of maximized windows.  Maximized windows are just
7306         drawn bigger then the parent visible area. All controls are still
7307         there, they are just outside the visible area (this matches windows).
7308         * MdiClient.cs: No scrollbars when a child window is maximized.
7309         - Let the children windows figure out how big they should be when
7310         sizing maximized windows.
7311         - Implement a version of ArrangeIconicWindows somewhat similar to
7312         Windows version.  There are some little differences, but I don't
7313         think any app will rely on the layout of minimized mdi windows.
7315 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
7317         * Padding.cs: Several fixes to allow compiling with csc 2.0
7319 2006-03-09  Jackson Harper  <jackson@ximian.com>
7321         * Menu.cs:
7322         * MenuItem.cs: Cheap hack so we can add items to the list without
7323         the events being raised.  This allows adding mdi items during
7324         drawing. TODO: Should probably find a better time to add the items.
7326 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
7328         * ThemeWin32Classic.cs:
7329           - CheckBox_DrawText: Added logic to not wrap if not enough space
7330             is available (Fix for bug #77727)
7331           - RadioButton_DrawText: Added logic not to wrap if not enough
7332             space is available (Fix for bug #77727). Also removed some
7333             duplicate code, DrawString always drawing the regular text
7334             before hitting the if statement.
7336 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
7338         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
7340 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
7342         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
7343         * ContainerControl.cs: Partial implementation of some 2.0 scaling
7344           methods. Moved the new 2.0 properties into alphabetical order with
7345           other properties and added MonoTODO tags
7347 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
7349         * AutoScaleMode.cs: Added. Fix build.
7351 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
7353         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
7354           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
7355           and was requiring premature handle creation for calls from above
7356         * Form.cs, Control.cs: Removed handle arguments from calls to
7357           CalculateClientRect()
7359 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
7361         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
7362           drag_column.column_rect is MarshalByRef and can't be used that way
7364 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
7366         * AxHost.cs: Added deserialization constructor for 
7367           AxHost+State (fixes 77743)
7369 2006-03-09  Mike Kestner  <mkestner@novell.com>
7371         * ListView.cs: 
7372         - Added column drag reordering for details view.
7373         - fixed behavior when mouse is dragged off column and
7374         AllowColumnReorder is false.
7375         * ColumnHeader.cs: clone the format too in Clone.
7376         * Theme.cs: add DrawListViewHeaderDragDetails method.
7377         * ThemeWin32Classic.cs:
7378         - impl new method for drawing drag column shadows and targets.
7379         - support column offset for details mode in DrawListViewItem.
7381 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
7383         * TextControl.cs: Reset the char_count when the document is cleared
7384           (Fixes bug reported on mono-winforms mailing list)
7386 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
7388         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
7389           of calling base we simply process the key ourselves, since both
7390           DefWindowProc and the handled method would set m.Result. 
7391           (Fixes #77732)
7393 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
7395         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
7396           method also moves the window; instead implemented a copy of
7397           Control.ScaleCore (Part of fix for #77456)
7398         * TextBoxBase.cs: 
7399           - Created new CreateGraphicsInternal method to allow providing
7400             a graphics context when no handle is created without triggering
7401             handle creation. (Part of fix for #77456)
7402           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
7403         * TextControl.cs: 
7404           - Switched Constructor to require TextBoxBase instead of Control (to
7405             allow uncast access to CreateGraphicsInternal)
7406           - Safeguarded use of owner.Handle property. No longer accessing it
7407             unless the handle is already created.
7408           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
7409           - Now triggering a recalc when owning control becomes visible
7410         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
7411           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
7412           premature handle creation (Part of fix for #77456)
7413         * Control.cs:
7414           - We now only destroy our double-buffering buffers when the
7415             control is resized or disposed, but not when visibility
7416             changes. (The code even re-created them twice every time)
7417           - Now requiring a redraw of the buffer on visibility changes
7418             (fixes bug 77654 part 2)
7419           - Not passing OnParentVisibleChanged up unless the control
7420             is visible
7421           - CanFocus: Fixed to match MS documentation
7422           - Focus: Fixed to return actual focus state and to check if
7423             setting focus is legal before setting it
7425 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
7427         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
7428           when to draw focus rectangle by looking at parent focus and
7429           selected state instead. This fixes TabPages on Linux sometimes
7430           having none or multiple focus rectangles.
7431         * XplatUIX11.cs (SetFocus): 
7432           - Don't set the focus if the same window already has focus
7433           - Use SendMessage instead of PostMessage (like it's Win32
7434             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
7435             to match MS behaviour
7436         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
7437           are not selectable.
7439 2006-03-07  Jackson Harper  <jackson@ximian.com>
7441         * PictureBox.cs: Revert line I accidently committed last week.
7443 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
7445         * Control.cs: 
7446           - Added new IsRecreating and ParentIsRecreating properties to
7447             allow testing if RecreateHandle has been called on ourselves
7448             or one of our parents
7449           - WndProc(WM_DESTROY): If our control handle is being recreated
7450             we immediately need to create the handle when receiving the
7451             destroy, that way our child windows find a valid parent handle
7452             when they themselves are being recreated upon WM_DESTROY receipt
7453             (fix for bug #77654 part 1)
7454         * XplatUIX11.cs:
7455           - DestroyWindow: WM_DESTROY must be sent to our own window before
7456             notifying any child windows. MS documents that child windows
7457             are still valid when WM_DESTROY is received. (Control now relies on
7458             this behaviour)
7459           - Added some fine-grain debug options
7461 2006-03-06  Jackson Harper  <jackson@ximian.com>
7463         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
7464         box and base calculations off this.
7465         * MdiChildContext.cs:
7466         * MdiWindowManager.cs: Don't need to ensure scrollbars here
7467         anymore.
7468         
7469 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
7471         * Splitter.cs: In situations where the affected control is added
7472           to the parent's control list after the splitter, we would not
7473           populate affected. Now we try populating it on mousedown, if
7474           it's not already set, and force it to be re-set whenever our
7475           parent changes.
7477 2006-03-03  Matt Hargett  <matt@use.net>
7479         * Control.cs: implement Control.Padding
7480         * Padding.cs: -Padding.All returns -1 when constructing with the
7481         implicit default ctor
7482         -Padding.ToString() matches MS.NET
7483         * ContainerControl.cs: implement
7484         ContainerControl.AutoScaleDimensions
7485         * ListControl.cs: implement ListControl.FormattingEnabled
7486         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
7487         * ButtonBase.cs:
7488         * TabPage.cs: Implement UseVisualStyleBackColor.
7489         * PictureBox.cs: Implement PictureBox.InitialImage.
7491 2006-03-03  Mike Kestner  <mkestner@novell.com>
7493         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
7494         event declarations to proxy to base event.
7495         * ListViewItem.cs: update to use ItemControl.
7496         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
7497         * ThemeWin32Classic.cs: update to new ListView theme API and fix
7498         column header label rendering for 0 width columns.
7500 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
7502         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
7503           that causes the control to be created. Fixes #77476.
7505 2006-03-02  Jackson Harper  <jackson@ximian.com>
7507         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
7508         expose_pending.
7510 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
7512         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
7513           passed in for the EventArgs (fixes #77690)
7515 2006-03-01  Jackson Harper  <jackson@ximian.com>
7517         * ScrollBar.cs: Refresh afterbeing resized.
7519 2006-02-28  Mike Kestner  <mkestner@novell.com>
7521         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
7522         Clean up a tracker compile warning.
7523         * MenuItem.cs: add internal PerformPopup method.
7524         [Fixes #77457]
7526 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
7528         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
7529           implicit expose) when the text is set to null
7531 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
7533         * RichTextBox.cs (FlushText): When newline is true, we always
7534           need to split the line, even if no text is on it and we may
7535           never eat newlines. (Fixes #77669)
7537 2006-02-28  Mike Kestner  <mkestner@novell.com>
7539         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
7540         and set Selected instead.
7541         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
7542         collections.
7544 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
7546         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
7548 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
7550         * FontDialog.cs:
7551           - Got rid of the panel. All controls are now directly added to
7552             the dialog form
7553           - It is now possible to set a font with the Font property
7554           - MinSize and MaxSize property do now what they should
7555           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
7556           - Searching and selecting a font with the font textbox works now,
7557             the same applies to the style and size textbox
7558           - Draw the correct 3D border in the example panel
7559           - Fixed a little mem leak (unused fonts didn't get disposed)
7560           - Many other internal updates/rewrites...
7561           - Fix typo
7563 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
7565         * TextControl.cs: 
7566           - InsertRTFFromStream: Added 'number of characters inserted' argument
7567           - set_SelectedRTF: Now using the number of characters to calculate
7568             the new location for the selection and cursor (x/y cannot be used
7569             due to potentially already wrapped text)
7571 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
7573         * TextControl.cs: Added property and implemented means to allow 
7574           disabling recalculation of a document (can be used to speed up
7575           multiple inserts and is needed to make RTF inserts predictable, see
7576           bug #77659)
7577         * RichTextBox.cs: Using the new NoRecalc property of Document to
7578           keep x/y insert locations predictable. Also makes it faster inserting
7579           large chunks of RTF
7581 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
7583         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
7584           it's easier for a child control to handle the other messages without
7585           having to duplicate the special functionality
7586         * TextBoxBase.cs
7587           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
7588             code to handle processing the key ourselves, in order to get 
7589             access to the result of KeyEventArgs.Handled. We now only call 
7590             ProcessKey if they key hasn't been handled already. Fixes #77526.
7591           - set_Text: If null or empty string is given, just clear the 
7592             document. Fixes part of #77526
7594 2006-02-27  Jackson Harper  <jackson@ximian.com>
7596         * SizeGrip.cs: Paint the background color before painting the grip
7597         so things look right.
7598         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
7600 2006-02-27  Mike Kestner  <mkestner@novell.com>
7602         * ListView.cs:
7603           - Restructure layout and invalidation model to remove a ton of
7604           flicker from the control and speed up performance in general.
7605           - Add manual column resize, flickers like crazy, but I already have
7606           some ideas on how I'll fix that. (#76822)
7607           - Merge the three Icon-based views into a single layout method.
7608           - Move item selection interaction logic from the item since 
7609           interaction with the collections is more appropriate to the view.
7610           - Deselection on non-item clicks.
7611         * ListViewItem.cs:
7612           - Encapsulate most of the layout. Add some internal props to trigger
7613           layout.  Move to a model where Items invalidate themselves instead
7614           of just invalidating the whole control every time something changes.
7615           - Invalidate on Text/Caption changes.
7616           - switch to an offset based layout model to avoid having to absolute
7617           position every element on item moves.
7618           - correct checkbox layout to conform to MS layout.
7619         * ThemeWin32Classic.cs:
7620           - refactor some column header drawing code.
7621           - fix string justification for column headers (#76821)
7622           - make SmallIcon labels top justified for compat with MS impl.
7623         * ThemeClearlooks.cs:
7624           - adjust to new ListViewItem internal checkbox bounds api.
7626 2006-02-27  Jackson Harper  <jackson@ximian.com>
7628         * Control.cs:  Change where implicit controls fall in the zorder.
7629         They are now on top of all children.
7630         - Synced AddImplicit code with Add
7631         - Removed unused enumerator.
7632         * SizeGrip.cs: Remove the TODO as its been TODONE.
7634 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
7636         * TextControl.cs(Insert): Combine the last lines unless the insertion
7637           string ends with \n\n, otherwise we leave one line too many (Fixes
7638           something I noticed with the testapp for #77526; the bug itself was
7639           already fixed in the previous checkin)
7641 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
7643         * RichTextBox.cs:
7644           - SelectionColor and SelectionFont methods no longer set absolute
7645             styles. Instead, the keep font or color respectively (This 
7646             resolves a long-standing FIXME in the code)
7647           - When flushing RTF text, the insert code now considers text trailing
7648             behind the insertion point (Fixes the bug where when replacing
7649             the selected text via SelectedRTF the remainder of the line behind 
7650             the selection would stay on the first insertion line)
7651         * TextBoxBase.cs:
7652           - AppendText now updates the selection points after inserting text
7653           - AppendText now ensures that the last tag (sometimes 0-length) of
7654             the document is used for the style information (Fixes part of 
7655             bug #77220)
7656         * TextControl.cs:
7657           - Created new FontDefiniton class to allow describing partial style
7658             changes
7659           - StreamLine() now takes a lines argument, to allow it to decide
7660             whether an encountered zero-length tag is the last in the document
7661             (which must be kept to not loose the font/color contained in it,
7662             for later appends)
7663           - Created Combine() and Split() methods for Marker structs, to 
7664             support marker updates due to reformatted documents (soft line
7665             wraps)
7666           - Implemented Document.CaretTag setter
7667           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
7668             of the last line (Not the cause, but also exposed by bug #77220)
7669           - Added LineTag argument to InsertString method, to allow callers
7670             to force a certain tag to be used (required to force use of the
7671             trailing zero-length tag of a document)
7672           - Now updating markers in Combine(), to avoid stale tag markers
7673           - Added some method descriptions to aid maintenance
7674           - Implemented new FormatText concept, allowing additive/subtractive
7675             formatting by only specifying the components that are to be 
7676             changed. This was needed for resolving the RTB.SelectedColor/
7677             RTB.SelectedFont fixmes
7678           - Added Break() support method to allow breaking up linetags (used
7679             for partial formatting)
7680           - Added GenerateTextFormat() method. It is used for partial 
7681             formatting and allows to generate a full font/color from given
7682             attributes and an existing tag.
7684 2006-02-26  Jackson Harper  <jackson@ximian.com>
7686         * XplatUIX11.cs:  Use the correct caption height.
7687         - Translate hittest coordinates to screen coords to match MS.
7688         * XplatUIWin32.cs: When we create MDI windows we need to reset
7689         some of the style flags, so we get a nice blank window, and can
7690         draw all the decorations ourselves.
7691         - Set a clipping rectangle on the non client paint event, the
7692         window manager drawing code needs one.
7693         * Form.cs: The window manager needs to know when the window state
7694         has been updated.
7695         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
7696         don't need to factor in border and title sizes in these
7697         methods. TODO: Remove the args and fix the call points.
7698         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
7699         properly.
7700         - Let the driver set the cursors.
7701         - Improve active window handling
7702         - Correct sizes for title bars and buttons.
7703         - Match MS drawing better
7704         * MdiWindowManager.cs: We don't need to handle border style
7705         updates specially anymore.
7706         - Check for scrollbars when windows are done moving
7707         - Handle Active properly.
7708         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
7709         correctly. I am spewing the exception though, so we don't hide the
7710         bugs.
7711         
7712 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
7714         * DataGridViewRowPostPaintEventArgs.cs,
7715           DataGridViewCellPaintingEventArgs.cs,
7716           DataGridViewRowCollection.cs,
7717           DataGridViewRowPrePaintEventArgs.cs,
7718           DataGridViewCell.cs: Clear a few warnings and implement a few
7719           exceptions that should be thrown.
7721 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
7723         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
7724           'inheriting' our parent's (non-default) cursor. (Part of
7725            the fix for #77479)
7727 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
7729         * XplatUIX11.cs: Fixed cast to make csc happy
7731 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
7733         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
7734           it's for the client area (part of fix for #77479 and needed
7735           for MDI window cursor handling)
7736         * XplatUIX11.cs
7737           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
7738             the appropriate default cursors and also passing the message
7739             up the parent chain 
7740           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
7741             for non-client areas
7743 2006-02-15  Jackson Harper  <jackson@ximian.com>
7745         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
7746         is a real MDI window
7748 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
7750         * X11DesktopColors.cs: Instead of checking the desktop session
7751           string for "KDE" check if it starts with "KDE"
7753 2006-02-10  Jackson Harper  <jackson@ximian.com>
7755         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
7756         systems).
7758 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
7760         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
7761           errors
7762         * ColorDialog.cs:
7763           - Got rid of the panel. All controls are now directly added to
7764             the dialog form
7765           - Changed to mono coding style
7767 2006-02-10  Jackson Harper  <jackson@ximian.com>
7769         * InternalWindowManager.cs: We don't need the set visibility to
7770         false hack anymore now that peter has written beautiful shutdown
7771         code.
7773 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
7775         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
7776           where already explicitly destroyed
7778 2006-02-10  Jackson Harper  <jackson@ximian.com>
7780         * MdiClient.cs: Handle the case where windows are too high or to
7781         the left and we need scrollbars.
7783 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
7785         * MimeIcon.cs: Added some icons
7786         * FileDialog.cs:
7787           - Fixed bug #77477
7788           - Got rid of the panel. All controls are now directly added to
7789             the dialog form
7790           - Changed to mono coding style
7791           - On Linux "My Computer" and "My Network" will now show some
7792             more usefull information. A new class, MasterMount, gathers
7793             this information from /proc/mount. Updated MWFFileView to make
7794             use of this information
7795           - Fixed a bug that caused FileDialog to crash when
7796             ".recently_used" file had a zero size
7797           - FilterIndex does now what it should
7798           - Some Refactoring
7799         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
7800             FileDialog changes
7802 2006-02-09  Jackson Harper  <jackson@ximian.com>
7804         * ComboBox.cs: Don't touch if null.
7806 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
7808         * Cursor.cs: 64bit safeness fix
7809         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
7811 2006-02-09  Jackson Harper  <jackson@ximian.com>
7813         * Form.cs: If a form is made into an MDI form update the styles so
7814         all the props can get set correctly.
7815         - Kill the mdi_container when we dont need it anymore.
7816         * InternalWindowManager.cs: Add missing NOT
7818 2006-02-08  Jackson Harper  <jackson@ximian.com>
7820         * InternalWindowManager.cs: Respek clipping when drawing MDi
7821         decorations.
7823 2006-02-08  Jackson Harper  <jackson@ximian.com>
7825         * Hwnd.cs: Add bits to track non client expose events.
7826         * XplatUIX11.cs: Track non client expose events on the hwnd. This
7827         gives us a proper invalid rect and will allow for some nice
7828         optimizations with NC client drawing
7829         - MDI windows are children windows, so move their style handling
7830         into the child window block.
7831         * InternalWindowManager.cs: Remove a state reset that was
7832         getting invoked at the wrong time. Fixes managed windows getting
7833         into a 'stuck' captured state.
7835 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
7837         * TextControl.cs (Document.ctor): Now initializing 
7838           selection_anchor. Fixes #77493
7840 2006-02-07  Jackson Harper  <jackson@ximian.com>
7842         * TrackBar.cs: The increment/decrements were backwards.
7844 2006-02-07  Mike Kestner  <mkestner@novell.com>
7846         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
7847         to the instance itself.
7849 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
7851         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
7852           on ulongs and pointers, the size differs between 32bit and 64bit
7853           systems. 
7855 2006-02-07  Mike Kestner  <mkestner@novell.com>
7857         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
7858         for 64 bit platforms to work around a metacity bug. 
7860 2006-02-07  Jackson Harper  <jackson@ximian.com>
7862         * TrackBar.cs: Process the input keys we need, and hookup to
7863         KeyDown instead of using WndProc, so we get key messages.
7865 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
7867         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
7868           machine we're on. 
7869         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
7870           we need to translate the XdndVersion atoms array before sending it
7872 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
7874         * XplatUIX11.cs: 
7875           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
7876             number of bits for the property, not the number of bytes. The
7877             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
7878             but would not crash since it specified 8 bits instead of 4 bits)
7879           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
7880             defined as XID -> long in the C headers)
7881           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
7882             references since those are now IntPtr to begin with
7883           - Switched all Atom.XXX 'int' casts to IntPtr casts
7884           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
7885           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
7886           - Added XChangeActivePointerGrab DllImport (for X11DnD)
7887         * X11Structs.cs:
7888           - Changed 'int' type for Atoms in XEvent structures to IntPtr
7889           - Changed atom in HoverStruct to be IntPtr
7890         * X11DnD.cs:
7891           - Removed local DllImports, switched code to use those from XplatUIX11
7892           - Removed/fixed casts related to the switch of Atom to be a IntPtr
7894 2006-02-06  Mike Kestner  <mkestner@novell.com>
7896         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
7897         method signatures in the import region.  There may still be some
7898         lingering struct marshaling issues, as I didn't drill down into those.
7899         Yet.
7901 2006-02-06  Jackson Harper  <jackson@ximian.com>
7903         * ComboBox.cs: Dont manually set the top_item, this is computed
7904         when the scrollbar position is set.
7906 2006-02-06  Mike Kestner  <mkestner@novell.com>
7908         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
7909         startup crashes on amd64.  There's other fixes needed.  All pinvoke
7910         usage of Atom needs to be mapped to IntPtr for example.  And there are
7911         likely other int/long issues to be addressed.
7913 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
7915         * FileDialog.cs: One more...
7917 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
7919         * FileDialog.cs: Next try
7921 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
7923         * FileDialog.cs: First part of fix for #77464
7925 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
7927         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
7928           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
7929           AcceptButton border drawing.
7931 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
7933         * Form.cs: Moved positioning of form after auto scaling is applied,
7934           otherwise it would possibly use wrong form size.
7936 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
7938         * Control.cs (RecreateHandle): No need to re-create any child
7939           controls, the child windows will get destroyed automatically by
7940           the windowing system or driver, and re-created when the handle
7941           is being accessed the first time. Fixes #77456
7942         * Form.cs: No longer setting the form to closing if the handle is 
7943           being recreated. This seems like the right thing to do, don't
7944           have a bug or testcase for this, though.
7946 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
7948         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
7949           controls to avoid unwanted side effects
7951 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
7953         * Control.cs: 
7954           - ScaleCore needs to scale the bounds, not the ClientSize of the 
7955             control. Fixes #77416.
7956           - DefaultSize is 0,0 for control
7957         * TextBoxBase.cs: 
7958           - DefaultSize is 100, 20
7959           - SetBoundsCore: Now enforcing the height, no matter if the provided
7960             height is more or less than the preferred one, as long as AutoSize
7961             is on
7962         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
7964 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
7966         * Control.cs:
7967           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
7968             call unless both performLayout is true *and* we have a pending
7969             layout change
7970           - ResumeLayout: MS does not completely nest Suspend and Resume,
7971             they bottom out at 0, fixed our code to match that.
7972           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
7973             SetBoundsCore, we were updating even when we shouldn't. This fixes
7974             swf-anchors mis-anchoring when resizing the app fast and lots.
7975           - UpdateDistances: Now only setting the left and top distance if 
7976             we have a parent and are not suspended, this is based on
7977             a suggestion by Don Edvaldson in bug #77355.
7978           - OnVisibleChanged: Fixed logic when to create the control. We may
7979             not create the control if we have no parent or if it's not visible;
7980             switched to using Visible property instead of is_visible field 
7981             since the property also considers parent states. This fixes a bug
7982             when starting Paint.Net
7984 2006-02-02  Jackson Harper  <jackson@ximian.com>
7986         * Form.cs: If the forms handle hasn't been created yet don't call
7987         into xplatui to make it top most, just set the topmost flag on the
7988         form in CreateParams
7989         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
7991 2006-02-01  Jackson Harper  <jackson@ximian.com>
7993         * ScrollableControl.cs: Refactored the Recalculate method a
7994         little, this wasn't handling all the variants of bottom and right
7995         bars needed to be added and added/removed based on their
7996         counterparts being added/removed (which changes the drawable
7997         size). Also we special case client widths and heights of 0 and
7998         don't add the scrollbar for those.
8000 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
8002         * XplatUIX11.cs: 
8003           - Added method to get AbsoluteGeometry(); currently unused, but might
8004             be used in the future, if we try again to figure out toplevel
8005             coordinates with some more crappy window managers
8006           - Added FrameExtents() method to retrieve the WM set decoration size
8007           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
8008             to deal with at least KDE, FVWM and metacity (Fixes #77092)
8009         * Hwnd.cs: 
8010           - Added whacky_wm tracking var for metacity
8011           - Added logic to have default menu height if the actual menu height
8012             has not yet been calculated (part of fix for #77426)
8013         * Form.cs: Keep track whether client size has been set and re-set 
8014           it if a menu is added/removed afterwards (Fixes #77426)
8016 2006-01-31  Jackson Harper  <jackson@ximian.com>
8018         * Control.cs: When a new Site is set on the component attempt to
8019         pull the AmbientProperties from it.
8021 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
8023         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
8024           in the background of the owning form. Fixes #77332
8026 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
8028         * MimeIcon.cs: Fix for #77409
8030 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
8032         * XplatUIX11GTK.cs: Initial import
8034 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
8036         * FixedSizeTextBox: fixes class signature
8038 2006-01-30  Jackson Harper  <jackson@ximian.com>
8040         * FixedSizeTextBox.cs: New internal class that represents a
8041         textBox that will not be scaled.
8042         * TreeView.cs:
8043         * ComboBox.cs:
8044         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
8045         standard TextBox.
8046                 
8047 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
8049         * XplatUIX11.cs: Retrieve default screen number instead of
8050           assuming 0. Attempted fix for #77318
8052 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
8054         * XplatUIWin32.cs: 
8055           - GetWindowPos: When a window is parented by FosterParent, use 
8056             the desktop instead of FosterParent as the base to get coordinates
8057           - CreateWindow: Don't make FosterParent the parent window for Popups
8058             if we don't want a taskbar entry, Popups automatically don't get one
8059         * Hwnd.cs: Need to call remove to actually remove the key from the
8060           hash table
8062 2006-01-30  Mike Kestner  <mkestner@novell.com>
8064         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
8066 2006-01-30  Jackson Harper  <jackson@ximian.com>
8068         * TreeView.cs:
8069         * TreeNode.cs: Raise events no matter how the treenode is
8070         checked. Patch by Don Edvalson.
8072 2006-01-30  Jackson Harper  <jackson@ximian.com>
8074         * TreeNode.cs: Signature fix.
8076 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
8078         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
8080 2006-01-20  Mike Kestner  <mkestner@novell.com>
8082         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
8083         event forwarding when menus are active.
8084         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
8085         Most of the patch is pdb's with a little rework.
8087 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
8089         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
8090           Removed GetMenuDC and ReleaseMenuDC methods; replaced
8091           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
8092         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
8093         * InternalWindowManager.cs: Added use of PaintEventStart/End to
8094           handling of WM_NCPAINT message, now passing the PaintEventArgs to
8095           the PaintWindowDecorations method
8096         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
8097         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
8098         * MenuAPI.cs: Made tracker window invisible
8099         * XplatUIWin32.cs:
8100           - Removed GetMenuDC and ReleaseMenuDC methods
8101           - Implemented the client=false path for PaintEventStart and
8102             PaintEventEnd
8104 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
8106         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
8107         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
8108           styles
8109         * Form.cs: 
8110           - MaximizeBox, MinimizeBox: Recreate the handle when setting
8111             the style
8112           - CreateParams: Reworked the styles to match MS look'n'feel,
8113             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
8114             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
8116 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
8118         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
8119           window is not mapped, since otherwise every form that's being 
8120           created is considered minimized, which is wrong.
8121         * Form.cs: Catching the exception and returning our internal value
8122           instead
8124 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
8126         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
8127           SetWindowMinMax() to have means to tell the driver about the minimum,
8128           maximum and maximized state window sizes. (Part of the fix for #76485)
8129         * Form.cs:
8130           - Implemented tracking of minimum and maximum window size, now calling
8131             new SetWindowMinMax() driver method to tell the driver (Part of the
8132             fix for #76485)
8133           - Finished handling of WM_GETMINMAXINFO method, now setting all values
8134             (Completes fix for #76485)
8135           - Calling new SetWindowMinMax driver method when the handle for a 
8136             form is created, to make sure the driver knows about it even if
8137             the values have been set before the window was created
8138           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
8139             to avoid messing up our anchoring calculations (partial fix
8140             for #77355)
8141         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
8142         * XplatUIX11.cs:
8143           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
8144           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
8145             (and presumably other freedesktop.org compliant WMs). Left the
8146             assumption unmapped=minimized, needed for SetVisible to work.
8147           - Now setting the window state when creating windows
8148           - Fixed SetVisible to consider/set the window state when mapping
8149             a Form. We cannot set the state before it's mapped, and we cannot
8150             use Form.WindowState once it's mapped (since it would ask the
8151             driver and get 'normal'. Therefore, we grab the state before
8152             mapping, map, and then set state.
8153           - Implmemented SetWindowMinMax method; Metacity does not seem to
8154             honor the ZoomHints, though.
8155         * XplatUIWin32.cs:
8156           - Removed MINMAXINFO (moved to XplatUIStructs)
8157           - Added SetWindowMinMax stub (on Win32 the only way to set that
8158             information is in response to the WM_GETMINMAXINFO message, which
8159             is handled in Form.cs)
8160           - Added logic to SetVisible to set the proper window state when a 
8161             form is made visible (fixes #75720)
8163 2006-01-26  Jackson Harper  <jackson@ximian.com>
8165         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
8166         same way we handle them with Invoke.
8168 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
8170         * Form.cs:
8171           - Added tracking of window state so CreateParams can return
8172             the appropriate style
8173           - Moved setting of WS_CAPTION style in CreateParams to allow
8174             styles without caption
8175         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
8176           control if the TextBox property is accessed. Fixes #77345
8177         * Control.cs:
8178           - get_Created: now uses is_disposed and is_created to determine
8179             return value (suggested by Jackson)
8180           - CreateHandle: No longer exits if the handle is being recreated
8181           - RecreateHandle: If the handle is not yet created call the 
8182             appropriate method to create either control or handle. If the
8183             control is already created CreateHandle will simply exit instead
8184             of just creating the handle
8185         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
8186           now SendMessage WM_DESTROY directly to the control when DestroyWindow
8187           is called.
8188         * XplatUIX11.cs: 
8189           - When DestroyWindow is called, instead of waiting for the 
8190             DestroyNotification from X11, we directly post it to the WndProc
8191             and immediately dispose the hwnd object.
8192             Same applies to DestroyChildWindows, and this obsoletes the
8193             expose_pending tracking. Contrary to Win32 behaviour we destroy our
8194             child windows before our own, to avoid X11 errors.
8195           - Removed the direct sending of WM_PAINT on UpdateWindow
8196         * XplatUIWin32.cs:
8197           - Reworked DoEvents and GetMessage to allow access to internal queue
8198             even when trying non-blocking access to the queue.  Fixes #77335. 
8199             Based on a patch suggestion by Don Edvalson. The new private
8200             GetMessage can now also be used as a backend for a PeekMessage
8201             frontend version.
8202         * XplatUI.cs: Improved debug output for CreateWindow
8204 2006-01-25  Jackson Harper  <jackson@ximian.com>
8206         * Help.cs: Allow param to be null. Patch by Don Edvalson.
8208 2006-01-24  Jackson Harper  <jackson@ximian.com>
8210         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
8211         when we have a MaxDropItems lower then the selected index.
8213 2006-01-24  Jackson Harper  <jackson@ximian.com>
8215         * Control.cs: Don't allow selection of non visible controls, allow
8216         selection of controls without parents.
8218 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
8220         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
8221         * DataGridDrawingLogic.cs: Add editing row only when is necessary
8223 2006-01-23  Jackson Harper  <jackson@ximian.com>
8225         * UpDownBase.cs: Make the textbox handle all the selection and
8226         tabbing. This fixes tabing to updown controls.
8228 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
8230         * TextBoxBase.cs: fixes exception thown the object was null
8232 2006-01-23  Jackson Harper  <jackson@ximian.com>
8234         * ButtonBase.cs: Just use the base CreateParams. They set
8235         visibility and enabled correctly.
8236         * ComboBox.cs:
8237         * TrackBar.cs:
8238         * MonthCalendar.cs: Lets let the base set as much of the
8239         createparams as possible so we don't have duplicate code all over
8240         the place.
8242 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
8244         * ThemeGtk.cs: Added TrackBar and some experimental code to
8245           get double buffering back
8247 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
8249         * DataGrid.cs: Allows row number set internally higher than the last
8250         when creating a new row. Restores the editing functionality.
8252 2006-01-20  Mike Kestner  <mkestner@novell.com>
8254         * MimeIcon.cs: delay Image creation until the icons are accessed
8255         instead of creating 190 scaled images on GnomeHandler startup.
8257 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
8259         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
8260           first call base before processing the event. Fixes #77279
8262 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
8264         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
8265           that the stride for the GDI bitmap would match the stride of
8266           a DIB or a Cursor.
8268 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
8270         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
8272 2006-01-19  Jackson Harper  <jackson@ximian.com>
8274         * ComboBox.cs: Hookup the text controls keydown event so we get
8275         those when the text control has the focus.
8277 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
8279         * Label.cs: Now using the base events instead of defining new ones;
8280           this allows us to just call the base properties without having to
8281           duplicate all base property logic 
8283 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
8285         * Label.cs: A label by default is not a tabstop (Fixes one of our
8286           failing nunit tests)
8288 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
8290         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
8291         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
8293 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
8295         * Cursor.cs: Reimplemented creating cursor bitmaps without using
8296           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
8297           This fixes #77218
8298         * XplatUIWin32.cs: 
8299           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
8300             constructor creates images that can't be saved. Part of the fix
8301             for #76103
8302           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
8303           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
8304             bug fix for handling window state in forms properly)
8306 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
8308         * ThemeGtk.cs: Simplify ScrollBar drawing
8310 2006-01-18  Jackson Harper  <jackson@ximian.com>
8312         * Splitter.cs: Set the default dock style for the splitter control
8313         in the constructor.
8315 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
8317         * ThemeGtk.cs: Corrected StateType and ShadowType for
8318           gtk_paint_box
8320 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
8322         * Control.cs: Make use of Theme.DoubleBufferingSupported
8323         * ThemeGtk.cs:
8324           - Added drawing for flat style buttons
8325           - Added ScrollBar drawing
8327 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
8329         * ThemeClearlooks.cs: Removed some unneeded code.
8330         * ThemeGtk.cs: First part of ThemeGtk enhancements.
8332 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
8334         * LinkLabel.cs: We need to update the hover drawing when
8335           leaving the control as well.
8337 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
8339         * DataGrid.cs: Clicking on non empty areas in the columns
8340            area was giving an exception
8342 2006-01-17  Jackson Harper  <jackson@ximian.com>
8344         * ThemeWin32Classic.cs:
8345         * ListView.cs: Do not draw/clip the headers when the header style
8346         is None.
8348 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
8350         * DataGrid.cs: Fixes 77260
8351         
8352 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
8354         * DataGrid.cs: Clicking on a column on a empty grid was giving
8355           an exception
8357 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
8359         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
8360           or any keypress will crash the grid.
8362 2006-01-17  Mike Kestner  <mkestner@novell.com>
8364         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
8365         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
8366         invisible/previously-visible items.
8367         [Fixes #76909]
8369 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
8371         * ThemeClearlooks.cs:
8372         - Added CL_Draw_Button method; now other theme controls that are 
8373           not derived from button or do not have a button can draw buttons
8374           too
8375         - Updated ComboBox drawing
8376         - Beautified RadioButton drawing
8377         - Corrected drawing of bottom and left tabs
8378         - Beautified DateTimePicker and MonthCalendar
8379         - Added CPDrawButton and CPDrawRadioButton
8381 2006-01-16  Jackson Harper  <jackson@ximian.com>
8383         * ComboBox.cs: Set the initial value of the scrollbar to the
8384         current index. Reduce the numbers of refreshs and IndexOfs called.
8386 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
8388         * FileDialog.cs: When the file listview is focused hitting the
8389           backspace key moves the fileview to the parent directory
8391 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
8393         * Form.cs: 
8394           - Added RecreateHandle call when changing taskbar visibility to 
8395             trigger reparenting in Win32 driver (Fixes #75719)
8396           - If a window has minimize or maximize buttons, it cannot have
8397             a help button
8398         * XplatUIWin32.cs:
8399           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
8400             the toplevel form with FosterParent (A toolwindow not on the
8401             taskbar) (Fixes #75719)
8402           - Made FosterParent a toolwindow
8404 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
8406         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
8408 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
8410         * ToolTip.cs: If SetToolTip is called from a control and the mouse
8411           is currently over that control, make sure that tooltip_window.Text
8412           gets updated
8414 2006-01-13  Mike Kestner  <mkestner@novell.com>
8416         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
8418 2006-01-13  Jackson Harper  <jackson@ximian.com>
8420         * TreeView.cs: On MS GetNodeAt never actually factors in the X
8421         value passed.  Also redraw the selected node when we recieve
8422         focus, so tabbing between trees works correctly.
8424 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
8426         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
8427           ~/.gconf/%gconf-tree.xml, so use
8428           .gconf/desktop/gnome/interface/%gconf.xml
8430 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
8432         * TextControl.cs: Draw text in gray if control is disabled
8434 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
8436         * TreeView.cs: Draw the focus rectangle outside the highlight, to
8437           make sure it's always visible. Fixes #76680.
8439 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
8441         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
8443 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
8445         * PageSetupDialog.cs: Added.
8446         * PrintDialog.cs: Attributes.
8447         * PrintPreviewControl.cs: Updates.
8448         * PrintPreviewDialog.cs: Updates.
8449         
8450 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
8452         * Control.cs: Undid my selection check fix, since it's not needed
8453         * TextBoxBase.cs:
8454           - Now considering the presence of hscroll/vscroll when sizing
8455             vscroll/hscroll respectively. Fixed bug #77077
8456           - Added Left/Up/Down/Right to IsInputKey list to prevent
8457             ContainerControl from stealing them. This fixes what I broke
8458             with my last checkin.
8460 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
8462         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
8463           I finally understand how the property can be set without a setter :-)
8465 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
8467         * Application.cs:
8468           - Switched RunLoop to use static Message.Create to create a 
8469             Message object
8470           - Added PreProcessMessage call in runloop for keyboard events; this
8471             is part of the fix for #77219, I overlooked this originally in the
8472             MSDN doc for PreProcessMessage
8473         * Control.cs:
8474           - Removed call to PreProcessMessage from handling of keyboard 
8475             messages; it's supposed to be done in the message pump
8476           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
8477             per MSDN documentation.
8478           - IsInputChar: All chars are input chars by default; removed the 
8479             parent calling chain, MS does not document that
8480           - PreProcessMessage: If IsInputChar is true, we want to return false
8481             to allow dispatching of the message
8482           - When selecting the next control, now also check that we're not
8483             selecting ourselves again and therefore return a false positive.
8484         * TextBoxBase.cs:
8485           - Tried to match return values for IsInputKey and ProcessDialogKey
8486             to what MS returns; moved processing of our special keys outside
8487             ProcessDialogKey since MS does not seem to return true on those.
8488           - Moved code that previously was in ProcessDialogKey into new private
8489             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
8490           - Reworked handling of WM_CHAR to not have to duplicate code from
8491             Control.cs anymore, instead we simply call down to base.
8492            
8493 2006-01-12  Jackson Harper  <jackson@ximian.com>
8495         * ComboBox.cs: We always need to refresh the text area when
8496         EndUpdate is called. Fixes the combobox in the file dialog.
8497         * Control.cs: Don't create the creator_thread until the controls
8498         handle is created.  Also in InvokeRequired we check if the
8499         creator_thread is null. This gives the effect of InvokeRequired
8500         returning true if the controls handle is not created yet, and
8501         matches MS.
8503 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
8505         * XplatUI.cs:
8506           - Added StartLoop() driver method. This is used to allow drivers to
8507             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
8508             loop for a particular thread
8509           - Added EndLoop() driver method. This is called once the message
8510             pump for the thread is shut down
8511           - Added SupportsTransparency method to allow the driver to indicate
8512             opacity support for windows
8513         * Form.cs:
8514           - Removed TODO attribute, completed AllowTransparency property
8515           - Added documented logic to Opacity
8516         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
8517           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
8518           versions of CompatibleTextRendering
8519         * X11Structs.cs: Added opacity atom to our atom enumeration
8520         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
8521           of a form might be set before it's reparented by the WM, and we need
8522           the opacity value without calling up to Form)
8523         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
8524           SupportsTransparency() driver methods
8525         * Application.cs: Now calling StartLoop and EndLoop driver methods
8526         * XplatUIX11.cs:
8527           - Added opacity atom registration
8528           - Added StartLoop()/EndLoop() methods. They're empty right now but
8529             will need to get implemented when we switch to a per-thread queue
8530           - Implemented SupportsTransparency() method
8531           - Implemented SetWindowTransparency() method
8532           - Added support for setting the opacity value when a window is
8533             reparented (since the opacity needs to be set on the WM frame)
8534         * XplatUIOSX.cs, XplatUIWin32.cs:
8535           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
8537 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
8539         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
8541 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
8543         * FileDialog.cs: Added ToolTip for MWFFileView
8544         * MimeIcon.cs: Rewrote GnomeHandler.
8545           - Get currently used gnome icon theme from
8546             ($HOME)/.gconf/%gconf-tree.xml
8547           - Make use of inherited icon themes
8548           - Support SVG icon themes like Tango via librsvg
8550 2006-01-12  Miguel de Icaza  <miguel@novell.com>
8552         Revert's Jackson's revert which broke 2.0 builds.   Fix both
8553         builds. 
8554         
8555         * Application.cs: Move the use_compatible_text_rendering outside
8556         the NET_2_0 define.  If we ever need to use the
8557         use_compatible_text_rendering on the individual controls they will
8558         access the variable from the common shared code paths.
8560 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
8562         * XplatUI.cs:
8563           - Added more granular debug options
8564           - Added method to print both window text and id
8565           - Switched debug output to use new Window() debug method
8566           - Added IsEnabled() driver method
8567           - Added EnableWindow() driver method
8568         * Form.cs:
8569           - Removed end_modal; no longer needed, new loop handles termination
8570             via 'closing' variable
8571           - If form is modal, setting DialogResult will now initiate loop
8572             termination via 'closing' variable
8573           - Added support for is_enabled/WS_DISABLED to CreateParams
8574           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
8575             does all the work
8576           - Removed code that's now in RunLoop from ShowDialog()
8577           - Added various documented sanity checks to ShowDialog()
8578           - Added handling of WM_DESTROY message; we set 'closing' on getting
8579             the message to indicate the message pump to terminate
8580           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
8581             send by the Application.ExitThread method. (We send the message
8582             to destroy the window after all other events have been
8583             processed through the queue, instead of destroying the handle 
8584             directly)
8585           - Moved code from Close() method to WM_CLOSE handler; added logic
8586             to only send close-related events if the form is not displayed
8587             modal
8588         * Splitter.cs (..ctor): Fixed typo in resource name
8589         * Control.cs:
8590           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
8591             brush now
8592           - set_Cursor: Now only setting calling into XplatUI if the handle for
8593             the control is already created; this avoids implict handle creation
8594             or crashes if it's not created
8595           - set_Enabled: Now setting the enabled state via the new driver method
8596             instead of just tracking it
8597           - CreateParams: Added logic to set WS_DISABLED based on enabled state
8598           - CreateControl: Reordered event firing and method calls to more
8599             closely fire events in the order MS does. Now setting the
8600             enabled state in the driver when creating the control.
8601           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
8602             match MS order
8603         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
8604           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
8605         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
8606         * Hwnd.cs:
8607           - Added tracking of window enabled state (get_Enabled/set_Enabled)
8608           - Added EnabledHwnd property to easily allow a driver to find the
8609             handle of the first enabled window in the parent chain (this is
8610             used by drivers to pass up input events of disabled windows)
8611         * XplatUIDriver.cs: Added IsEnabled() method
8612         * Application.cs:
8613           - Removed crude and obsolete exiting tracking variable
8614           - Removed internal ModalRun(); replaced by RunLoop()
8615           - Implemented private CloseForms() method to allow closing all 
8616             windows owned by a particular (or all) threads
8617           - Exit() now properly closes all windows without forcing the message
8618             pump to quit
8619           - Removed obsolete InternalExit() method
8620           - Changed Run() methods to use new RunLoop() message pump
8621           - Implemented new RunLoop() method for both modal and non-modal forms
8622         * CommonDialog.cs:
8623           - get_CreateParams: Added setting of WS_DISABLED
8624           - Simplified ShowDialog(); now all the work is done in RunLoop(),
8625             invoked via Form.ShowDialog()
8626         * NativeWindow.cs: We don't remove the window from the collection when
8627           the handle is destroyed; there might still be messages for it in the
8628           queue (mainly the resulting WM_DESTROY); instead it will be removed
8629           when Control calls InvalidateHandle in the WM_DESTROY handler
8630         * XplatUIX11.cs:
8631           - CreateWindow: Added logic to handle the WS_DISABLED window style
8632           - EnableWindow: Implemented based on Hwnd.Enabled
8633           - GetMessage: Reset PostQuitState so the method can be called again
8634           - Implemented support for disabled windows (passing messages to the
8635             first enabled parent) in handling all input messages
8636           - Added optimizations for handling Expose events
8637           - Implemeted new driver method IsEnabled()
8638           - Now always resetting paint pending tracking vars when we start paint
8639           - Re-implemented UpdateWindow via just sending a WM_PAINT message
8640         * XplatUIOSX.cs: Added IsEnabled method stub
8641         * XplatUIWin32.cs: Implemented new IsEnabled() method
8643 2006-01-11  Jackson Harper  <jackson@ximian.com>
8645         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
8646         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
8647         variables a little.
8648         * ColorDialog.cs: Clear out the old form before adding the new
8649         panel.  
8651 2006-01-11  Jackson Harper  <jackson@ximian.com>
8653         * X11Dnd.cs: Make sure to add all the text formats when adding
8654         strings to the data object.
8655         * TreeNodeCollection.cs: When adding to a sorted tree we need to
8656         do some redrawing too.  Also change the UpdateNode to an
8657         UpdateBelow so the newly added node gets painted.
8658         
8659 2006-01-11  Miguel de Icaza  <miguel@novell.com>
8661         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
8662         LinkLabel.cs, PropertyGrid.cs: Implement the
8663         UseCompatibleTextRendering property for 2.x
8665         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
8667 2006-01-11  Jackson Harper  <jackson@ximian.com>
8669         * TreeView.cs: Use the property for setting the selected node so
8670         the correct events get raised.
8671         * TreeNode.cs: Update the tree when the fore/back colours of a
8672         node are set.
8674 2006-01-10  Jackson Harper  <jackson@ximian.com>
8676         * TreeView.cs: Allow setting SelectedNode to null.
8678 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8680         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
8682 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8684         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
8686 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8688         * PrintDialog.cs: Added attributes and set default property values.
8690 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8692         * PrintControllerWithStatusDialog.cs: 
8693         Added PrintControllerWithStatusDialog.
8695 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8697         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
8698         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
8700 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8702         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
8704 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
8706         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
8707         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
8709 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
8711         * MimeIcon.cs: Added internal class SVGUtil.
8713 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
8715         * FileDialog.cs: Don't crash if there are two files with the
8716           same name but different locations.
8718 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
8720         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
8721         dates across multiple month grids. Used to not highlight entire 
8722         month, but does now.
8723         
8724 2006-01-06  Jackson Harper  <jackson@ximian.com>
8726         * MonthCalendar.cs: Removed DoEvents call to prevent a running
8727         message loop. Change timer intervals to numbers that seem more
8728         natural.
8730 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
8732         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
8733           object for location info since screen object is now implemented.
8735 2006-01-05  Jackson Harper  <jackson@ximian.com>
8737         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
8738         * AsyncMethodResult.cs: We no longer use a WeakReference for the
8739         AsyncMethodResult, this is because we ALWAYS want the
8740         ManualResetEvent to get set.
8741         * Control.cs: When disposing use an async invoke to call shutdown
8742         code, so that thigns don't block on the finalizer thread.  Also
8743         check if we even have a message loop before trying to send
8744         messages, if we don't then don't bother sending messages.
8745         - No more weak references for async methods
8746         * XplatUIDriver.cs: No more weak references for async methods.
8748 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
8750         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
8751           returns two FontFamily with the same name
8753 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
8755         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
8756           drawing disabled text. Instead using the ColorGrayText color
8758 2006-01-04  Jackson Harper  <jackson@ximian.com>
8760         * TreeNode.cs: redraw the node when its image index is changed.
8762 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
8764         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
8765           time I checked there are no others like it.
8767 2006-01-04  Jackson Harper  <jackson@ximian.com>
8769         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
8770         this gives the behavoir I was looking for.
8771         * Control.cs: Special case Invoking EventHandlers, this matches MS
8772         and fixes part of bug #76326.
8774 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
8776         * ThemeClearlooks.cs, FileDialog.cs:
8777           - Reflect the latest Theme class changes
8778           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
8779             with DateTime
8780             
8781 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
8783         * Theme.cs: Cache UI resource images and resize them if needed
8785 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
8787         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
8788           is called. This fixes the crash in Nexxia when setting the font
8789           attributes in the chat. [However, RTF needs a look-over to make sure
8790           that all SelectionXXX methods handle the special case that selection
8791           is empty and therefore the change must be applied to all text starting
8792           at the cursor/selection start]
8794 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
8796         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
8797           XplatUIOSX.cs: Added SendMessage and PostMessage methods
8798         * X11Keyboard.cs: Switched to new way of calling PostMessage
8800 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
8802         * Theme.cs: Added theme interface for images to allow the theme to
8803           control what images are used for things like FileDialog, MessageBox
8804           icons, etc.
8805         * MessageBox.cs: Now uses the new Theme icon/image interfaces
8807 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
8809         * FileDialog.cs:
8810           - Removed some dead code
8811           - Opening a recently used file does work now
8812           - Small UI enhancements
8813           - Refactoring
8815 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
8817         * FileDialog.cs: Forgot too add __MonoCS__
8819 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
8821         * FileDialog.cs: We are able to read recently used files now let's
8822           go on and write them.
8824 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
8826         * FileDialog.cs: Breathe some life into "last open"/"recently used"
8827           button
8828         * MimeIcon.cs: Do a check for the top level media type also
8830 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
8832         * ThemeClearlooks.cs:
8833           - Added CPDrawStringDisabled
8834           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
8835             some chars if the text doesn't fit into text_rect
8836           - DrawListViewItem: If View = View.LargeIcon center the image;
8837             rewrote the drawing of ListViewItem.Text if View = 
8838             View.LargeIcon
8840 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
8842         * MimeIcon.cs: Use default KDE icon theme if there is no
8843           "48x48" directory for the current icon theme, fixes #77114
8844         * Mime.cs: Disable not working and actually not used code. 
8845         * ThemeWin32Classic.cs:
8846           - Replace "new SolidBrush" in GetControlBackBrush and
8847             GetControlForeBrush with ResPool.GetSolidBrush
8848           - Changed DrawListViewItem from private to protected virtual
8849         * FileDialog.cs:
8850           - Added form.MaximizeBox = true
8851           - Don't throw an exception if there is a broken symbolic link
8853 2005-12-23  Jackson Harper  <jackson@ximian.com>
8855         * TabControl.cs: Give the panels focus, keyboard navigation is
8856         fixed so this works correctly now.
8857         - We need these key events also.
8858         * ToolBar.cs: Remove some of the poor mans double buffering.
8859         
8860 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
8862         * ComboBox.cs: The internal TextBox now returns the focus.
8864 2005-12-23  Jackson Harper  <jackson@ximian.com>
8866         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
8868 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
8870         * Control.cs: Removed debug code
8871         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
8872           implicit children
8874 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
8876         * Control.cs: When creating the control, update the Z-order after
8877           all it's children are created, too. (Fixes nexxia not showing
8878           picturebox bug)
8880 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
8882         * Control.cs: Do not update the anchoring distances if layout is
8883           suspended, instead do it once layout is resumed
8885 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
8887         * Control.cs: 
8888           - After many hours of debugging, for both Jackson and
8889             myself, it turns out that it helps to set the parent of a control
8890             if you want to actually see it onscreen. In the spirit of that
8891             discovery, we're now setting the parent of the control and
8892             it's children when the control's handle is created. This fix
8893             will make Lutz Roeder's Reflector run happily. 
8894           - now just creating the handle instead of the whole control when
8895             getting a graphics context for the control.
8897 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
8899         * ScrollableControl.cs: When calculating the canvas, don't consider
8900           the scrollbar widths. Instead, predict if horizontal scrollbar
8901           will affect canvas when deciding on vertical display and vice versa.
8903 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
8905         * RichTextBox.cs: Set default RTF font for documents that don't
8906           have a font table (Fixes #77076)
8908 2005-12-22  Jackson Harper  <jackson@ximian.com>
8910         * TextBoxBase.cs: It's difficult to do, but you can have an empty
8911         clipboard. This prevents a NullRef in that case.
8912         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
8913         clipboard. PRIMARY is for the currently selected text only. (We
8914         should implement PRIMARY at some point.
8916 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
8918         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
8919           a Unicode function with a structure that was defined in Ansi way.
8920           This fixes #76942.
8922 2005-12-21  Jackson Harper  <jackson@ximian.com>
8924         * StatusBar.cs: Statusbar handles its fore/back colours on it's
8925         on. Because thats how it rolls. (and this avoids it using ambient
8926         colours).
8927         * ThemeWin32Classic.cs: Use the proper back color for filling.
8928         * Menu.cs: Use the system menu bar color for drawing menu
8929         bars. Using the window back color will bring ambient colours into
8930         the picture.
8932 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
8934         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
8935           Bitmaps were created and not disposed.
8937 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
8939         * Control.cs (CreateControl): Don't do anything if the control is
8940           already created, otherwise we'd fire the OnCreated event more than
8941           once
8943 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
8945         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
8946           will always match. Instead return -1. Fixes #76464.
8948 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
8950         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
8951           neither the beginning nor the end of the line (Fixes bug #76479)
8953 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
8955         * Control.cs:
8956           - ControlNativeWindow.ControlFromHandle(): Now handling situation
8957             where handle is invalid
8958           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
8959             instead of slower linear search
8960         * NativeWindow.cs: Don't remove the window from the hashtable until
8961           after the driver has destroyed it (since the driver might use
8962           Control.FromHandle to lookup the control object
8963         * Hwnd.cs: Added DestroyPending property to track if a window is 
8964           already destroyed as far as the driver is concerned and only hasn't
8965           yet notified the control
8966         * XplatUIX11.cs:
8967           - Activate(): Check if the window is still valid before using the 
8968             handle
8969           - Implemented DestroyChildWindow() method to mark child windows as
8970             destroyed when a window is destroyed. This prevents situations 
8971             where we might call an X method based on queued events for a
8972             window that already has been destroyed but we haven't yet pulled
8973             the destroy method from the queue.
8974           - Added a call to the new DestroyChildWindow() method to the drivers
8975             DestroyWindow code. Also now marking the destroyed window itself
8976             as pending
8978 2005-12-20  Jackson Harper  <jackson@ximian.com>
8980         * StatusBar.cs:
8981         * StatusBarPanel.cs: Don't calculate panel sizes on draw
8982         anymore. Just do them when needed, also track the rects of panels
8983         so that we can optimize refreshing more in the future.
8985 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
8987         * ColorDialog.cs: Fixed focus drawing in small color controls
8989 2005-12-19  Jackson Harper  <jackson@ximian.com>
8991         * InternalWindowManager.cs:
8992         * MdiWindowManager.cs: Cleanup some coordinate system changes so
8993         moving windows works properly.
8995 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
8997         * Control.cs: 
8998           - Removed call to InitLayout() from SetBoundsCore(); doc says
8999             it's only called when a control is added to a container
9000           - Split InitLayout logic, moved to separate UpdateDistances() method
9001             since we need to perform those calculations more often than just
9002             when adding the control to a container. (Needed to fix #77022)
9003           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
9004           - Reduced the OnBindingContextChanged events count, don't send them
9005             unless the control is created, we still aren't totally matching
9006             MS, but I can't quite figure out some of their rules
9008 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
9010         * ThemeClearlooks.cs: Corrected distance between ProgressBar
9011           stripes
9013 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
9015         * ThemeClearlooks.cs:
9016           - Updated ProgressBar drawing
9017           - Corrected drawing of ScrollBars and scroll buttons
9018           - Some temporary fixes for minor pixel artefacts
9020 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
9022         * Control.cs:
9023           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
9024             cause events to be sent in the same order as MS does.
9025           - Added ChangeParent() method to trigger various OnXXXChanged events
9026             that need to be fired when a parent changes (This is a reworking
9027             of the patch from r54254, with the X11 errors fixed)
9028           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
9029             since on MS we get OnLayoutChanged events when calling Clear()
9030           - Changed Enabled property to consider parent state as well, if a
9031             parent is not enabled, the control will not be either
9032           - Changed Parent property to simply call Controls.Add() since that
9033             now does all the work required, this way we avoid code duplication
9034           - Threw in a few OnBindingsContextChanged calls to try and match
9035             when MS sends them. We seem to send a few too many, though.
9036           - Added call to CreateControl when adding the control to a parent.
9037             We were never calling CreateControl. Still needs some work, in
9038             some places we treat HandleCreated and ControlCreated as equal, 
9039             which is wrong
9040           - Removed obsolete commented out code from UpdateZOrder()
9042 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
9044         * ThemeClearlooks.cs: Updated TrackBar drawing.
9046 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
9048         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
9050 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
9052         * FileDialog.cs: Add the Help button and the open readonly
9053           checkbox only if needed
9055 2005-12-16  Jackson Harper  <jackson@ximian.com>
9057         * Control.cs: Make sure we have an active menu before trying to
9058         process commands on it. Prevents menu-less forms from crashing
9059         when Alt is pressed.
9060         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
9061         Dieter Bremes.
9062         * RichTextBox.cs: Expand statement to help out gmcs and fix the
9063         2.0 build.
9065 2005-12-16  Jackson Harper  <jackson@ximian.com>
9067         * InternalWindowManager.cs: Don't translate tool windows screen
9068         coordinates. This fixes windows 'bouncing' around when being moved.
9070 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
9072         * TextBoxBase.cs:
9073           - MaxLength now treats 2^31-1 equal to unlimited length (this is
9074             not quite MS compatible, MS uses that number only for single line
9075             and 2^32-1 for multi-line, but I figure it won't hurt keeping
9076             the limit at 2GB)
9077           - Now enforcing the MaxLength limit when entering characters
9078           - Added argument to internal Paste() method to track if it's called
9079             from programatically or via keyboard, since keyboard driven pastes
9080             need to enforce max-length
9081           - Added logic to Paste to only paste as many chars as MaxLength 
9082             allows
9083         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
9084         * TextControl.cs:
9085           - Added Length property to return number of characters in document
9086           - Added private CharCount property which only tracks actual chars
9087             in the document (no linefeeds) and fires event when CharCount
9088             changes
9089           - Added tracking of character count to all methods that alter it
9090           - Added LengthChanged event to allow applications to subscribe
9091             to any changes to the document
9093 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
9095         * TextBox.cs: 
9096           - Removed local password_char field (moved to TextBoxBase)
9097           - Now setting the document's password var when password is
9098             set
9099         * TextBoxBase.cs:
9100           - Added password_char field (needed here so MultiLine can
9101             access it)
9102           - Added logic to MultiLine property setter to set the document's
9103             variable when password display is allowed
9104           - Removed debug code and made some debug code conditional
9105         * TextControl.cs:
9106           - Added RecalculatePasswordLine() method to handle special password
9107             char only lines
9108           - Added PasswordChar property, also added related tracking vars
9109           - Draw() method now uses local text var for grabbing text to draw,
9110             this var is set to line.text unless we're doing password display,
9111             then it is set to the pre-generated all-password-chars line
9112           - Added calling RecalculatePasswordLine() method for password lines
9114 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
9116         * Hwnd.cs: 
9117           - Added Reparented property to allow tracking of Window Manager
9118             reparenting actions (which affect X/Y calculations of toplevel 
9119             windows)
9120           - Made ToString() print window handles in hex
9121         * XplatUIX11.cs:
9122           - AddConfigureNotify(): Now uses reparented state off Hwnd to
9123             determine if X/Y needs offsetting
9124           - AddConfigureNotify(): Fixed offset calculations
9125           - Now adds ReparentNotify messages into the queue
9126           - Now processes ReparentNotify messages and causes a 
9127             WM_WINDOWPOSCHANGED message to be sent upstream if a window
9128             is reparented (as most likely it's X/Y coordinates are changed
9129             due to that)
9131 2005-12-14  Jackson Harper  <jackson@ximian.com>
9133         * XplatUIX11.cs: Tool windows still need to respek focus.
9135 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
9137         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
9138           have a working release
9140 2005-12-13  Jackson Harper  <jackson@ximian.com>
9142         * Form.cs: Update styles after setting the border style regardless
9143         of whether or not the window is using a window manager.
9145 2005-12-13  Jackson Harper  <jackson@ximian.com>
9147         * Form.cs: We now hook into an internal window manager instead of just an
9148         MDI subsystem, this is so we can have properly behaving tool windows.
9149         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
9150         * InternalWindowManager.cs: New internal class that acts as a
9151         window manager for tool windows and as a base for mdi windows.
9152         * MdiWindowManager.cs: New class that acts as a window manager for
9153         mdi windows.
9155 2005-12-12  Jackson Harper  <jackson@ximian.com>
9157         * Control.cs: Updates so we match behavoir for for implicit
9158         controls. Fixes explosions in MDI.
9160 2005-12-12  Jackson Harper  <jackson@ximian.com>
9162         * Control.cs: Implement Invalidate (Region).
9164 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
9166         * Control.cs: 
9167           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
9168             the same events as MS does. MS fires events for each property 
9169             except, for unknown reasons, Cursor, when the control is reparented. 
9170             I can't seem to totally match add/remove since MS also fires some 
9171             VisibleChanged events, which makes no sense. Consolidated the
9172             parenting code into a separate method so it can be called from
9173             both Add and Remove. set_Parent no longer needs any special logic
9174             as it calls the parent's add method which implicitly fires
9175             all events
9176           - Removed some obsolete code and debug output
9177           - Enabled state is inherited from parents, if this is enabled
9179 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
9181         * Form.cs: Removed commented out code
9183 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
9185         * Control.cs:
9186           - Added internal version of Invoke, with additional argument 
9187             indicating if we're calling it from a Dispose() handler. That
9188             way we can avoid BeginInvoke throwing an exception if we're
9189             calling for an already destroyed window.
9190           - Added a dispose argument to BeginInvokeInternal, and made the
9191             check if a valid window handle chain exists conditional on
9192             it not being a dispose call
9193           - Removed code in DestroyHandle to destroy our children. Since we
9194             now handle the WM_DESTROY message we will catch all our children
9195             being destroyed.
9196           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
9197         * Form.cs:
9198           - Added a field to track the application context of the form.
9199           - No need to set closing variable as response to WM_CLOSE, instead
9200             we destroy the window. We also call PostQuitMessage if the form
9201             has an application context (which makes it the main app form,
9202             which, when closed terminates the app)
9203         * XplatUI.cs:
9204           - Dropped Exit() method, it's naming was confusing
9205           - Added PostQuitMessage() which causes GetMessage to return false
9206             once the message queue is empty
9207         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
9208           PostQuitMessage()
9209         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
9210           no longer a valid XplatUI method, but left it in since it's used
9211           internally. Added empty PostQuitMessage() method.
9212         * MenuAPI.cs: Replaced call to Exit() with call to
9213           PostQuitMessage, even though this is probably no longer needed.
9214         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
9215         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
9216         * Application.cs:
9217           - Replaced call to XplatUI.Exit() with PostQuitMessage()
9218           - Removed old debug code that would call XplatUI for exception
9219             display, enabled standard exception handling (Still not enabled
9220             though, until NativeWindow's ExternalExceptionHandler define
9221             is removed
9222         * NativeWindow.cs:
9223           - Added internal method to allow control to update NativeWindow
9224             after a window has been destroyed
9225           - Added handling of already destroyed windows when calling i
9226             DestroyWindow
9227           - Added removal of handle from list on ReleaseHandle
9228         * XplatUIX11.cs:
9229           - Dropped GetMessageResult var and related code
9230           - Added PostQuitState to field to track if PostQuitMessage has been
9231             called
9232           - Dropped Exit() method
9233           - Added PostQuitMessage() method
9234           - GetMessage now will return false if PostQuitState is set and no
9235             more messages are in the queue.
9236           - Expose handler will no longer generate WM_PAINT messages if we are
9237             in PostQuitState since it's very likely any windows have already
9238             been destroyed, and since Hwnd won't get updated until we have
9239             processed the DestroyNotify we'd be causing X errors.
9240         
9241 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9243         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
9244           Thanks to Mike for pointing out the err of my ways.
9246 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9248         * Control.cs(PreProcessMessage): Moved menu handling back, but
9249           after all other key handling, to match MS (who handles Menu in
9250           DefWndProc)
9251         * Menu.cs (WndProc): Removed my brainfart
9253 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9255         * Control.cs(PreProcessMessage): Removed special menu handling 
9256         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
9258 2005-12-07  Mike Kestner  <mkestner@novell.com>
9260         * Control.cs : special case SYSKEYUP so that we can adjust keynav
9261         state according in tracker.
9262         * Menu.cs : promote tracker field to base class and provide a tracker
9263         lookup capability.  Add/Remove shortcuts dynamically if the top menu
9264         has a tracker. Unparent items that are removed from the collection.
9265         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
9266         * Theme*.cs: add always_show_hotkeys field to support configurability
9267         of mnemonic display.  win32 doesn't show mnemonics until Alt is
9268         pressed.
9270 2005-12-07  Jackson Harper  <jackson@ximian.com>
9272         * MdiChildContext.cs: Use Control.ResetCursor.
9273         * Control.cs: ResetCursor needs to set the property so that the
9274         correct XplatUI call gets made.
9276 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9278         * Control.cs: More fixes to make our key events match MS. We
9279           were not setting the modifier state on KeyData, and we were
9280           not generating any events when Alt was pressed with a key
9281           since handling of WM_SYSxxx was missing for the OnKey methods.
9283 2005-12-07  Jackson Harper  <jackson@ximian.com>
9285         * MdiChildContext.cs: reenable the sizing code.
9286         - When the mouse leaves a window reset its cursor.
9288 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
9290         * ThemeClearlooks.cs: Reflect latest Hwnd changes
9292 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9294         * Hwnd.cs: Now using the theme 3d bordersize to calculate
9295           widths of Fixed3D borders
9297 2005-12-07  Jackson Harper  <jackson@ximian.com>
9299         * MdiClient.cs: Fix warnings. Earn Mike's love.
9301 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
9303         * ThemeClearlooks.cs:
9304           - Adjusted mouse over button color
9305           - Added first parts of CheckBox drawing
9306           - Added correct color for selected text background
9307           - Fixed ComboBox drawing
9308           - Added CPDrawBorder3D and CPDrawBorder
9310 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
9312         * XplatUIX11.cs: Added call to XBell for AudibleAlert
9314 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
9316         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
9317           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
9318           alert users via sound. We could add an enum arg with different
9319           types of alerts in the future
9321 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
9323         * Control.cs: Fix behaviour problems pointed out by Mike
9325 2005-12-05  Mike Kestner  <mkestner@novell.com>
9327         * StatusBarPanel.cs: add Invalidate method and hook it into all the
9328         prop setters.  Calls parent.Refresh for now, but could be maybe be
9329         optimized with an internal method on StatusBar at some point.
9330         [Fixes #76513]
9332 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
9334         * RichTextBox.cs: Implemented get_SelectionColor
9336 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
9338         * ThemeClearlooks.cs:
9339           - Removed dead code
9340           - Draw black button border only if button is Form.AcceptButton
9341           - Draw correct button color for pressed RadioButton if the mouse 
9342             has entered the button
9343           - Updated ProgressBar drawing!
9344           - Updated CPDrawSizeGrip drawing
9345           - Updated StatusBarPanel drawing
9347 2005-12-05  Mike Kestner  <mkestner@novell.com>
9349         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
9350         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
9352 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
9354         * ThemeClearlooks.cs: Initial check-in, activate with
9355           export MONO_THEME=clearlooks
9356         * ThemeEngine.cs: Added ThemeClearlooks
9358 2005-12-03  Mike Kestner  <mkestner@novell.com>
9360         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
9361         [Fixes #76897]
9363 2005-12-02  Jackson Harper  <jackson@ximian.com>
9365         * Form.cs: If the child form has no menu the default main menu is
9366         used as the active menu.
9368 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
9370         * ListBox.cs: Check if any items exist before trying to resolve 
9371           coordinates into items
9373 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
9375         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
9376           as the second color for the background hatch
9378 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
9380         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
9381         * RichTextBox.cs: FormatText position arguments are 1-based, now making
9382           sure that what we pass to FormatText is always 1-based. Fixes #76885
9384 2005-11-29  Miguel de Icaza  <miguel@novell.com>
9386         * NumericUpDown.cs (EndInit): When we are done initializing,
9387         reflect any updates on the UI.
9389 2005-12-02  Jackson Harper  <jackson@ximian.com>
9391         * ImplicitHScrollBar.cs:
9392         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
9393         their container controls.
9394         * TreeView.cs: Use the new implicit scrollbars.
9396 2005-12-02  Jackson Harper  <jackson@ximian.com>
9398         * TreeView.cs: Make top_node internal so the TreeNodeCollections
9399         can play with it.
9400         * TreeNodeCollection.cs: If we remove the topnode we need to
9401         update topnode to the next node in line.
9402         - When clearing nodes go through the same process as removing
9403         them, so they get depareneted and checked if they are top node.
9405 2005-12-01  Jackson Harper  <jackson@ximian.com>
9407         * TreeView.cs: When imagelists are used the image area is
9408         selectable as well as the text.
9409         - If there are no selected nodes select the first one.
9410         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
9411         so don't do it more then we need to.
9413 2005-12-01  Jackson Harper  <jackson@ximian.com>
9415         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
9416         that arrows can be scaled.
9418 2005-12-01  Jackson Harper  <jackson@ximian.com>
9420         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
9421         fail. Patch by Dieter Bremes
9423 2005-11-30  Jackson Harper  <jackson@ximian.com>
9425         * Form.cs: Property is 2.0 only
9426         * PrintDialog.cs: Signature fix.
9428 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
9430         * TextControl.cs: 
9431           - No longer artificially moves text 2 pixels down (now that we have
9432             borders this is no longer needed)
9433           - Added calcs for left, hanging and right indent
9435 2005-11-23  Mike Kestner  <mkestner@novell.com>
9437         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
9439 2005-11-30  Jackson Harper  <jackson@ximian.com>
9441         * MdiChildContext.cs: Set the cloned menus forms, as these don't
9442         get cloned as part of CloneMenu ().
9443         * Menu.cs: Make sure the parent of the items get set correctly
9444         when they are added.  And the owners are notified of the changes.
9445         * Form.cs: Create an ActiveMenu property, so that when MDI is used
9446         we can change the menu being displayed/handled by the form without
9447         changing the menu assosciated with the form.
9448         - Don't let Mdi children draw/handle menus.
9449         
9450 2005-11-30  Jackson Harper  <jackson@ximian.com>
9452         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
9453         a MenuChanged event. Just to make the API a little more
9454         consistent.
9455         * MainMenu.cs:
9456         * MenuItem.cs: Use the new OnMenuChanged
9457         * MdiChildContext.cs: Handle menu merging.
9458         * Form.cs: Implement MergedMenu.
9459         
9460 2005-11-30  Jackson Harper  <jackson@ximian.com>
9462         * Menu.cs: We were misusing Add. Add goes behind the specified
9463         index according to the docs, and does not replace the specified
9464         index. So I added an Insert method.
9466 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
9468         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
9469           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
9470           is for Jackson
9471         * RichTextBox.cs: Added calls to base for DnD events
9473 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
9475         * TextControl.cs:
9476           - Fixed drag-selection related crash; style fixes
9477           - Implemented undo class
9478             o Implemented method to capture document state for specified
9479               range in document tree
9480             o Implemented method to restore captured document state
9481             o Implemented cursor tracking
9482             o Implemented basic undo stack
9483           - Added undo cursor tracking to methods altering cursor location
9484           - Added undo tracking to selection deletion (still missing
9485             other text-altering hookups)
9486         * RichTextBox.cs:
9487           - Added SelectionLength property
9488           - Implemented CanPaste()
9489           - Implemented Paste()
9490           - Added missing protected methods
9491           - Fixed RTF->Document conversion; now uses font index 0 and color 
9492             index 0 as the default font for the parsed text
9493           - Fixed RTF<->Document font size translation
9494           - Fixed RTF generation, now properly handles cross-tag boundaries
9495             for single line selection
9496           - No longer always appends blank line to generated RTF
9497           - Removed TODOs
9498           - Added missing attributes
9499           - Hooked up undo-related methods
9500         * TextBoxBase.cs:
9501           - Implemented Copy()
9502           - Implemented Paste()
9503           - Implemented Cut()
9504           - Fixed caret mis-behaviour on backspace across line-boundaries
9506 2005-11-29  Jackson Harper  <jackson@ximian.com>
9508         * MdiClient.cs: Add a method for activating mdi children. Very
9509         basic right now. I imagine someday it might need more girth.
9510         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
9511         children windows names are added to the menu item.
9512         * ThemeWin32Classic.cs: Draw the arrow if the item is an
9513         mdilist. This happens regardless of whether or not there are any
9514         mdi windows to see in the list, and according to my tests happens
9515         before the items are even added. Also happens if there isn't even
9516         an mdi client to get windows from.
9518 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
9520         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
9521         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
9523 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
9525         * DataGridTableStyle.cs:
9526           - Create always the styles for the missing columns even if they are
9527             provided by the user (not default table style)
9528         * DataGrid.cs:
9529           - Fixes bug 76770
9530           - Fixes SetDataBinding (always re-attach source)
9531           - Fixes SetNewDataSource (only clear styles if they are not for 
9532             this source)
9533          -  Expands OnTableStylesCollectionChanged to handle style refresh 
9534             and remove properly
9536 2005-11-29  Jackson Harper  <jackson@ximian.com>
9538         * FileDialog.cs: Implement missing bits, remove some dead
9539         code.
9540         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
9541         creation of the panel so that the options set on the dialog are
9542         seen when the panel is created.
9543         * TreeView.cs: raise a click when items are clicked.
9544         
9545 2005-11-29  Jackson Harper  <jackson@ximian.com>
9547         * MdiClient.cs: Pass some signature methods through to base.
9549 2005-11-28  Jackson Harper  <jackson@ximian.com>
9551         * ListView.cs: Raise the click event when items are clicked.
9553 2005-11-28  Jackson Harper  <jackson@ximian.com>
9555         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
9556         a nullref.
9558 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
9560         * ThemeNice.cs: - Removed 1 pixel bitmaps
9561           - Use SmoothingMode.AntiAlias where it makes sense
9562             (ScrollButton arrow for example)
9563           - Enhanced Button focus drawing
9564           - Fixed ComboBox drawing (no artefacts anymore, focus
9565             rectangle is back again, reduced size of ComboButton, etc.)
9566           - Fixed RadioButton focus drawing for Appearence.Button
9567           - Slight ScrollButton redesign
9568           - Some LinearGradientBrush size fixes
9569           - GroupBoxes have now rounded edges
9570           - Fixed StatusBar drawing
9572 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
9574         * ThemeNice.cs: - Remove dead code
9575           - use correct background colors for menus, etc.
9576           - Fake pixel drawing with 1 pixel bitmaps
9578 2005-11-24  Jackson Harper  <jackson@ximian.com>
9580         * MdiClient.cs: Size the scrollbars when resizing the window.
9581         - Resize the maximized windows when the client is resized
9582         * Form.cs: Make the child context available
9583         
9584 2005-11-23  Jackson Harper  <jackson@ximian.com>
9586         * MdiChildContext.cs: Don't size windows if they are maximized.
9588 2005-11-23  Mike Kestner  <mkestner@novell.com>
9590         * ContextMenu.cs: use MenuTracker.
9591         * Control.cs: remove menu handle usage.
9592         * Form.cs: remove menu handle usage.
9593         * Hwnd.cs: remove menu handle usage.
9594         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
9595         motion and clicks to the new Tracker handlers.
9596         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
9597         and handle usage.
9598         * MenuAPI.cs: refactored to combine popup and menubar event handling.
9599         Killed the MENU and MENUITEM data types and associated collections
9600         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
9601         MenuTracker class that exposes the leftovers from the old MenuAPI
9602         static methods. Restructured Capture handling so that only one grab is
9603         done for the entire menu hierarchy instead of handing off grabs to
9604         submenus. Tracker now has an invisible control to Capture when active.
9605         * MenuItem.cs: add sizing accessors, kill Create
9606         and handle usage.
9607         * Theme.cs: remove menu handle and MENU(ITEM) usage.
9608         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
9609         MENU(ITEM). remove menu handle usage, use Menu directly.
9610         * XplatUIDriver.cs: remove menu handle usage.
9611         * XplatUIOSX.cs: remove menu handle usage.
9612         * XplatUIWin32.cs: remove menu handle usage.
9613         * XplatUIX11.cs: remove menu handle usage.
9615 2005-11-22  Jackson Harper  <jackson@ximian.com>
9617         * Hwnd.cs: Don't compute the menu size for
9618         DefaultClientRectangle.
9619         - Reenable menu sizes being computed for GetClienRectangle.
9620         * Form.cs: Remove comment of trechery
9621         
9622 2005-11-22  Jackson Harper  <jackson@ximian.com>
9624         * Hwnd.cs: The adjustments for the menu bar are made when it is
9625         attached to the form.
9627 2005-11-19  Jackson Harper  <jackson@ximian.com>
9629         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
9630         (just like on windows).
9632 2005-11-19  Jackson Harper  <jackson@ximian.com>
9634         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
9635         use real buttons anymore because they are in non client area. The
9636         one TODO here is that I need to somehow invalidate a section of
9637         the non client area.
9639 2005-11-18  Jackson Harper  <jackson@ximian.com>
9641         * Control.cs: Put the enum check back in now that MDI doesnt have
9642         to use this to set border styles.
9643         * Form.cs: Only set mdi child windows borders if the handle has
9644         been created.
9645         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
9646         this directly on to the driver.
9647         - Get the move start position before adjusting for the titlebar
9648         height, this fixes the windows "skipping" when they are first
9649         moved.
9651 2005-11-18  Jackson Harper  <jackson@ximian.com>
9653         * XplatUIX11.cs: Just compute the mdi borders separately as they
9654         don't totally match up with normal form borders.
9656 2005-11-18  Jackson Harper  <jackson@ximian.com>
9658         * Control.cs: Set WS_ styles for borders, so that the driver does
9659         not have to retrieve the control instance to figure out what kind
9660         of borders it should have.
9661         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
9662         driver can know its an mdi child easily.
9663         * XplatUIX11.cs: Get the border styles and whether the window is
9664         MDI from the Styles and ExStyles params instead of having to get a
9665         control. This prevents a chicken and egg problem.       
9667 2005-11-18  Jackson Harper  <jackson@ximian.com>
9669         * MdiClient.cs: Fix typo so scrollbars show up correctly.
9671 2005-11-18  Jackson Harper  <jackson@ximian.com>
9673         * MdiClient.cs: Calculate when to add and remove scrollbars
9674         correctly.
9675         * MdiChildContext.cs: Adjust the y position to take the titlebar
9676         into account.
9677         - No height for FormBorderStyle.None
9679 2005-11-18  Jackson Harper  <jackson@ximian.com>
9681         * Control.cs: Allow non enum values to be used for
9682         InternalBorderStyle.  MDI does this to set a special border style.
9683         - New utility methods for converting points to/from client coords
9684         - Add the newly created control to the Controls collection before
9685         updating its style. This way UpdateStyle can walk the control
9686         heirarchy to find the control if needed.
9687         so I don't need to create a new Point object all the time.
9688         * Form.cs: Let MDI windows handle their border styles.
9689         - Set styles on MDI windows so the correct title style is derived.
9690         * MdiChildContext.cs: Move all the painting and window handling
9691         into the non client area.
9692         - Use correct sizing and put correct buttons on frames based on
9693         the FormBorderStyle.
9694         - Notify the mdi client about scrolling
9695         - Need to handle the buttons ourselves now, because they are all
9696         in non client areas and we can't add controls there.
9697         * MdiClient.cs: Halfway to scrolling, this implementation is
9698         somewhat broken though, we need to check to make sure other
9699         windows aren't causing scrolling before removing the bars. Also
9700         the bars need to be drawn on top, maybe I can switch implicit
9701         controls to be on top.
9702         * Hwnd.cs: caption_height and tool_caption_height are now
9703         properties of an hwnd, this way they can be set by the driver
9704         based on the type of window they are.  In X11 the window manager
9705         handles the decorations so caption_height is zero unless its an
9706         MDI window.
9707         - Add 3 pixel borders for MDI windows (0xFFFF).
9708         - Get rid of some code duplication, have DefaultClientRectanle
9709         just call GetClientRectangle.
9710         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
9711         Hwnd now.
9712         - Set border styles differently for mdi windows.
9713         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
9714         Hwnd now.
9715         
9716 2005-11-15  Mike Kestner  <mkestner@novell.com>
9718         * Menu.cs: when adding an item to the collection, if item is already 
9719         parented, remove it from the parent.
9721 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
9723         * X11DesktopColors.cs: Added KDE support
9725 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
9727         * XplatUIWin32.cs: 
9728           - Clipboard methods now can translate Rtf format
9729           - No longer removes clipboard contents whenever a new format is added
9730             to allow placing multiple formats on the clipboard
9731         * Clipboard.cs: Clipboard now supports getting a IDataObject and
9732           will place all formats contained in it onto the clipboard. Also
9733           now cleans the clipboard before placing a new object onto it
9734         * RichTextBox.cs:
9735           - Implemented set_Rtf
9736           - Implemented set_SelectedRtf
9737           - Created InsertRTFFromStream() method to allow single code base
9738             for all properties and methods that insert RTF into document
9739           - Removed debug output
9740         * TextControl.cs:
9741           - Fixed Delete(int) to fix up line numbers
9742           - Fixed ReplaceSelection to combine start and end line
9743           - Fixed serious DeleteChars bug that would leave the document tree
9744             broken
9745           - Improved DumpTree with several logic checks to detect broken
9746             document trees
9747           - Removed debug lines
9748           - Fixed Caret.WordForward/WordBack moving code, now always also 
9749             updates caret.tag (fixes crash when word-selecting across tag
9750             boundaries via keyboard)
9751           - Added Insert() method for inserting multiline text into documents
9752           - Fixed DeleteChars() calculation errors that would cause a broken
9753             tag chain with multiple tag lines
9754           - DeleteChars() no longer crashes on multi-tag lines if not all tags
9755           - Split() no longer moves caret if split is at caret location
9756           - ReplaceSelection() now updates the cursor and re-displays it
9757           - ReplaceSelection() now uses new Insert() method to avoid code
9758             duplication
9759           - FormatText() can now handle formatting partial lines
9760         * TextBoxBase.cs:
9761           - Append now uses new TextControl.Insert() method (this avoids 
9762             duplicate code)
9763           - Implemented Ctrl-X (Cut) (
9764           - Implemented Ctrl-C (Copy)
9765           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
9766             regeneration when pasting text; roundtripping Copy&Paste within
9767             edit control still fails due to some calculation bugs in GenerateRTF)
9768           - The Delete key will now remove the current selection if it is visible
9769         * TextBox.cs: Removed debug lines
9770         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
9771           driver to be initialized and can't therefore be done via a static ctor)
9773 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
9775         * TextControl.cs: Added backend code for finding char arrays and strings
9776         * TextBoxBase.cs:
9777           - Added mouse wheel scroll support
9778           - Added support for VScroll and HScroll events
9779         * RichTextBox.cs:
9780           - Implemented all seven Find() variants
9781           - Implemented GetCharFromPosition()
9782           - Implemented GetCharIndexFromPosition()
9783           - Implemented GetLineFromIndex()
9784           - Implemented GetPositionFromCharIndex();
9785           - Implemented SaveFile for PlainText and UnicodeText
9786           - Fixed set_Font, now setting a new font applies that font to
9787             the whole document
9788           - Implemented generic Document to RTF converter
9789           - Implemented SaveFile for RichText format (still missing unicode
9790             conversion for non-ansi chars)
9791           - Implemented get_Rtf
9792           - Implemented get_SelectedRtf
9794 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
9796         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
9797           to allow any captures to be released before triggering OnClick. This
9798           way a click handler may capture the mouse without interference.
9799         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
9800           This way we send them even though X may not allow a grab (if the window
9801           isn't visible, for example)
9803 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
9805         * DataGridViewRowEventArgs.cs: DataGridView implementation
9806         * DataGridViewElement.cs: DataGridView implementation
9807         * DataGridViewComboBoxCell.cs: DataGridView implementation
9808         * DataGridViewDataErrorContexts.cs: DataGridView implementation
9809         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
9810         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
9811         * ImageLayout.cs: DataGridView implementation
9812         * DataGridViewComboBoxColumn.cs: DataGridView implementation
9813         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
9814         * DataGridViewSelectionMode.cs: DataGridView implementation
9815         * IDataGridViewEditingControl.cs: DataGridView implementation
9816         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
9817         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
9818         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
9819         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
9820         * DataGridViewColumnSortMode.cs: DataGridView implementation
9821         * DataGridView.cs: DataGridView implementation
9822         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
9823         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
9824         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
9825         * Padding.cs: DataGridView implementation
9826         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
9827         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
9828         * DataGridViewRowEventHandler.cs: DataGridView implementation
9829         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
9830         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
9831         * DataGridViewButtonCell.cs: DataGridView implementation
9832         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
9833         * DataGridViewEditMode.cs: DataGridView implementation
9834         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
9835         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
9836         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
9837         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
9838         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
9839         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
9840         * DataGridViewCellEventHandler.cs: DataGridView implementation
9841         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
9842         * DataGridViewCellStyleConverter.cs: DataGridView implementation
9843         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
9844         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
9845         * DataGridViewColumnEventArgs.cs: DataGridView implementation
9846         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
9847         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
9848         * QuestionEventArgs.cs: DataGridView implementation
9849         * IDataGridViewEditingCell.cs: DataGridView implementation
9850         * DataGridViewTriState.cs: DataGridView implementation
9851         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
9852         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
9853         * DataGridViewColumnCollection.cs: DataGridView implementation
9854         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
9855         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
9856         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
9857         * DataGridViewColumn.cs: DataGridView implementation
9858         * DataGridViewCellBorderStyle.cs: DataGridView implementation
9859         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
9860         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
9861         * DataGridViewRow.cs: DataGridView implementation
9862         * DataGridViewImageCellLayout.cs: DataGridView implementation
9863         * DataGridViewImageCell.cs: DataGridView implementation
9864         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
9865         * DataGridViewCheckBoxCell.cs: DataGridView implementation
9866         * DataGridViewHeaderCell.cs: DataGridView implementation
9867         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
9868         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
9869         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
9870         * DataGridViewTextBoxColumn.cs: DataGridView implementation
9871         * QuestionEventHandler.cs: DataGridView implementation
9872         * DataGridViewCellStyleScopes.cs: DataGridView implementation
9873         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
9874         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
9875         * DataGridViewCell.cs: DataGridView implementation
9876         * DataGridViewCellEventArgs.cs: DataGridView implementation
9877         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
9878         * DataGridViewCellStyle.cs: DataGridView implementation
9879         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
9880         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
9881         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
9882         * TextFormatFlags.cs: DataGridView implementation
9883         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
9884         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
9885         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
9886         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
9887         * DataGridViewButtonColumn.cs: DataGridView implementation
9888         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
9889         * HandledMouseEventArgs.cs: DataGridView implementation
9890         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
9891         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
9892         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
9893         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
9894         * DataGridViewRowCollection.cs: DataGridView implementation
9895         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
9896         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
9897         * DataGridViewHitTestType.cs: DataGridView implementation
9898         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
9899         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
9900         * DataGridViewColumnEventHandler.cs: DataGridView implementation
9901         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
9902         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
9903         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
9904         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
9905         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
9906         * DataGridViewContentAlignment.cs: DataGridView implementation
9907         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
9908         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
9909         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
9910         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
9911         * DataGridViewPaintParts.cs: DataGridView implementation
9912         * DataGridViewCellCollection.cs: DataGridView implementation
9913         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
9914         * DataGridViewImageColumn.cs: DataGridView implementation
9915         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
9916         * DataGridViewElementStates.cs: DataGridView implementation
9917         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
9918         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
9919         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
9920         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
9921         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
9922         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
9923         * DataGridViewRowHeaderCell.cs: DataGridView implementation
9924         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
9925         * DataGridViewTextBoxCell.cs: DataGridView implementation
9926         * DataGridViewBand.cs: DataGridView implementation
9927         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
9928         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
9929         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
9930         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
9931         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
9932         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
9933         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
9934         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
9935         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
9936         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
9937         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
9939 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
9941         * ThemeWin32Classic.cs: 
9942           - Draw the outside focus rectangle around buttons
9943           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
9944             doesn't use end caps for every dash of a line anymore. This
9945             workaround ignores the forecolor.
9947 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
9949         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
9950           endian safe.
9952 2005-11-07  Jackson Harper  <jackson@ximian.com>
9954         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
9956 2005-11-07  Jackson Harper  <jackson@ximian.com>
9958         * ScrollableControl.cs: Calculate the maximum and change vars
9959         (more) correctly so that scrollbars appear as a sensible size.
9961 2005-11-04  Jackson Harper  <jackson@ximian.com>
9963         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
9964         collection.
9965         * TreeView.cs: When the tree is sorted null out the top_node so
9966         that it is recalculated.
9967         - Use dotted lines instead of dashed lines to match MS better.
9969 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
9971         * ListView.cs: 
9972           - Implements key search for items. Useful when browsing files with FileDialog
9973           - When changing view mode or when clear the items reset scrollbar positions
9975 2005-11-04  Jackson Harper  <jackson@ximian.com>
9977         * CurrencyManager.cs: Implement the MetaDataChanged event, the
9978         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
9979         as to what the method may do as there is no real way of creating a
9980         derived CurrencyManager and calling the method. 
9982 2005-11-03  Jackson Harper  <jackson@ximian.com>
9984         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
9985         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
9986         method which seems to just be used internally to refresh the tabs.
9988 2005-11-03  Jackson Harper  <jackson@ximian.com>
9990         * TabControl.cs: Implement the remove method. Fix some broken
9991         comments.
9993 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
9995         * DateTimePicker.cs:
9996           - Added missing DateTimePickerAccessibleObject class
9997           - Added missing events
9998           - Added OnFontChanged method
9999         * Form.cs: Added missing attributes
10000         * TreeView.cs: Added missing attributes
10002 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
10004         * GridItemCollection.cs: Fix signatures
10006 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
10008         * XplatUI.cs: Updated build rev/date
10009         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
10010           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
10011         * Application.cs: Trigger context-specific ExitThread events
10013 2005-11-03  Jackson Harper  <jackson@ximian.com>
10015         * Menu.cs:
10016         * MainMenu.cs:
10017         * GridTableStylesCollection.cs:
10018         * Timer.cs:
10019         * TabPage.cs:
10020         * HelpProvider.cs:
10021         * StatusBar.cs:
10022         * MonthCalendar.cs: Signature fixes
10024 2005-11-03  Jackson Harper  <jackson@ximian.com>
10026         * TreeNodeCollection.cs: Remove should not be virtual.
10027         * TreeView.cs: Implement the last of the missing methods.
10029 2005-11-03  Jackson Harper  <jackson@ximian.com>
10031         * TreeNodeConverter.cs: Implement to get off my class-status back.
10033 2005-11-03  Jackson Harper  <jackson@ximian.com>
10035         * TreeView.cs: Hookup the bits for drag and drop.
10036         * TreeNode.cs: Don't cache the tree_view or index anymore, now
10037         that nodes can be moved from tree to tree easily this just causes
10038         all sorts of problems.
10039         * TreeNodeCollection: Don't need to give treenodes an index and
10040         treeview anymore when they are added, these are computed on the
10041         fly. Also make sure to remove a node before its added.
10043 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
10045         * TextControl.cs:
10046           - Added CaretSelection enum
10047           - Added comparison methods to Marker struct, makes selection code
10048             more readable
10049           - Added SelectionStart and SelectionEnd as 'moveable' location for
10050             the CaretDirection enum and handler
10051           - Added selection_prev variable to track optimized invalidation for
10052             word and line selection
10053           - Added SelectionVisible property (returns true if there is a valid 
10054             selection)
10055           - Switched CaretHasFocus to only display the caret if there is no
10056             visible selection
10057           - Avoiding StringBuilder.ToString to retrieve a single char, instead
10058             using the direct character index; should be much faster
10059           - Added various conditional debug statements
10060           - Fixed invalidation calculation for selection ranges
10061           - Added ExpandSelection() method to support word and line selection
10062           - Switched SetSelectionToCaret to use new Marker compare overloads
10063           - Added central IsWordSeparator() method to determine word 
10064             separators/whitespace and FindWordSeparator() to streamline common
10065             usage of IsWordSeparator()
10066         * TextBoxBase.cs:
10067           - Removed unneeded grabbed variable, it was just mirroring
10068             Control.Capture
10069           - No longer firing OnTextChanged event when Text setter is called,
10070             since the base will fire the event for us
10071           - Added handling of Ctrl-Up/Down selection
10072           - Added handling of Shift-Cursorkey selection
10073           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
10074             words
10075           - Added handling of Shift and Ctrl-Shift-Home/End selection
10076           - Removed some debug output
10077           - Added handling for single/double/tripple-click to place caret/
10078             select word/select line respectively (Fixes bug #76031)
10079           - Added support for drag expansion of word/line selection
10080         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
10081           current selection
10083 2005-11-02  Jackson Harper  <jackson@ximian.com>
10085         * X11Dnd.cs: If the drag is going to and from a MWF window just
10086         copy the data instead of sending it out through the X Selection
10087         mechanism.
10089 2005-11-02  Jackson Harper  <jackson@ximian.com>
10091         * X11Dnd.cs:
10092         * XplatUIX11.cs: When in a drag we don't want motion notify
10093         messages to get passed on to the other controls. This prevents
10094         mouse move messages from showing up in the drag source.
10096 2005-11-02  Jackson Harper  <jackson@ximian.com>
10098         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
10099         the correct button is release to end a drag.
10100         * XplatUIX11.cs: Make the button state internal so the drag system
10101         can access it.  Dragging needs to know about all button releases,
10102         not just left button.
10104 2005-11-02  Miguel de Icaza  <miguel@novell.com>
10106         * Form.cs (Icon): If the icon is null, reset the icon to the
10107         default value. 
10109         * Cursor.cs: When writing the AND-mask bitmap do not include the
10110         number of colors, but hardcode those to two (black and white),
10111         fixes the loading of color cursors (Paint Dot Net).
10113         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
10114         turn off autoscaling.
10116         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
10118 2005-11-02  Jackson Harper  <jackson@ximian.com>
10120         * X11Dnd.cs: Make sure to send a status message if the pointer
10121         enters a control that can not accept a drop, otherwise the cursor
10122         isn't updated correctly. Also tried to compress the lines of code
10123         a bit.
10125 2005-11-02  Jackson Harper  <jackson@ximian.com>
10127         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
10128         set actions correctly.  This isn't perfect as XDND and win32 have
10129         some differences on how you allow actions. I'll clear this up by
10130         adding a path for drag from MWF to MWF windows.
10131         * XplatUIX11.cs: Hook into the dnd system.
10133 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
10135         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
10136         previously shown but they are no longer need it. Very obvious when 
10137         browsing files with FileDialog.
10139 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
10141         * Control.cs: We always need to call OnPaintBackground. We pretty much
10142           ignore AllPaintingInWmPaint and always do the painting there, whether 
10143           it's set or not, since we always ignore the WM_ERASEBKGND message 
10144           (which we don't generate on X11). This fixes #76616.
10145         * Panel.cs: Removed unneeded background painting. This happens properly
10146           in Control.cs already
10148 2005-10-31  Mike Kestner  <mkestner@novell.com>
10150         * Menu.cs: Add items to collection before setting their index.
10151         * MenuItem.cs : add range checking with ArgumentException like MS.
10152         [Fixes #76510]
10154 2005-10-31  Jackson Harper  <jackson@ximian.com>
10156         * ListBox.cs: Invalidate if the area is visible at all not just
10157         contained in the visible rect. Fixes unselection of semi visible
10158         items.
10160 2005-10-31  Jackson Harper  <jackson@ximian.com>
10162         * Control.cs: Consistently name the dnd methods. Make them
10163         internal so we can override them to match some MS behavoir
10164         internally.
10165         * Win32DnD.cs: Use the new consistent names.
10167 2005-10-31  Jackson Harper  <jackson@ximian.com>
10169         * TreeView.cs: Don't draw the selected node when we lose focus.
10171 2005-10-31  Jackson Harper  <jackson@ximian.com>
10173         * X11Dnd.cs: We still need to reset the state even though a full
10174         reset isn't being done, otherwise status's still get sent all over
10175         the place.
10177 2005-10-31  Jackson Harper  <jackson@ximian.com>
10179         * Control.cs: Make the dnd_aware flag internal so the dnd
10180         subsystem can check it. Catch exceptions thrown in dnd handlers to
10181         match MS behavoir.
10182         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
10183         * X11Dnd.cs: Handle null data in the converters. Set the XDND
10184         version when sending a XdndEnter. Use the control/hwnd dnd_aware
10185         flags to reduce the number of dnd enters/status's sent.
10187 2005-10-31  Jackson Harper  <jackson@ximian.com>
10189         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
10191 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
10193         * PictureBox.cs: Fixes 76512
10195 2005-10-28  Jackson Harper  <jackson@ximian.com>
10197         * X11Dnd.cs: Early implementation to support winforms being a drag
10198         source for data on X11. Also restructured the converters so they
10199         can go both ways now.
10200         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
10201         
10202 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
10204         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
10205           clipboard requests
10207 2005-10-27  Jackson Harper  <jackson@ximian.com>
10209         * TreeNode.cs: Implement serialization so my DnD examples will work.
10211 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
10213         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
10214           TreeView.cs: Don't dispose objects that are not owned.
10215           
10216 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
10218         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
10219           should retrieve the current cursor and report that, but XplatUI
10220           doesn't (yet) have an interface for that (and I'm not sure I even
10221           can, on X11)
10222         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
10223           until any message loop processing is done (and the WM_SETCURSOR
10224           replaces the cursor to the proper one)
10225         * XplatUIX11.cs: 
10226           - Fixed override behaviour, we can't set the cursor globally on X11, 
10227             just for our windows.
10228           - Invalidating the System.Drawing X11 display handle when we are
10229             shutting down
10230         * Control.cs: Fix to make csc happy
10232 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
10234         * TextBoxBase.cs: 
10235           - get_Text: Add last line (without trailing newline) to returned
10236             value (Fixes 76212)
10237           - get_TextLength: Count last line in returned length
10238           - ToString: Call Text property instead of duplicating code
10240 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
10242         * ImageList.cs: Dispose ImageAttributes objects.
10244 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
10246         * ImageList.cs: Use attribute constructors with less arguments where
10247           possible.
10249 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
10251         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
10252           Use typeof instead of strings when assembly is referenced. Added
10253           some more comments.
10255 2005-10-21  Jackson Harper  <jackson@ximian.com>
10257         * ListView.cs: Raise a double click event. Also tried to somewhat
10258         fix when the selectedindexchanged event is raised. Its still
10259         broken though.
10261 2005-10-21  Jackson Harper  <jackson@ximian.com>
10263         * TreeView.cs: New method to invalidate the plus minus area of a
10264         node without invalidating the whole node (maybe this can be used
10265         in some more places).
10266         * TreeNodeCollection.cs: When adding to an empty node we need to
10267         invalidate its plus minus area so the little block shows up.
10268         
10269 2005-10-21  Jackson Harper  <jackson@ximian.com>
10271         * TreeView.cs: Make sure that when we invalidate a node the bounds
10272         are big enough to cover the selected box and the focus
10273         rectangle. Use a different colour for the lines connecting nodes
10274         so they show up with all themes.
10276 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
10278         * NativeWindow.cs: Don't call anything that could call into the driver,
10279           we might be on a different thread.
10281 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
10283         * Control.cs(Dispose): Since Dispose might run on a different thread,
10284           make sure that we call methods that could call into the driver via
10285           invoke, to avoid thread issues
10287 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
10289         * XplatUI.cs: Removed finalizer
10290         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
10291           not allowing to be called on the finalizer thread.
10293 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
10295         * ImageList.cs:
10296           - Reverted r51889 and r51891.
10297           - Added ImageListItem class that stores unmodified image items and image
10298             properties required to create list images until handle is created.
10299           - Added AddItem and moved image creation logic to AddItemInternal.
10300           - Added CreateHandle method that creates images based on unmodified items.
10301           - Added DestroyHandle that changes state to store unmodified items.
10302           - Add and AddStrip methods no more create handle.
10303           - ReduceColorDepth has no return value.
10304           - Dispose destroys handle.
10305           - Modified other methods to reflect the above changes.
10306           - Implemented key support.
10307           - Added profile 2.0 members and attributes.
10308           - Added private Reset and ShouldSerialize methods that provide the same
10309             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
10310             them as they are private.
10311           - Added some more comments about implementation details.
10313 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
10315         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
10317 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
10319         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
10321 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
10323         * DataGridDrawingLogic.cs: Fixes column hit calcultation
10324         * DataGridColumnStyle.cs: Remove debug message
10326 2005-10-20  Jackson Harper  <jackson@ximian.com>
10328         * TreeView.cs: We can always get input keys regardless of whether
10329         or not editing is enabled. They are used for navigation.
10331 2005-10-20  Jackson Harper  <jackson@ximian.com>
10333         * TreeNode.cs: Use the viewport rect for determining if a node
10334         needs to be moved for visibility. Don't use Begin/End edit. This
10335         calls a full refresh when its done.
10336         * TreeView.cs: New SetBottom works correctly.  Make the viewport
10337         rect property internal so the treenodes can see it. When clicking
10338         on a node we need to ensure that its visible because it might just
10339         be partly visible when clicked.
10341 2005-10-20  Jackson Harper  <jackson@ximian.com>
10343         * TreeNodeCollection.cs: Remove debug code.
10345 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
10347         * Datagrid.cs: Implements column sorting in Datagrid
10348         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
10350 2005-10-20  Jackson Harper  <jackson@ximian.com>
10352         * TreeNodeCollection.cs: Remove items properly. Update the correct
10353         area after removing them.
10355 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
10357         * Datagrid.cs: Should not call base.OnPaintBackground
10359 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
10361         * XplatUIX11.cs (GetMessage):
10362           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
10363             window instead of client window
10364           - Now properly calculates NC_xBUTTONUP message coordinates
10365           - ScreenToMenu now properly calculates it's coordinates of whole 
10366             window, since menus are in the whole window, not in the client
10367             window
10368           - Added WholeToScreen coordinate translation method
10370 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
10372         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
10373           want to return a message, loop back to the beginning of the function
10374           and grab the next real message to process instead.
10376 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
10378         * Splitter.cs: Properly set limits if no filler control is used
10380 2005-10-19  Jackson Harper  <jackson@ximian.com>
10382         * ColorDialog.cs: Don't show the help button if it is not enabled
10383         instead of disabling it (this is what MS does). Don't create the
10384         panel until the dialog is run, otherwise the vars (such as
10385         ShowHelp) are not set yet.
10387 2005-10-19  Jackson Harper  <jackson@ximian.com>
10389         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
10390         are reduced when adding nodes.
10391         * TreeNode.cs:
10392         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
10393         tree.
10394         
10395 2005-10-19  Jackson Harper  <jackson@ximian.com>
10397         * FolderBrowserDialog.cs: End editing our treeview so the window
10398         actually gets refreshed.
10400 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
10402         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
10403           Obsoleted handling of WM_ERASEBKGND, now always draws our background
10404           inside of WM_PAINT
10406 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
10408         * MenuAPI.cs: Returns after Hidding window
10409         * XplatUIX11.cs: Added TODO found while debugging menu issues
10411 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
10413         * XplatUIX11.cs: Do not re-map the whole window when it's size
10414           becomes non-zero unless it's supposed to be actually visible
10416 2005-10-18  Jackson Harper  <jackson@ximian.com>
10418         * TreeView.cs: We don't need to keep a count anymore.
10419         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
10420         use the Grow method.
10422 2005-10-18  Jackson Harper  <jackson@ximian.com>
10424         * TreeNodeCollection.cs: Insert is not supported on arrays, so
10425         implement it manually here.
10427 2005-10-18  Jackson Harper  <jackson@ximian.com>
10429         * ImageList.cs: Dont kill the list when the colour depth is
10430         changed, just change the colour depth of all the images.
10431         - Same goes for setting the image size. Just resize them all
10432         instead of killing the list softly.
10434 2005-10-18  Jackson Harper  <jackson@ximian.com>
10436         * Control.cs: Don't invalidate empty rectangles.
10438 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
10440         * ListViewItem.cs:
10441           - Adds checked item to the Checked/Item lists (where empty before)
10442           - Do not add items to the Selected lists if they are already present
10443         * ListView.cs:
10444           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
10445           - When deleting items make sure that we delete them for the Selected
10446           and Checked list also.
10448 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
10450         * Label.cs: Dispose objects no longer used
10451         * ThemeWin32Classic.cs: Dispose objects no longer used
10453 2005-10-18  Jackson Harper  <jackson@ximian.com>
10455         * TabControl.cs: Don't refresh the whole control when the tabs are
10456         scrolled, we just need to refresh the tab area.
10458 2005-10-17  Jackson Harper  <jackson@ximian.com>
10460         * XplatUIX11.cs: Compress code a little bit. Only calculate the
10461         after handle when we need it.
10463 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
10465         * Control.cs: When the parent size changes, recalculate anchor 
10466           positions. Partial fix for #76462
10468 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
10470         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
10471           drawn. Fixes #76462
10473 2005-10-17  Jackson Harper  <jackson@ximian.com>
10475         * MonthCalendar.cs: Don't create the numeric up down until our
10476         handle is created. Otherwise our handle is created in the
10477         constructor and we don't know if we are a WS_CHILD or WS_POPUP
10478         yet.
10480 2005-10-17  Jackson Harper  <jackson@ximian.com>
10482         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
10483         correctly.
10485 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
10486         * TreeNode.cs : small logical fix (was using local var instead of field)
10487         
10488 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
10490         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
10492 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
10494         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
10496 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
10498         * Control.cs: 
10499           - Re-implemented anchoring code. My first version was really broken.
10500             This fixes bug #76033. Unlike the previous implementation we will
10501             no longer have round errors since all numbers are calculated from
10502             scratch every time. Removed various anchor-related obsolete vars.
10503           - InitLayout no longer causes layout event firing and layout to be 
10504             performed
10506 2005-10-16  Jackson Harper  <jackson@ximian.com>
10508         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
10509         which was broken).
10511 2005-10-16  Jackson Harper  <jackson@ximian.com>
10513         * TabControl.cs: Remove debug code.
10515 2005-10-16  Jackson Harper  <jackson@ximian.com>
10517         * XEventQueue.cs: Increase the default queue size (very simple
10518         apps needed to grow the queue).
10519         * Hwnd.cs: No finalizer so we don't need to suppress
10520         finalization. Compute the invalid area manually so a new rectangle
10521         does not newto be created.
10522         * ScrollableControl.cs: Don't set any params (otherwise visibility
10523         isn't set correctly).
10524         * MdiChildContext.cs: New constructor takes the mdi parent so it
10525         doesn't have to be computed and avoids a crash on windows. Draw
10526         the window icon properly, and allow the text to be seen.
10527         * Form.cs: Use new MdiChildContext constructor. Make sure the
10528         child context isn't null in wndproc.
10529         * TabControl.cs: Don't set focus, this is muddling keyboard
10530         behavoir. Expand the tab rows when a window size increase will
10531         allow extra tabs to be seen. Don't allow tabs smaller than the
10532         width of a window to be scrolled out of view.
10533         * TreeNode.cs:
10534         * TreeView.cs: Use measure string to calculate a nodes width, the
10535         width is cached and only updated when the text or the font is
10536         changed. Don't check for expand/collapse clicks on the first level
10537         nodes if root lines are disabled.
10538         
10539 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
10541         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
10543 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
10545         * DataGridBoolColumn.cs: fixes warning
10547 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
10549         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
10550         to match more to match more precisely the MS Net behavior
10552 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
10554         * Hwnd.cs: Added field to track if window is mapped
10555         * XplatUIX11.cs: 
10556           - Unmap windows if they become 0-size, re-map when 
10557             they are >0 again; fixes #76035
10558           - Re-set our error handler after initializing X11Desktop
10559             to override any error handlers Gtk or whatever was called
10560             may have set.
10562 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
10564         * CheckedListBox.cs: Removed unused vars
10565         * ListView.cs: Fixed signatures
10566         * RichTextBox.cs: Removed unused vars
10567         * TextBoxBase.cs: Removed unused vars
10568         * XplatUIWin32.cs: Removed unused vars
10569         * XplatUIX11.cs: Removed unused vars
10570         * XplatUI.cs: Updated version and date to latest published
10572 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
10574         * Cursor.cs: Added private .ctor to work around a bug in
10575           resourceset (Thanks to Geoff Norton for the help on this)
10576         * SplitterEventArgs.cs: Made fields accessible so we don't
10577           waste boatloads of objects and can reuse the same one
10578           in Splitter
10579         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
10580           any captions and borders when generating screen coordinates
10581         * Splitter.cs: Reimplemented control, now fully complete, uses
10582           rubberband drawing, supports and obeys all properties, has
10583           proper cursors
10585 2005-10-13  Miguel de Icaza  <miguel@novell.com>
10587         * Form.cs (Form): Setup default values for autoscale and
10588         autoscale_base_size;  Make these instance variables, not static
10589         variables. 
10591         (OnLoad): on the first load, adjust the size of the form.
10593 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
10595         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
10596           width argument to DrawReversibleRectangle()
10597         * XplatUIWin32.cs, XplatUIX11.cs: 
10598           - Implemented width for DrawReversibleRectangle()
10599           - Added logic to DrawReversibleRectangle that recognizes a zero
10600             width or height and only draws a line in that situation
10601         
10602 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
10604         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
10605         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
10606         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
10607           method (it uses our FosterParent window to get a graphics context)
10609 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
10611         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
10612           and SetWindowBackground methods
10613         * Control.cs:
10614           - Setting proper ControlStyles
10615           - We no longer call XplatUI.SetWindowBackground and XplatUI.
10616             EraseWindowBackground, instead we draw the window background
10617             ourselves in PaintControlBackground. This behaviour is
10618             required to match MS, where, when OnPaintBackground is not
10619             called, the background is not drawn.
10620           - Removed unneeded Refresh() in set_Text
10621         * Hwnd.cs: Dropped the ErasePending support. No longer needed
10622         * XplatUIX11.cs:
10623           - Created DeriveStyles method to translate from CreateParams to
10624             FormBorderStyle and TitleStyle, also handles BorderStyle (which
10625             matches FormBorderStyle enum values)
10626           - Consolidated SetHwndStyles and CalculateWindowRect border/title
10627             style calculations into single DeriveStyles method
10628           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
10629             from redrawing the whole window on any resize or expose.
10630           - Fixed CreateWindow usage of SetWindowValuemask. Before not
10631             all styles were applied to our whole/client window appropriately
10632           - Removed EraseWindowBackground() and SetWindowBackground() methods
10633           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
10634             no longer clear/redraw the background through X
10635           - Removed handling of erase_pending bit, we have no use for it (or
10636             so it seems)
10637         * XplatUIOSX.cs:
10638           - Removed generation and handling of WM_ERASEBKGND message
10639           - Removed EraseWindowBackground() and SetWindowBackground() methods
10640           - Removed handling of hwnd.ErasePending flag
10641         * XplatUIWin32.cs:
10642           - Removed EraseWindowBackground() and SetWindowBackground() methods
10643           - We no longer call EraseWindowBackground on PaintEventStart, we 
10644             ignore the fErase flag, erasing is handled in Control in the
10645             background handler
10646         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
10647           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
10648           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
10649           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
10650           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
10651           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
10652           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
10654 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
10656         * PropertyGrids.cs: Get sub properties
10657         * PropertyGridView.cs: Fix drawing code
10659 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
10661         * ListBox.cs: Fixes 76383
10663 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
10665         * DataGridTextBoxColumn.cs: Sets location and size before attachment
10666         * ThemeWin32Classic.cs: Fixes border drawing and calculations
10667         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
10670 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
10672         * ComboBox.cs: Fixes border drawing
10674 2005-10-10  Miguel de Icaza  <miguel@novell.com>
10676         * MimeIcon.cs: Ignore errors if the file can not be read.
10678 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
10680         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
10681          - Fixed border calculations
10682          - Fixed horizontal scrolling in single column listboxes
10683          - Fixed drawing issues
10685 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
10687         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
10688           FormBorderStyle enum
10689         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
10690           code to determine FormBorderStyles from CreateParams
10691         * Form.cs:
10692           - Fixed bug where we'd set the wrong window styles if we were
10693             not creating an MDI window
10694           - Added call to XplatUI.SetBorderStyle when form borders are set
10695         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
10696         * Hwnd.cs:
10697           - Removed obsolete edge style
10698           - Switched from BorderStyle to FormBorderStyle
10699         
10700 2005-10-10  Jackson Harper  <jackson@ximian.com>
10702         * Form.cs: Use the property to get the window handle instead of
10703         accessing it directly. Prevents a null reference exception.
10705 2005-10-10  Jackson Harper  <jackson@ximian.com>
10707         * TreeView.cs: Don't adjust the rect given to DrawString now that
10708         our libgdiplus draws correctly.
10710 2005-10-08  Jackson Harper  <jackson@ximian.com>
10712         * TreeView.cs: Don't try to find the clicked on node if there are
10713         no nodes in the tree.
10715 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
10717         * RichTextBox.cs:
10719           restore
10721 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
10723         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
10724           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
10725           ErrorProvider.cs:
10726           Use ResPool for brushes and dispose System.Drawing objects that
10727           are not used anymore.
10729 2005-10-07  Jackson Harper  <jackson@ximian.com>
10731         * MdiChildContext.cs: Use the new borders instead of drawing them
10732         ourselves.
10734 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
10736         * Calling UpdateBounds after changing the window's BorderStyle 
10737         since the style can change the ClientSize
10739 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
10741         * Control.cs: Made PaintControlBackground virtual
10742         * Panel.cs: Overriding PaintControlBackground instead of using paint
10743           event; paint event method was interfering with 'real' users of the
10744           event.
10746 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
10748         * ThemeWin32Classic.cs: remove border drawing since it is handled
10749         by the base control class now and was causing double border drawing.
10751 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
10753         * Panel.cs: Redraw our background on paint. Not a pretty solution,
10754           but it does seem to match MS behaviour. This fixes bug #75324
10756 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
10758         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
10759           somewhat hackish looking
10761 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
10763         * TextBoxBase.cs:
10764           - We now accept Enter even if AcceptEnter is false, if the containing
10765             form does not have an AcceptButton configured (fixes bug #76355)
10766           - Calculations are now fixed to no longer use Width/Height, but
10767             ClientSize.Width/Height, since we now support borders (this was
10768             a result of fixing borders and therefore bug #76166)
10769           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
10770             true (fixes bug #76354)
10771         
10772 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
10774         * Control.cs: 
10775           - Defaulting BorderStyle and setting it in XplatUI when our window 
10776             is created
10777           - Added enum check to InternalBorderStyle setter
10778         * XplatUIX11.cs: 
10779           - Added drawing of window borders
10780           - Now properly calculates WM decorations offset for toplevel 
10781             windows (fixes bug #74763)
10782         * XplatUIWin32.cs: 
10783           - Implemented BorderStyles for windows (we're letting win32 draw 
10784             the border for us)
10785           - Fixed the signature for SetWindowLong
10786         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
10787           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
10788           setting borders
10789         * UpDownBase.cs: Remove drawing of borders, this is handled by
10790           the driver, outside the client area
10791         * ListView.cs: Removed bogus border calculations. The control should
10792           be oblivious to borders, since those are not part of the client
10793           area. 
10794         * X11DesktopColors.cs: Commented out (currently) unneeded variables
10795         * ThemeWin32Classic.cs: Removed border calculations from ListView 
10796           drawing code
10798 2005-10-06  Jackson Harper  <jackson@ximian.com>
10800         * MdiChildContext.cs: Clear out the old virtual position remove
10801         all the unneeded calls to CreateGraphics.
10803 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
10805         * TextControl.cs: Use proper color for highlighted text; fixes #76350
10807 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
10809         * Form.cs: 
10810           - Added loading and setting of our new default icon
10811           - Only set icon if window is already created
10813 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
10815         * Label.cs:
10816           - Do not explicitly set the foreground and background colors, to
10817             allow inheriting from parents (fixes #76302)
10818           - Use Control's InternalBorderStyle property to deal with borders
10820 2005-10-06  Jackson Harper  <jackson@ximian.com>
10822         * MdiChildContext.cs: Use the new xplatui function to draw a
10823         reversible rect.
10825 2005-10-06  Jackson Harper  <jackson@ximian.com>
10827         * Form.cs: Add the parent before creating the child context cause
10828         we need the parent when setting up the child.
10830 2005-10-06  Jackson Harper  <jackson@ximian.com>
10832         * FolderBrowserDialog.cs: redo the tree population code so a
10833         second thread isn't used. Should be a lot faster and more stable
10834         now.
10836 2005-10-05  Jackson Harper  <jackson@ximian.com>
10838         * TreeView.cs: There are no expand/collapse boxes if the node has
10839         no children.
10841 2005-10-05  Jackson Harper  <jackson@ximian.com>
10843         * X11DesktopColors.cs: Get menu colours for the gtk theme.
10845 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
10847         * FileDialog.cs: Fix InitialDirectory
10849 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
10851         * ComboBox.cs:
10852                 - Fixes changing between styles
10853                 - Fixes simple mode
10854                 - Fixes last item crashing when navigating with keyboard
10856 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
10858         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
10860 2005-10-05  Jackson Harper  <jackson@ximian.com>
10862         * TreeView.cs: If updating the root node do a full refresh.
10863         * TreeNode.cs: The root node should be expanded by default. Also
10864         added a utility prop to tell if we are the root node.
10865         * TreeNodeCollection.cs: Only refresh if the node we are being
10866         added to is expanded. Also added a comment on a potential
10867         optimization.
10868         
10869 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
10871         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
10872           in dispose method. Fixes #76330
10874 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
10876         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
10878                 - Implements vertical and horizontal scrolling using XplatUI
10879                 - Fixes keyboard navagation
10880                 - Fixes EnsureVisible
10881                 - Drawing fixes
10882                 - Handles and draws focus properly
10885 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
10887         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
10888           Create handle. NET_2_0: Destroy handle when value is null.
10890 2005-10-03  Jackson Harper  <jackson@ximian.com>
10892         * ScrollBar.cs: My last scrollbar patch was broken. This is a
10893         revert and a new patch to prevent the thumb from refreshing so
10894         much.
10896 2005-10-02  Jackson Harper  <jackson@ximian.com>
10898         * ScrollBar.cs: Don't update position if it hasn't actually
10899         changed. This occurs when you hold down the increment/decrement
10900         buttons and the thumb gets to the max/min.
10902 2005-10-01  Jackson Harper  <jackson@ximian.com>
10904         * Form.cs:
10905         * MdiChildContext.cs:
10906         * MdiClient.cs: Implement ActiveMdiChild in Form.
10908 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
10910         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
10912 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
10914         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
10915           be found
10917 2005-09-30  Jackson Harper  <jackson@ximian.com>
10919         * ListBox.cs: Don't do a full refresh unless some data has
10920         actually changed.
10922 2005-09-30  Jackson Harper  <jackson@ximian.com>
10924         * TreeView.cs: Make sure that the checkboxes size is factored in
10925         even when not visible.
10927 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
10929         * FileDialog.cs: Fix Jordi's build break
10931 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
10933         * FileDialog.cs: 
10934                 - Use standard the Windows colours for the combobox as espected
10935                 - Dispose objects that use resouces when no longer need them
10937 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
10939         * X11DesktopColors.cs: Initial incomplete implementation
10940         * XplatUIX11.cs: Added call to initialize X11DesktopColors
10942 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
10944         * Theme.cs: 
10945           - Switched Theme color names to match the names defined in 
10946             System.Drawing.KnownColors. Life's hard enough, no need to make 
10947             it harder.
10948           - Added setters to all theme color properties so themes can set
10949             their color schemes. The setters also propagate the color changes
10950             to System.Drawing.KnownColors via reflection
10951         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
10952           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
10953           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
10954           use the new, more logical theme color names
10955         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
10956           post-NT colors
10957         * ThemeWin32Classic.cs:
10958           - Removed code to set the old classic Windows colors. Instead it
10959             now relies on the colors returned by System.Drawing.KnownColors
10960             which will be either modern static colors (Unix) or colors
10961             read from the user's configuration (Win32)
10962           - Updated to use the new, more logical theme color names
10963           - Switched DataGrid drawing code to use only Theme colors instead of
10964             a mix of System.Drawing.KnownColors and Theme colors
10965           - DrawFrameControl(): Removed code that fills the button area, the
10966             fill would overwrite any previous fill done by a control. This
10967             fixes bug #75338 
10968           - Added DrawReversibleRectangle() stub
10969         * ScrollableControl.cs: Set visible state to false when scrollbars
10970           are removed (pdn fix)
10971         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
10972           DrawReversibleRectangle() method to allow drawing primitive 
10973           'rubber bands'
10974         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
10976 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
10978         * ImageList.cs: Add(Icon): Create handle.
10980 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
10982         * ListView.cs:
10983         * ThemeWin32Classic.cs:
10984                 - Fixes detail mode
10985                 - Sets clippings
10986                 - Issues with drawing
10988 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
10990         * ImageList.cs: Moved RecreateHandle back to ImageList as event
10991           source has to be the ImageList.
10993 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
10995         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
10997 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
10999         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
11001 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11003         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
11005 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
11006         * GridItem.cs: Fixed TODOs
11007         * GridItemCollection.cs: Added ICollection interface
11009 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11011         * ImageList.cs: Resize icons when needed.
11013 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
11015         * ListViewItem.cs
11016                 - Fixes GetBounds and returns on screen rects
11017         * ListView.cs:
11018                 - Fixes vertical and horzintal scrolling of items
11019         * ThemeWin32Classic.cs:
11020                 - Fixes drawing
11021                 
11022 2005-09-29  Raja R Harinath  <harinath@gmail.com>
11024         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
11026 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
11028         * ImageList.cs: Added comments about handle creation. Moved Handle,
11029           HandleCreated and OnRecreateHandle implementations to ImageCollection.
11030           Handle is created in Add methods.
11032 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
11033          
11034         * DataGridDrawingLogic.cs: 
11035                 - Takes rows into account on Colum calculations
11036                 - Returns the column when clickig
11037         * DataGrid.cs:
11038                 - Fixes default HitTestInfo values
11039                 - Fixes HitTestInfo.ToString
11040                 - Fixes ResetBackColor          
11041         
11042 2005-09-28  Jackson Harper  <jackson@ximian.com>
11044         * MdiChildContext.cs: Obey rules for fixed sized windows (no
11045         sizing or cursor changes). Also added some temp code to draw the
11046         titlebars text (Makes dev a little easier).
11048 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
11050         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
11052 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
11053          
11054         * ListBox.cs: Fixes bug 76253
11056 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
11058         * ImageList.cs: Added comments about the current implementation. Added
11059           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
11060           Format32bppArgb to preserve transparency and can use Graphics.FromImage
11061           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
11062           with Bitmap.LockBits for better performance. Revised the whole file to
11063           match MS.NET behaviour and provide better performance. Non-public
11064           interface members are calling public members even when they throw
11065           NotSupportedException for better maintainability. Moved ColorDepth,
11066           ImageSize, ImageStream and TransparentColor implementations to
11067           ImageCollection for better performance as these properties are not used
11068           by ImageList.
11069         * ImageListStreamer.cs: Added a new internal constructor that takes an
11070           ImageList.ImageCollection and serializes Images based on
11071           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
11072           match ImageList property name.
11074 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
11076         * ListBox.cs: Fixes IndexFromPoint for last item
11078 2005-09-27  Jackson Harper  <jackson@ximian.com>
11080         * Form.cs: Set the position of new mdi children correctly.
11082 2005-09-27  Jackson Harper  <jackson@ximian.com>
11084         * MdiClient.cs: New mdi children need to be added to the back of
11085         the controls collection so the zorder is set correctly. Also add a
11086         count of all the child windows that have been created.
11088 2005-09-27  Jackson Harper  <jackson@ximian.com>
11090         * Form.cs (CreateParams): Setup MDI forms correctly.
11092 2005-09-27  Jackson Harper  <jackson@ximian.com>
11094         * MdiChildContext.cs:
11095         * MonthCalendar.cs:
11096         * UpDownBase.cs:
11097         * ListBox.cs:
11098         * ListView.cs:
11099         * TextBoxBase.cs:
11100         * TreeView.cs:
11101         * ScrollableControl.cs:
11102         * ComboBox.cs: Add implicit controls using the new implict control
11103         functionality in ControlCollection. Also try to block multiple
11104         control add in a suspend/resume layout to save some cycles.
11105         
11106 2005-09-27  Jackson Harper  <jackson@ximian.com>
11108         * Control.cs: Add functionality to the controls collection to add
11109         'implicit controls' these are controls that are created by the
11110         containing control but should not be exposed to the user. Such as
11111         scrollbars in the treeview.
11112         * Form.cs: The list var of the ControlsCollection is no longer
11113         available because of the potential of implicit controls getting
11114         ignored by someone accessing the list directly.
11116 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
11118         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
11119           loose it's parent. (Fixed bug introduced in r49103 when we added
11120           setting the child parent to null on Remove)
11122 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
11124         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
11125         * Splitter.cs: Added missing attributes for BorderStyle property.
11126         * TextBoxBase.cs: Marked Calculate* methods internal.
11127         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
11128         MS.NET.
11130 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
11131          
11132         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
11134 2005-09-25  Jackson Harper  <jackson@ximian.com>
11136         * TreeView.cs: Update the node bounds correctly regardless of
11137         whether the node is visible.
11139 2005-09-25  Jackson Harper  <jackson@ximian.com>
11141         * ImageList.cs: Don't dispose the image after it is added to the
11142         image list. Only reformat images that need to be resized.
11144 2005-09-25  Jackson Harper  <jackson@ximian.com>
11146         * ImageList.cs: Don't set the format when changing the image.
11148 2005-09-25  Jackson Harper  <jackson@ximian.com>
11150         * TreeView.cs: We can't just assume the node has a font. Use the
11151         treeviews font if no node font is available.
11153 2005-09-25  Jackson Harper  <jackson@ximian.com>
11155         * TreeView.cs: Allow the scrollbars to be reset with negative
11156         values.
11157         - Don't add scrollbars to negative sized windows.
11159 2005-09-23  Jackson Harper  <jackson@ximian.com>
11161         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
11162         old Mono.Posix. Also remove some stray code that shouldn't have
11163         been committed.
11165 2005-09-23  Jackson Harper  <jackson@ximian.com>
11167         * TreeView.cs: Attempt at proper sizing of the horizontal
11168         scrollbar. Also don't resize the scrollbars unless they are
11169         visible.
11171 2005-09-23  Jackson Harper  <jackson@ximian.com>
11173         * TreeView.cs: We don't need to expand the invalid area when the
11174         selection changes, as this is all drawn in the node's bounding
11175         box. The area needs to be expanded (previous typo was contracting
11176         it) when the focus rect moves.
11178 2005-09-23  Jackson Harper  <jackson@ximian.com>
11180         * TreeView.cs: Display the selection box under the correct
11181         circumstances. We were rendering white text with no selection box
11182         before.
11184 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
11186         * TextControl.cs(Split): Now updates selection start/end if it points 
11187           into a line that's being split. Fixes a FIXME and bug #75258
11189 2005-09-23  Jackson Harper  <jackson@ximian.com>
11191         * Binding.cs:
11192         * ListControl.cs: Don't use the path when retrieving binding
11193         managers from the binding context. My bat sense tells me that the
11194         path is only used on insertion.
11196 2005-09-22  Jackson Harper  <jackson@ximian.com>
11198         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
11200 2005-09-22  Jackson Harper  <jackson@ximian.com>
11202         * Splitter.cs: There are special cursors used for splitting.
11203         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
11205 2005-09-22  Jackson Harper  <jackson@ximian.com>
11207         * Splitter.cs: Change the cursor appropriately when the splitter
11208         is moused over, so the user actually knows there is a splitter
11209         there.
11211 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
11213        * Label.cs : Fix ToString method to give same output as MS.NET
11215 2005-09-22  Jackson Harper  <jackson@ximian.com>
11217         * TreeView.cs: Create the scrollbars when the handle is created
11218         and add them right away, just make them invisble. Also account for
11219         the window being shrunk vertically to the point that the vert
11220         scrollbar needs to be added.
11221         - Remove some 0.5 adjustments to get around anti aliasing issues.
11222         
11223 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
11224          
11225         * MainMenu.cs: Fixes default value
11226         * MenuItem.cs: Fixes default value
11228 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
11230         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
11232 2005-09-21  Jackson Harper  <jackson@ximian.com>
11234         * Control.cs: Don't try to set the border style on the window if
11235         it hasn't been created. When the window is created the border
11236         style will be used.
11238 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
11240         * Control.cs (Update): Don't call XplatUI if we don't have a
11241           window handle yet
11243 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
11245         * ContainerControl.cs: Instead of throwing an exception, print
11246           a one-time warning about Validate not being implemented
11247         * XplatUIWin32.cs: Removed debug output
11249 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
11251         * Control.cs: Only set XplatUI background if we expect the windowing
11252           system to handle the background. This stops controls that draw their
11253           own background from flickering
11255         * XplatUIX11.cs: Support custom visuals and colormaps for window 
11256           creation. This allows, amongst other things, using MWF X11 windows 
11257           with OpenGL.
11259 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
11261         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
11262           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
11263           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
11264           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
11265           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
11266           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
11267           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
11268           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
11269           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
11270           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
11271           GridColumnStylesCollection.cs, 
11272           IDataGridColumnStyleEditingNotificationService.cs,
11273           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
11274           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
11275           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
11276           TreeNodeCollection.cs, AmbientProperties.cs, 
11277           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
11278           DataObject.cs, ErrorProvider.cs, Splitter.cs,
11279           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
11280           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
11281           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
11282           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
11283           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
11284           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
11285           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
11286           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
11287           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
11288           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
11289           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
11290           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
11291           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
11292           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
11293           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
11294           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
11295           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
11296           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
11297           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
11298           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
11299           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
11300           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
11301           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
11302           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
11303           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
11304           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
11305           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
11306           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
11307           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
11308           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
11309           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
11310           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
11311           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
11312           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
11313           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
11315 2005-09-21  Jackson Harper  <jackson@ximian.com>
11317         * TreeNode.cs: Call Before/After Expand not Collapse when
11318         expanding.
11320 2005-09-20  Jackson Harper  <jackson@ximian.com>
11321         
11322         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
11324 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
11325          
11326         * ListViewItem.cs:
11327                 - Fixes bug 76120
11328                 - Fixes proper storing of subitems
11329                 - Fixes not updated items
11331 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
11333         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
11334           things if our window handle isn't created yet. Also disabled 
11335           debug for TextBoxBase
11337 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
11339         * MenuAPI.cs: Remove filtering of events to allow menu usage
11341 2005-09-20  Miguel de Icaza  <miguel@novell.com>
11343         * Cursor.cs: Allow null to be passed to Cursor.Current.
11345 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
11347         * ThemeWin32Classic.cs:
11348           - Change some private methods/fields to protected virtual so that 
11349             they can be accessed and overriden in derived classes
11350           - First refactoring of some methods. Derived themes now don't 
11351             need to duplicate the complete code from ThemeWin32Classic
11352         * ThemeNice.cs:
11353           - Added nice StatusBar
11354           - Derive from ThemeWin32Classic and not Theme
11355           - Removed duplicate ThemeWin32Classic code
11357 2005-09-20  Miguel de Icaza  <miguel@novell.com>
11359         * Control.cs (ControlCollection.Add): If the value null is passed
11360         the control is ignored. 
11362         Optimize this loop.
11364 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
11366         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
11367           PostQuitMessage state.
11368         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
11370 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
11372         * Application.cs: Our constructor will never get called, move 
11373           initialization to fields; fixes bug #75933
11375 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
11377         * FileDialog.cs :
11378                 - Allow files to be selected properly using file name
11379                 combo box.
11380                 - Add ability to change diretory (absolute / relative)
11381                 using file name combo box.
11383 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
11384          
11385         * ListBox.cs: 
11386                 - Fixes Multicolumn listboxes item wrong calculations
11387                 - Allows to click when only one item is in the listbox
11388                 - Fixes crash when no items using keyboard navigation
11390 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
11392         * ComboBox.cs: Reverted almost everything from the latest patch which
11393           broke ComboBox
11395 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
11396         
11397         * ToolTip.cs:
11398                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
11399         * ComboBox.cs:
11400                 - When DropDownStyle is Simple, it does not show scrollbar 
11401                 to the last item of the list.
11402                 - When DropDownStyle is Simple, it crashed when the list was 
11403                 scrolled down with the down cursor key.
11404                 - Fixed a bug that when DropDownStyle is DropDownList, the 
11405                 selected item was not shown.
11406                 - The position of the selected item was not preserved when 
11407                 the next dropdown happened.
11408         * ThemeWin32Classic.cs:
11409                 - Items were wrapped at the right end.
11410         * CheckedListBox.cs:
11411                 - Fixed Add method
11412         * ListBox.cs:
11413                 - Items should be fully shown.
11414                 - When resizing and vertical scrollbar disappeared, the item 
11415                 of index 0 should be on the top of the list.
11416                 - GetItemRectangle should consider the size of ver. scrollbar
11417         * StatusBar.cs:
11418                 - SizingGrip area should not be allocated when it is not 
11419                 displayed.
11420                 - Now it reflects MinWidth of the containing panel and 
11421                 fixed a crash that happens when its width becomes so small.
11423 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
11425         * CheckedListBox.cs: Fixes bug 76028
11426         * ListBox.cs: Fixes bug 76028
11428 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
11430         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
11431         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
11433 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
11435         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
11437 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
11439         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
11441 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
11443         * IRootGridEntry.cs: Added
11444         * PropertyGridCommands.cs: Added
11445         * PropertiesTab.cs: Added missing methods and property
11446         * PropertyGridView.cs: Made class internal
11447         * PropertyGridTextBox.cs: Made class internal
11449 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
11451         * MimeIcon.cs: Try to check some other environment variables
11452           if "DESKTOP_SESSION" returns "default"
11454 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
11456         * ThemeNice.cs: Corrected background colors (e.g. menus)
11457         * ColorDialog.cs: Use correct background colors for controls
11459 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
11461         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
11463 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
11465         * RichTextBox.cs: Added initial implementation
11466         * lang.cs: Removed. Was accidentally checked in long time ago
11467         * TODO: Removed. Contents were obsolete
11469 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
11470                                                                                 
11471         * PropertiesTab.cs : Added
11473 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
11474                                                                                 
11475         * PropertyGrid.cs : Update
11476         * PropertyGridView.cs : Update
11477         * System.Windows.Forms.resx : Added images and strings
11479 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
11481         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
11483 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
11485         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
11486           a busy loop right after the Ungrab the X11 display is otherwise 
11487           blocked
11489 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
11491         * ThemeWin32Classic.cs: Optimise the use of clipping
11493 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
11495         * DataGrid.cs: fixes recursion bug
11497 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
11499         * ThemeNice.cs: 
11500           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
11501           - Cleanup
11503 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
11505         * ThemeNice.cs: Draw nice ProgressBars
11507 2005-09-01  Miguel de Icaza  <miguel@novell.com>
11509         * VScrollBar.cs: Another buglet found by Aaron's tool. 
11511         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
11512         bug finder.
11514 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
11516         * ThemeNice.cs:
11517           - Added nicer menu drawing
11518           - Updated DrawTab
11519           - some refactoring
11521 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
11523         * CreateParams.cs (ToString): Made output match MS
11524         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
11525             handle is already created (to avoid forcing window creation)
11526         * XplatUIX11.cs: Set window text to caption after creating window,
11527           in case Text was set before window was created
11528         * Form.cs: Use this.Text instead of a static string as caption
11530 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
11532         * NotifyIcon.cs: Don't set the window to visible; this screws
11533           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
11534           OnPaint without a bitmap)
11535         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
11536           happen very often anyway; we could add the check to the WM_PAINT 
11537           event generation code
11539 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
11541         * NotifyIcon.cs: Fill the icon area with a background color, to 
11542           avoid 'residue' when transparent icons are drawn
11543         * XplatUIX11.cs:
11544           - Handle whole_window == client_window when destroying windows
11545           - SystrayAdd(): Set client_window to whole_window value to
11546             get mouse and other events passed to NotifyIcon
11548 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
11550         * Form.cs: Set proper default for Opacity property
11551         * NotifyIcon.cs:
11552           - ShowSystray(): Don't bother creating telling the OS
11553             about the systray item if no icon is provided
11554           - Now handles WM_NCPAINT message to deal with whole/client window
11555             split
11556           - Create window as visible to not get caught by Expose optimization
11557         * Hwnd.cs: Removed debug message
11558         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
11559           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
11560             PaintEventStart/End to use new client argument
11561         * TextBoxBase.cs:
11562           - Commented out debug messages
11563           - Switched PaintEventStart/End to use new client argument
11564         * XplatUI.cs: Added client window bool to PaintEventStart()/
11565           PaintEventEnd() calls, to support drawing in non-client areas
11566         * XplatUIDriver.cs: 
11567           - Added client window bool to PaintEventStart()/PaintEventEnd() 
11568             calls, to support drawing in non-client areas
11569           - Added conditional compile to allow using MWF BeginInvoke 
11570             on MS runtime
11571         * XplatUIX11.cs:
11572           - Added some conditional debug output
11573           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
11574             whole/client window split
11575           - Implemented handling of client argument to PaintEventStart()/End()
11576         * Control.cs:
11577           - Throw exception if BeginInvoke() is called and the window handle
11578             or one of the window's parent handles is not created
11579           - Added conditional compile to allow using MWF BeginInvoke on
11580             MS runtime
11581           - get_Parent(): Only sets parent if handle is created. This avoids
11582             forcing window handle creation when parent is set.
11583           - Now fires Layout and Parent changed events in proper order
11584           - Switched to use Handle instead of window.Handle for Z-Order setting,
11585             the get_Parent() patch above causes us to possibly get null for 'window'
11586           - Implemented handling of client argument to PaintEventStart()/End()
11587           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
11588             default handling)
11589           - Now sends a Refresh() to all child windows when Refresh() is called
11591 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
11593         * Form.cs: Added (non-functional) Opacity property
11594         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
11596 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
11597         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
11598           use export MONO_THEME=nice to activate it.
11599           Currently supported controls:
11600           - Button
11601           - ComboBox
11602           - ScrollBar
11603           - TabControl (TabAlignment.Top only, other will follow)
11604         * ThemeEngine.cs: Add theme nice
11605         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
11606           if enabled
11608 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
11610         * Splitter.cs: Resize docked control and its neighbor.
11612 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
11613         -- Making Windows with Menus layout correctly --
11614         * Form.cs : The first leg of the fix
11615                 Menu setter - adjust Client Size as needed to make space for the menu
11616                 SetClientSizeCore - doesn't call base version to be able to pass the 
11617                         menu handle to XplatUI.CalculateWindowRect
11618         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
11619         * XplatUIX11.cs: The critical second leg of the fix
11620                 GetWindowPos needs to use a recalculated client_rect
11621                 so that resizing the window doesn't break layout of child controls. 
11622                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
11623                 Lots of \t\n killed
11625 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
11627         * Label.cs: Now properly recalculates width and height on Font and Text
11628           changes if AutoSize is set
11630 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
11631         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
11633 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
11635         * ImageList.cs: Makes ToString method compatible with MS
11637 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
11639         * MenuAPI.cs: fixes bug 75716
11641 2005-08-11 Umadevi S <sumadevi@novell.com>
11642         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
11644 2005-08-11 Umadevi S <sumadevi@novell.com>
11645         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
11647 2005-08-10  Umadevi S <sumadevi@novell.com>
11648         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
11650 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
11652         * Menu.cs: fixes bug 75700
11653         * MenuAPI.cs: fixes navigation issues
11655 2005-08-09  Umadevi S <sumadevi@novell.com>
11656         * CheckedListBox.cs - simple fix for GetItemChecked.
11658 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
11660         * ComboBox.cs: Serveral fixes
11661         * ListBox.cs: Serveral fixes
11663 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
11665         * ComboBox.cs: Fixes FindString methods and GetItemHeight
11666         * ListBox.cs: Fixes FindString methods
11668 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
11670         * DataGrid.cs: fixes bugs exposed by new tests
11672 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
11674         * Mime.cs: Compile Mono assembly references only if compiling
11675           with Mono (Allows to build with VS.Net again)
11677 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
11679         * Control.cs (PaintControlBackground): Draw background image
11680         corrrectly.
11681         (CheckForIllegalCrossThreadCalls): Stubbed.
11682         
11683         * Form.cs (OnCreateControl): Center when should be centered.
11684         
11685         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
11687 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
11689         * Binding.cs: Binding to properties should be case unsensitive
11691 2005-07-18 vlindos@nucleusys.com
11693         * DataGrid.cs: fixes setmember order
11695 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
11697         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
11698         * FileDialog.cs: FileDialog is now resizable and uses the new
11699           MimeIconEngine
11701 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
11703         * DataGridTextBoxColumn.cs: default value
11704         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
11705         * GridTableStylesCollection.cs: fixes checking MappingName
11706         * DataGridDrawingLogic.cs: fixes drawing logic issues
11707         * DataSourceHelper.cs: rewritten to make compatible with more data sources
11708         * DataGrid.cs: fixes    
11710 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
11712         * MimeGenerated.cs: Use case sensitive comparer for
11713           NameValueCollections
11715 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
11717         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
11718         * ThemeWin32Classic.cs: bug fixes, code refactoring
11719         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
11720         * DataGrid.cs: bug fixes, code refactoring
11721         * DataGridTextBox.cs: bug fixes, code refactoring
11722         * DataGridColumnStyle.cs:  bug fixes, code refactoring
11723         * Theme.cs:  bug fixes, code refactoring
11725 2005-07-01  Peter Bartok  <pbartok@novell.com> 
11727         * TextControl.cs: Quick fix for the reported crash on ColorDialog
11728           and other text box usage
11730 2005-07-01  Jackson Harper  <jackson@ximian.com>
11732         * TabControl.cs: Make sure the bottom of the tab covers the pages
11733         border.
11735 2005-06-30  Peter Bartok  <pbartok@novell.com> 
11737         * Form.cs (ShowDialog): Assign owner of the dialog
11738         * TextBoxBase.cs: Always refresh caret size when deleting, caret
11739           might have been moved to a tag with different height
11741 2005-06-30  Jackson Harper  <jackson@ximian.com>
11743         * Form.cs: Don't create an infinite loop when setting focus
11744         * MenuItem.cs: Don't dirty the parents if we don't have any
11746 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
11748         * LibSupport.cs: Rename
11750 2005-06-29  Peter Bartok  <pbartok@novell.com>
11752         * TextBoxBase.cs: Re-align caret after deleting a character
11753         * TextControl.cs:
11754           - DeleteChars(): Ensure that tag covers the provided position
11755           - StreamLine(): Drop reference for dropped tag
11757 2005-06-29  Peter Bartok  <pbartok@novell.com> 
11759         * TextControl.cs: 
11760           - Selections now work properly, anchoring at the initial location
11761             and properly extending in either direction (SetSelectionToCaret(),
11762             SetSelectionStart() and SetSelectionEnd())
11763           - No longer redraws the whole control on selection change, now
11764             calculates delta between previous and new selection and only
11765             invalidates/redraws that area
11766           - Fixed FindPos() math off-by-one errors
11767           - Changed DeleteChars() to verify the provided tag covers the
11768             provided position, selections may have a tag that doesn't cover
11769             the position if the selection is at a tag border
11770           - Fixed off-by-one errors in DeleteChars()
11771           - Added missing streamlining check in DeleteChars() to remove
11772             zero-length tags
11773           - Implemented Invalidate() method, now properly calculates exposures
11774             between two given lines/positions
11775           - Implemented SetSelection()
11776           - Obsoleted and removed FixupSelection()
11777           - Improved RecalculateDocument() logic, removing code duplication
11779 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11781         * LibSupport.cs: changes to match different input/output arguments.
11783 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11785         * LibSupport.cs: added libsupport.so init routine.
11787 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
11788         
11789         * ControlBindingsCollection.cs
11790                 - Throws an exception on null datasource when adding
11791                 - Checks for duplicated bindings when adding
11793 2005-06-28  Jackson Harper  <jackson@ximian.com>
11795         * TreeView.cs (OnKeyDown): Support left and right properly
11796         (navigates as well as expanding and collapsing.
11797         - Add support for Multiply, this expands all the selected nodes
11798         children.
11799         - Fix some tabbing.
11801 2005-06-28  Jackson Harper  <jackson@ximian.com>
11803         * TreeView.cs: Implement keyboard navigation, currently supports,
11804         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
11805         support for toggling checkboxes with the space bar.
11807 2005-06-28  Jackson Harper  <jackson@ximian.com>
11809         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
11810         tree.
11812 2005-06-28  Jackson Harper  <jackson@ximian.com>
11814         * TreeView.cs: Add missing event.
11816 2005-06-27  Peter Bartok  <pbartok@novell.com> 
11818         * TextControl.cs:
11819           - Made line ending size configurable (now allows for counting 
11820             lineendings as \n or \r\n)
11821           - Added margin to viewport to keep caret visible on right side
11822           - Fixed translation routines for line/pos to documentpos to consider
11823             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
11824           - Fixed some line-endings to be unix style
11825           - Fixed Document.FormatText to perform it's calculations 1-based
11826           - Added descriptions for a few methods that might otherwise get 
11827             used wrong
11828           - Added NOTE section with some basic conventions to remember at 
11829             the top of the file
11830           - Major fixup for RichTextBox selection drawing:
11831             * Fixed crashes when multiple tags on a single line were selected
11832             * fixed selection box drawing not overlaying text
11833             * fixed bogus offset calculation for tags not starting at index 1
11834             * Switched behaviour from using multiple Substrings of a 
11835               StringBuilder.ToString() to using multiple 
11836               StringBuilder.ToString(start, length) statements, hoping this is
11837               faster (kept original version commented out in the code, in case
11838               original version was faster)
11839         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
11840           alignment != Left
11841         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
11842           call it as well
11844 2005-06-27  Jackson Harper  <jackson@ximian.com>
11846         * TabControl.cs: Move to the left and right with the arrow
11847         keys. These keys don't cycle beyond first and last like
11848         tab. Refresh all the tabs when scrolling them to the left or
11849         right.
11851 2005-06-27  Jackson Harper  <jackson@ximian.com>
11853         * TabControl.cs:
11854           - ToString: Added method
11855           - CreateParams: Remove TODO and comment
11856           - OnKeyDown: Cycle through bounds properly.
11857           - SelectedIndex: Scroll to the right or left if we need to
11858           display the newly selected tab.
11860 2005-06-23  Jackson Harper  <jackson@ximian.com>
11862         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
11863         set.
11865 2005-06-23  Jackson Harper  <jackson@ximian.com>
11867         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
11868         CTRL-SHIFT-TAB, and HOME, END are there any others?
11870 2005-06-23  Jackson Harper  <jackson@ximian.com>
11872         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
11874 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
11875         
11876         * DataGridTextBoxColumn.cs: fixes and enhancements
11877         * ThemeWin32Classic.cs: fixes and enhancements
11878         * DataGridBoolColumn.cs:  fixes and enhancements
11879         * DataGridDrawingLogic.cs:  fixes and enhancements
11880         * CurrencyManager.cs: fixes and enhancements
11881         * DataGrid.cs: fixes and enhancements
11882         * DataGridColumnStyle.cs:  fixes and enhancements
11884 2005-06-22  Jackson Harper  <jackson@ximian.com>
11886         * TabControl.cs: Add some missing methods that just call into the
11887         base. Make the TabPageCollection's IList interface behave in the
11888         same manner as the MS implementation.
11890 2005-06-22  Peter Bartok  <pbartok@novell.com> 
11892         * TextControl.cs: Added sanity check
11893         * TextBoxBase.cs: 
11894           - Fixed wrapping behaviour, don't set wrap on single line controls
11895             (this fixes the breakage of colordialog introduced in an earlier
11896              checkin)
11897           - Added rudimentary support for autoscrolling right-aligned controls
11898             (still needs fixing, also, center alignment scroll is missing)
11900 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
11901         
11902         * ScrollBar.cs: Fixes thumbpos on Maximum values
11904 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
11905         
11906         * PropertyGridView.cs: Pass context information to UITypeEditors 
11908 2005-06-21  Peter Bartok  <pbartok@novell.com> 
11910         * TextBoxBase.cs:
11911           - Now calling PositionCaret with absolute space coordinates
11912           - Enabled vertical scrolling
11913           - Better tracking of scrollbar changes, tied into WidthChange
11914             event
11915           - Improved cursor tracking
11916           - Removed debug output
11917         * TextControl.cs:
11918           - PositionCaret coordinates are now works in absolute space, not 
11919             the canvas
11920           - Improved tracking of document size
11921           - Added events for width and height changes
11923 2005-06-21  Peter Bartok  <pbartok@novell.com>
11925         * Form.cs: Set focus to active control when form is activated
11926         * TextControl.cs: 
11927           - Added word-wrap functionality to RecalculateLine() 
11928           - Added some short function descriptions for VS.Net to aid in
11929             writing dependent controls
11930           - Added Caret property, returning the current coords of the caret
11931           - Added ViewPortWidth and ViewPortHeight properties
11932           - Added Wrap property
11933           - Added CaretMoved event
11934           - Removed some old debug code
11935           - Split() can now create soft splits
11936           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
11937           - Added method to format existing text
11938           - Fixed size/alignment calculations to use viewport
11939           - RecalculateDocument now can handle changing line-numbers while
11940             calculating lines
11942         * TextBox.cs:
11943           - Added some wrap logic, we don't wrap if alignment is not left
11944           - Added casts for scrollbar var, base class switched types to
11945             also support RichTextBoxA
11946           - Implemented handling of scrollbar visibility flags
11948         * TextBoxBase.cs:
11949           - Switched scrollbars type to RichTextBoxScrollBars to support
11950             RichTextBox
11951           - Added tracking of canvas width/height
11952           - Switched scrollbars to be not selectable (to keep focus on text)
11953           - Added central CalculateDocument() method to handle all redraw
11954             requirements
11955           - Added ReadOnly support
11956           - Added WordWrap support
11957           - Fixed handling of Enter key (we now treat it as a DialogKey)
11958           - Fixed caret positioning when h or v scroll is not zero
11959           - Fixed placing/generation of vertical scrollbar
11960           - Added CalculateScrollBars() method to allow updating scrollbar
11961             limits and visibility
11962           - Fixed handling of horizontal scroll
11963           - Added handling of vertical scroll
11964           - Implemented auto-'jump' when caret moves to close to a left or
11965             right border and there is text to be scrolled into view (currently
11966             there's the potential for a stack overflow, until a bug in
11967             scrollbar is fixed)
11969 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
11970         
11971         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
11973 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
11975         * Mime.cs:
11976         - added inodes.
11977         - return application/x-zerosize for files with size zero
11978           (if no extension pattern matches).
11979         - check matches collection for strings too.
11980         - return only the first mime type if the name value
11981           collection has more than one mime type.
11983 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
11984         
11985         * PropertyGrid.cs: Cleaned up some TODOs
11986         * PropertyGridView.cs: Added support for UITypeEditors
11988 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
11989         
11990         * DataGrid.cs: clears cached value
11992 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
11994         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
11995         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
11996         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
11997         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
11998         
11999 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
12001         * ThemeWin32Classic.cs: fixes colour
12003 2005-06-15  Peter Bartok  <pbartok@novell.com>
12005         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
12006         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
12007         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
12008         * Control.cs: Added some MWFCategory and MWFDescription attributes
12009         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
12011 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
12013         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
12014         usage
12016 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
12018         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
12019         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
12020         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
12021         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
12022         * DataGrid.cs: default datagrid settings for Default Styles, fixes
12023         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
12025 2005-06-13  Jackson Harper  <jackson@ximian.com>
12027         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
12028         isn't printed when the user enables dropping. (X11 does accept
12029         drops).
12030         
12031 2005-06-13  Jackson Harper  <jackson@ximian.com>
12033         * TreeView.cs: Remove some TODOS.
12035 2005-06-13  Jackson Harper  <jackson@ximian.com>
12037         * Form.cs: Hook into the mdi framework.
12038         * MdiClient.cs: Use the base control collections add method so
12039         parents get setup correctly. Set the default back colour and dock
12040         style.
12041         * MdiChildContext.cs: New class, this bad actor handles an
12042         instance of an MDI window. Right now there is only basic
12043         support. You can drag, close, and resize windows. Minimize and
12044         Maximize are partially implemented.
12046 2005-06-13  Jackson Harper  <jackson@ximian.com>
12048         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
12049         freaky when both vals are negative. NOTE: There are probably other
12050         places in XplatUIX11 that this needs to be done.
12052 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
12054         * DataGrid.cs: implement missing methods, move KeyboardNavigation
12055         * DataGridColumnStyle.cs: fixes signature
12057 2005-06-12  Jackson Harper  <jackson@ximian.com>
12059         * XplatUIX11.cs: Use sizing cursors similar to the ones on
12060         windows.
12062 2005-06-11  Jackson Harper  <jackson@ximian.com>
12064         * StatusBarPanel.cs: Signature cleanups. Implement
12065         BeginInit/EndInit.
12067 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
12069         * DataGridTextBoxColumn.cs: Honors aligment
12070         * GridColumnStylesCollection.cs: Contains is case unsensitive
12071         * GridTableStylesCollection.cs: several fixes
12072         * DataGridTableStyle.cs: default column creation
12073         * DataGridDrawingLogic.cs: fixes
12074         * CurrencyManager.cs: ListName property
12075         * DataGrid.cs: multiple styles support
12076         * DataGridColumnStyle.cs: fixes
12077         
12079 2005-06-10  Peter Bartok  <pbartok@novell.com>
12081         * Control.cs(Select): Moved SetFocus call to avoid potential
12082           loops if controls change the active control when getting focus
12083         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
12084           the up/down buttons
12086 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
12088         * ImageListConverter.cs: Implemented
12090 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
12092         * MonthCalendar.cs: Wired in NumericUpDown control for year
12094 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
12096         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
12097           DoubleClick events, since they are not meant to be fired.
12099 2005-06-09  Peter Bartok  <pbartok@novell.com>
12101         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
12102           Jonathan's standalone controls into MWF, implemented missing
12103           events, attributes and methods; added xxxAccessible classes
12104         * AccessibleObject.cs: Made fields internal so other classes
12105           can change them if needed
12107 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
12109         * UpDownBase.cs: Complete implementation
12110         * NumericUpDown.cs: Complete implementation
12111         * DomainUpDown.cs: Complete implementation
12113 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
12115         * DataGridTextBoxColumn.cs: drawing fixes
12116         * DataGridCell.cs: fixes ToString method to match MSNet
12117         * DataGridTableStyle.cs: fixes
12118         * DataGridBoolColumn.cs: fixes, drawing
12119         * DataGridDrawingLogic.cs: fixes, new methods
12120         * DataGridTextBox.cs: Keyboard and fixes
12121         * DataGrid.cs:
12122                 - Keyboard navigation
12123                 - Scrolling fixes
12124                 - Row selection (single, multiple, deletion, etc)
12125                 - Lots of fixes
12126         
12127 2005-06-07  Jackson Harper  <jackson@ximian.com>
12129         * ThemeWin32Classic.cs: Clear the background area when drawing
12130         buttons.
12132 2005-06-06  Peter Bartok  <pbartok@novell.com>
12134         * ImageListStreamer.cs: Fixed signature for GetData
12135         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
12136         * ComboBox.cs:
12137           - Added missing ChildAccessibleObject class
12138           - Added missing OnXXXFocus overrides, switched to using those
12139             instead of the event handler
12140         * Control.cs:
12141           - Added Parent property for ControlAccessibleObject
12142           - Fixed signatures
12143           - Fixed attributes
12144           - Added ResetBindings()
12145         * ListBindingConverter.cs: Implemented some methods
12146         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
12147         * ImageList.cs: Implemented basic handle scheme, removed TODOs
12148         * ContainerControl.cs: Fixed signature, now subscribing to the
12149           ControlRemoved event instead of overriding the handler, LAMESPEC
12150         * CurrencyManager.cs: Added missing attribute
12151         * MonthCalendar.cs: Added missing properties
12153 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
12155         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
12156         
12157 2005-06-06  Gaurav Vaish and Ankit Jain
12159         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
12160         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
12161         
12162 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
12164         * Control.cs: fixes CreateParams Width / Height.
12166 2005-06-05  Peter Bartok  <pbartok@novell.com>
12168         * Win32DnD.cs: Removed compilation warnings
12170 2005-06-05  Peter Bartok  <pbartok@novell.com>
12172         * Control.cs (CreateParams): Since we don't know if one of the
12173           properties we use is overridden, lets make sure if we fail accessing
12174           we continue with a backup plan
12176 2005-06-05  Peter Bartok  <pbartok@novell.com>
12178         * Win32DnD.cs:
12179           - Removed debug output
12180           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
12181             struct
12182           - Plugged resource leak
12183         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
12184           MS size
12186 2005-06-05  Peter Bartok  <pbartok@novell.com>
12188         * XplatUIWin32.cs: Removed DnD code
12189         * Win32DnD.cs: Implemented drop source and drop target functionality
12191 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12193         * UpDownBase.cs: remove duplicate addition of event, enable some code
12194         that was commented out.
12195         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
12196         Validate input when a key is pressed. It works fine now for every
12197         combination of Hexadecimal. Only missing some drawing love when sharing
12198         space with other controls.
12200 2005-06-04  Peter Bartok  <pbartok@novell.com>
12202         * Control.cs:
12203           - We need to pass a window for DragDrop, so enable callback events
12204           - Added DnD callback events when being a DragSource
12205         * XplatUI.cs (StartDrag): Added window handle argument
12206         * XplatUIDriver.cs (StartDrag): Added window handle argument
12207         * QueryContinueDragEventArgs: Made fields internally accessible so
12208           drivers can set them
12209         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
12210           can set them
12212 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
12214         * DataGridTextBoxColumn.cs: column text editing
12215         * DataGridTableStyle.cs: Respect columns styles created by the user
12216         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
12217         * DataGridBoolColumn.cs: bool column editing
12218         * DataGrid.cs: fixes to scrolling, properties, etc
12219         * DataGridTextBox.cs: handle keyboard
12220         * DataGridColumnStyle.cs: fixes
12222 2005-06-02  Jackson Harper  <jackson@ximian.com>
12224         * ImageListStreamer.cs: Somewhat broken implementation of
12225         GetObjectData. The RLE needs some work to match MS properly.
12227 2005-06-02  Jackson Harper  <jackson@ximian.com>
12229         * X11Dnd.cs: Attempting to keep at least one file in MWF
12230         monostyled.
12232 2005-06-02  Peter Bartok  <pbartok@novell.com>
12234         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
12235           that way
12237 2005-06-02  Peter Bartok  <pbartok@novell.com>
12239         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
12240         * XplatUI.cs: Added DoDragDrop() method
12241         * XplatUIDriver.cs: Added DoDragDrop() method
12243 2005-06-02  Jackson Harper  <jackson@ximian.com>
12245         * Splitter.cs: Implement BorderStyle.
12247 2005-06-02  Jackson Harper  <jackson@ximian.com>
12249         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
12250         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
12251         X11 using XDND.
12253 2005-06-02  Peter Bartok  <pbartok@novell.com>
12255         * DataObject.cs:
12256           - Added Data setter
12257           - Fixed broken insertion code for SetData, now also
12258             overwrites any existing entry of the same format name
12259         * Hwnd.cs: Added list of pointers that automatically gets
12260           freed when the window is disposed
12261         * XplatUI.cs: Call driver initialization method when loading
12262           a driver
12263         * Control.cs:
12264           - OnDragLeave takes EventArgs, not DragEventArgs
12265           - Added setting of WS_EX_ACCEPTFILES style when dropping is
12266             supported
12267           - Forces style update when drop state changes
12268         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
12269           not perfect since we cannot (yet) call the IDataObject.GetData()
12270           method, we keep getting 0x80004005 error, dunno why)
12272 2005-06-02  Peter Bartok  <pbartok@novell.com>
12274         * DragEventArgs.cs: Make fields internal so we can cache the
12275           object and re-set the fields from XplatUI
12277 2005-06-02  Jackson Harper  <jackson@ximian.com>
12279         * Control.cs: Add some internal methods so the DnD subsystem can
12280         raise DnD events. Also call into the driver when AllowDrop is set.
12281         * XplatUI.cs:
12282         * XplatUIDriver.cs: New method for setting whether or not a window
12283         is allowed to accept drag and drop messages.
12284                 
12285 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
12286         
12287         * ScrollBar.cs: Make sure that values sent in Scroll events
12288         are always between Maximum and Minimum.
12290 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
12292         * Menu.cs: Call MenuChanged when menuitem visibility has been
12293         changed.
12294         * MenuItem.cs: Rebuild menu when item is (not) visible.
12295         * MainMenu.cs: MainMenu has special MenuChanged.
12296         * Theme.cs: Caption and FrameBorderSize are not fixed.
12297         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
12298         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
12299         * XplatUIX11.cs,
12300         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
12301         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
12303 2005-05-30  Jackson Harper  <jackson@ximian.com>
12305         * DataFormat.cs: We can't statically initialize this stuff because
12306         it calls into the xplatui and could create a loop. So we lazy init
12307         it.
12309 2005-05-28  Jackson Harper  <jackson@ximian.com>
12311         * Control.cs: Proper implementation of Product(Name/Version).
12313 2005-05-27  Jackson Harper  <jackson@ximian.com>
12315         * DataObject.cs: Dont crash if no data is found.
12317 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
12318         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
12319                 as per status page, guessing it should be set to true
12321 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
12323         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
12324         * DataGridTableStyle.cs: set proper formatting text, def header text
12325         * ThemeWin32Classic.cs: new themable paramaters
12326         * DataGridBoolColumn.cs: paint check box, get data, fixes
12327         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
12328         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
12329         * DataGridColumnStyle.cs: fixes
12330         * Theme.cs: new themable paramaters
12331                 
12332 2005-05-26  Peter Bartok  <pbartok@novell.com>
12334         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
12336 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
12337         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
12339 2005-05-24  Peter Bartok  <pbartok@novell.com>
12341         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
12342           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
12343           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
12344           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
12345           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
12346           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
12347           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
12348           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
12349           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
12350           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
12351           missing attributes, etc
12352         * DataGridPreferredColumnWidthTypeConverter.cs: Added
12354 2005-05-24  Peter Bartok  <pbartok@novell.com>
12356         * Help.cs: Added, implemented trivial functions, throws up MessageBox
12357           when user tries to get help
12358         * DataObject.cs, DataFormats.cs, LinkArea.cs,
12359           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
12360           to suppress warnings
12361         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
12362           avoid unreachable code warning
12364 2005-05-20  Peter Bartok  <pbartok@novell.com>
12366         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
12368 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
12370         * DataGridTextBoxColumn.cs: Basic painting methods
12371         * DataGridTableStyle.cs: Set table style in the column
12372         * ThemeWin32Classic.cs: Use Theme for colors
12373         * DataGridDrawingLogic.cs: Implement more drawing
12374         * DataGrid.cs: drawing, theming, enhacements, fixes
12375         * DataGridColumnStyle.cs: fixes, drawing
12376         * Theme.cs: theming for Datagrid
12378 2005-05-20  Peter Bartok  <pbartok@novell.com>
12380         * Cursor.cs: Implemented GetObjectData() method
12382 2005-05-20  Peter Bartok  <pbartok@novell.com>
12384         * Cursors.cs: Added setting of cursor name
12385         * Cursor.cs:
12386           - Implemented constructors
12387           - Implemented Draw and DrawStretched
12388           - Implemented Current property
12389           - Implemented == and != operators
12390           - Implemented Dispose()
12391           - Implemented ToString
12392           - Added missing attributes
12393         * XplatUIX11.cs:
12394           - Added missing reset for OverrideCursor when DoEvents is called
12395           - Fixed creation of cursor, logic was wrong
12396         * XplatUIWin32.cs:
12397           - Added missing reset for OverrideCursor when DoEvents is called
12398           - Fixed creation of cursor, bit arrays were swapped
12399         * Clipboard.cs: Removed obsolete MonoTODO attribute
12401 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
12403         * ComboBox.cs: fixes OnSelectedItemChanged
12404         * ControlBindingsCollection.cs: fixes item range check
12406 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
12408         * UpDownBase.cs:
12409                 - Calc preferred height properly
12410                 - Implement missing properties
12411                 
12412         * NumericUpDown.cs: Implement missing events
12414 2005-05-19  Jackson Harper  <jackson@ximian.com>
12416         * TabControl.cs: New method that resizes the tab pages before
12417         redrawing them. This as needed as the control is double buffered
12418         and sizing will not be recalculated unless ResizeTabPages is
12419         called.
12420         * TabPage.cs: Set base.Text instead of Text in the constructor so
12421         that UpdateOwner does not get called. Use the new Redraw method of
12422         TabControl instead of Refresh so the sizing is recalculated.
12423         * ThemeWin32Classic.cs: Draw the text for button tabs.
12425 2005-05-19  Jackson Harper  <jackson@ximian.com>
12427         * Control.cs: Paint control background images. Fix typo where
12428         PaintControlBackground was not getting called correctly.
12430 2005-05-19  Peter Bartok  <pbartok@novell.com>
12432         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
12433           I can investigate, apparently I broke FileDialog
12435 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
12437         * AxHost.cs: Some simple properties.
12438         * Control.cs: window must be accessible after ctor.
12439         * Form.cs: Added TransparencyKey property.
12440         * TextBoxBase.cs: Implemented Clear. Text property can be null.
12441         * XplatUIWin32.cs: SetBorderStyle implemented.
12443 2005-05-18  Peter Bartok  <pbartok@novell.com>
12445         * DataObject.cs: Entries are not global but particular to the
12446           DataObject, now it behaves that way
12447         * XplatUIWin32.cs: Implemented Clipboard methods
12448         * Clipboard.cs: Implemented
12449         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
12450         * XplatUIOSX.cs: Updated to final clipboard prototypes
12451         * XplatUIX11.cs: Implemented Clipboard methods
12452         * XplatUIDriver.cs: Updated to final clipboard prototypes
12453         * XplatUIStructs.cs:
12454           - Added BITMAPINFOHEADER struct
12455           - Added ClipboardFormats enum
12456         * X11Structs.cs:
12457           - Added ClipboardStruct
12458           - Added Atom enum items for clipboard types
12459           - Fixed atom types for Selection event structures
12460         * DataFormats.cs:
12461           - Added internal properties and methods for drivers to enumerate
12462             all known formats
12463           - Switched initialization method to allow drivers to assign their
12464             own IDs even for the MS predefined clipboard IDs
12465         * XplatUI.cs: Updated to final clipboard interface
12467 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
12468         * PropertyGridView.cs: Fixed compiler warnings.
12470 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
12471         * PropertyGrid.cs: Added some event calls
12472         * PropertyGridView.cs: Change drawing code to use double buffering
12473         * PropertyGridTextBox.cs: Changed Text property name
12474         * GridItem.cs: Added Bounds property.
12475         * GridEntry.cs: Added Bounds property.
12477 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
12479         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
12480         since GetType() may not return the correct type if the object is
12481         a remoting proxy.
12483 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
12485         * TreeNodeCollection.cs: fixes get/set item ranges
12486         
12487 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
12489         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
12490                 
12491 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
12493         * ComboBox.cs: Fix item range comparation
12494         * ListView.cs: Fix item range comparation
12496 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
12498         * FontDialog.cs:
12499           - Clear example panel when OnPaint is called
12500           - Better solution for displaying the example panel text
12501           - Select default indexes in the ListBoxes
12503 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
12505         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
12507 2005-05-11  Peter Bartok  <pbartok@novell.com>
12509         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
12510         * SelectionRangeConverter.cs: Implemented
12511         * PropertyGrid.cs: Fixed attribute value
12512         * Control.cs:
12513           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
12514           - Added Sebastien Pouliot's CAS Stack Propagation fixes
12515         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
12516           that's common to all drivers. First methods to go there are
12517           Sebastien Pouliot's CAS Stack Propagation helper methods
12518         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
12519           Sebastien Pouliot for CAS Stack Propagation
12521 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
12523         * OSXStructs.cs:
12524           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
12526 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
12528         * DataGridTextBoxColumn.cs: fixed some members
12529         * GridColumnStylesCollection.cs: indexed column is case insensitive
12530         * DataGridTableStyle.cs: fixes
12531         * ThemeWin32Classic.cs: add new theme parameter
12532         * Theme.cs: add new theme parameter
12533         * DataGridDrawingLogic.cs: Datagrid's drawing logic
12534         * DataGrid.cs: fixes, new internal properties, etc.
12535         * DataGridColumnStyle.cs: allows to set grid value
12536         *
12538 2005-05-10  Peter Bartok  <pbartok@novell.com>
12540         * AccessibleObject.cs:
12541           - Removed MonoTODO attribute on help, method is correct
12542           - Fixed Bounds property
12543         * AxHost.cs: Moved MonoTODO
12544         * ButtonBase.cs: Now setting AccessibleObject properties
12545         * RadioButton.cs: Setting proper AccessibleObject role
12546         * CheckBox.cs: Setting proper AccessibleObject role
12547         * ControlBindingsCollection.cs: Added properties, methods and attributes
12548         * DataFormats.cs: Fixed awkward internal API, and changed to enable
12549           userdefined DataFormats.Format items as well
12550         * ListControl.cs: Removed data_member from the public eye
12551         * OpenFileDialog.cs:
12552           - Made class sealed
12553           - Added missing attributes
12554         * SaveFileDialog.cs: Added missing attributes
12555         * ImageListStreamer.cs: Fixed code that caused warnings
12556         * LinkLabel.cs: Removed unreachable code
12557         * TreeView.cs: Fixed code that caused warnings
12558         * PropertyGridView.cs: Fixed code that caused warnings
12559         * GridColumnStylesCollection.cs: Added missing attributes
12560         * GridTableStylesCollection: Added missing attribute
12561         * PropertyManager: Added .ctor
12562         * SecurityIDType: Added
12563         * DataObject.cs: Implemented class
12564         * LinkArea.cs: Added missing attribute
12566 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
12568         * RadioButton.cs: call base method to allow to fire OnClick event
12569         * UpDownBase.cs: OnMouseUp call base method
12570         * CheckedListBox.cs: call base method before returning
12571         * TrackBar.cs: call base method before returning
12572         
12574 2005-05-10  Peter Bartok  <pbartok@novell.com>
12576         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
12577           for messages
12579 2005-05-10  Peter Bartok  <pbartok@novell.com>
12581         * DataFormats.cs: Implemented
12582         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
12583           XplatUIX11.cs: Added Clipboard APIs
12584         * XplatUIWin32.cs: Implemented Clipboard APIs
12585         * FolderBrowserDialog.cs: Added missing event, attributes
12587 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
12589         * CheckBox.cs: call base method to allow to fire OnClick event
12591 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
12593         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
12595 2005-05-06  Peter Bartok  <pbartok@novell.com>
12597         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
12598         * Screen.cs: Implemented
12599         * HelpNavigator.cs: Added
12600         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
12601           property
12602         * HelpProvider.cs: Implemented all we can do until we have a CHM
12603           help library (which means that "What's This" does work now)
12605 2005-05-06  Jackson Harper  <jackson@ximian.com>
12607         * XplatUIX11.cs: Fix waking up the main loop.
12608                 
12609 2005-05-05  Peter Bartok  <pbartok@novell.com>
12611         * XplatUI.cs: Updated revision
12612         * Form.cs: Removed enless loop
12613         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
12614         * Label.cs (OnPaint): Added call to base.OnPaint()
12615         * ToolTip.cs: Made ToolTipWindow reusable for other controls
12616         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
12617         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
12618         * AxHost.cs: Added
12619         * ButtonBase.cs: Moved base.OnPaint() call to end of method
12620         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
12621           to ToolTip.ToolTipWindow for drawing and size methods; this allows
12622           reuse of ToolTipWindow by other controls
12623         * SizeGrip.cs: Moved base.OnPaint() call to end of method
12624         * XplatUIX11.cs: Now clipping drawing area (experimental)
12625         * PictureBox.cs: Moved base.OnPaint() call to end of method
12626         * Theme.cs: Fixed ToolTip abstracts to match new format
12627         * ErrorProvider.cs: Implemented
12629 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
12631         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
12632         * LinkLabel.cs:
12633                 - Adds cursors
12634                 - Handles focus
12635                 - Implements LinkBehavior
12636                 - Fixes many issues
12638 2005-05-03  Jackson Harper  <jackson@ximian.com>
12640         * ListView.cs: Calculate the scrollbar positioning on resize and
12641         paint, so they get put in the correct place.
12643 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
12645         * ColorDialogs.cs: The small color panels are now handled by
12646           SmallColorControl. This fixes drawing of the focus rectangle
12647           and adds a 3D border.
12649 2005-05-03  Peter Bartok  <pbartok@novell.com>
12651         * Control.cs: Modified version of Jonathan Chamber's fix for
12652           double-buffering
12654 2005-05-03  Jackson Harper  <jackson@ximian.com>
12656         * ListView.cs: Remove redraw variable. Control now handles whether
12657         or not a redraw needs to be done, and will only raise the paint
12658         event if redrawing is needed.
12660 2005-05-03  Jackson Harper  <jackson@ximian.com>
12662         * Splitter.cs: No decorations for the splitter form. Cache the
12663         hatch brush.
12665 2005-05-03  Jackson Harper  <jackson@ximian.com>
12667         * TreeView.cs: Use dashed lines to connect nodes. Use the
12668         ControlPaint method for drawing the focus rect instead of doing
12669         that in treeview.
12671 2005-05-02  Peter Bartok  <pbartok@novell.com>
12673         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
12675 2005-04-29  Jackson Harper  <jackson@ximian.com>
12677         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
12678         entire image buffer. Just clear the clipping rectangle.
12680 2005-04-29  Jackson Harper  <jackson@ximian.com>
12682         * ThemeWin32Classic.cs: Don't draw list view items that are
12683         outside the clipping rectangle.
12685 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
12687         * ListBox.cs: added horizontal item scroll
12689 2005-04-29  Jackson Harper  <jackson@ximian.com>
12691         * ThemeWin32Classic.cs: Remove some old debug code that was
12692         causing flicker with the new double buffering code.
12694 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
12696         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
12697         behave like combobox and comboboxlist (still not sure if this is
12698         correct though).
12700 2005-04-28  Jackson Harper  <jackson@ximian.com>
12702         * ThemeWin32Classic.cs: Don't fill the middle of progress
12703         bars. This fills areas outside of the clip bounds that don't need
12704         to be filled.
12706 2005-04-28  Jackson Harper  <jackson@ximian.com>
12708         * Control.cs: Don't expose functionality to touch the image buffers.
12709         * ProgressBar.cs:
12710         * ListView.cs: We do not need to (and no longer can) manipulate
12711         the image buffers directly. All of this is handled by Control.
12713 2005-04-28  Peter Bartok  <pbartok@novell.com>
12715         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
12716           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
12717           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
12719 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
12721         * Combobox:
12722                 - Adjust control's height for non-simple comboboxes (bug fix)
12723                 - Remove dead code
12724         * MenuAPI.cs: remove unused var
12725         * ScrollBar.cs: remove unsed var
12726                  
12727         * ListBox.cs: unselect items when clearing
12729 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
12731         * ListControl.cs: honors OnPositionChanged and default Selected Item
12732         * ListBox.cs: unselect items when clearing
12734 2005-04-27  Jackson Harper  <jackson@ximian.com>
12736         * X11Keyboard.cs: Initialize a default keyboard and give a warning
12737         if a "correct" keyboard is not found. This will make us not crash,
12738         but might give some users bad keyboard layouts...seems to be the
12739         same thing rewind does.
12741 2005-04-27  Jackson Harper  <jackson@ximian.com>
12743         * BindingManagerBase.cs: Attach the current/position changed
12744         handlers to their respective events.
12746 2005-04-27  Jackson Harper  <jackson@ximian.com>
12748         * Control.cs: Make sure that the first WM_PAINT does a full draw,
12749         not just a blit.
12750         * ThemeWin32Classic.cs: Don't fill the background for picture
12751         boxes. This could overright user drawing.
12752         * ComboBox.cs: Just fill the clipping rect not the entire client
12753         rect when drawing the background. This prevents pieces of the
12754         image buffer from getting overwritten and is theoretically faster.
12756 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
12758         * ComboBox.cs: Databinding support fixes, fire missing events
12759         * ListControl.cs: implement missing methods and properties, fixes
12760         * ThemeWin32Classic.cs: Databiding support on Drawing
12761         * CheckedListBox.cs: Databinding support fixes, fire missing events
12762         * ListBox.cs: Databinding support fixes, fire missing events
12763         
12764 2005-04-25  Peter Bartok  <pbartok@novell.com>
12766         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
12768 2005-04-25  Jackson Harper  <jackson@ximian.com>
12770         * TreeView.cs: Use the horizontal scrollbars height not width when
12771         determining how much of the client area is available.
12773 2005-04-25  Jackson Harper  <jackson@ximian.com>
12775         * Control.cs: Double buffering is handled differently now. As per
12776         the spec, the extra buffer is created in the WM_PAINT message and
12777         passed down to the control's drawing code.
12778         * GroupBox.cs:
12779         * Label.cs:
12780         * CheckBox.cs:
12781         * ProgressBar.cs:
12782         * RadioButton.cs:
12783         * ColorDialog.cs:
12784         * ComboBox.cs:
12785         * PropertyGridView.cs:
12786         * UpDownBase.cs:
12787         * MessageBox.cs:
12788         * MenuAPI.cs:
12789         * ListView.cs:
12790         * ButtonBase.cs:
12791         * SizeGrip.cs:
12792         * ScrollBar.cs:
12793         * ListBox.cs:
12794         * TrackBar.cs:
12795         * ToolBar.cs:
12796         * PictureBox.cs:
12797         * DateTimePicker.cs:
12798         * StatusBar.cs:
12799         * TreeView.cs: Update to new double buffering system.
12800         * MonthCalendar.cs: Uncomment block, as Capture is now
12801         working. Update to new double buffering
12802         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
12803         * PaintEventArgs.cs: New internal method allows us to set the
12804         graphics object. This is used for double buffering.
12805         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
12806         rectangle. The internal paint_area var has been removed from
12807         StatusBar. The clipping rect should be used instead.
12808         * Theme.cs: Give the PictureBox drawing method a clipping rect.
12809         * TabPage.cs: The RefreshTabs method was removed, so just call the
12810         tab controls Refresh method now.
12811         * TabControl.cs: Update to new double buffering. Make sure the
12812         handle is created before sizing the tab pages, otherwise we will
12813         get stuck in a loop.
12815 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
12817         * LinkLabel.cs: Fix typo, bug #74719; patch
12818           from Borja Sanchez Zamorano
12820 2005-04-22  Jackson Harper  <jackson@ximian.com>
12822         * TreeNode.cs: Implement Handle stuff.
12823         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
12825 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
12827         * DataGridTextBoxColumn.cs: call base constructors, fixes
12828         * GridColumnStylesCollection.cs: missing events, methods, and functionality
12829         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
12830         * DataGridTableStyle.cs: implements create default column styles
12831         * DataGridBoolColumn.cs: which types can handle
12832         * DataGrid.cs: missing methods, fixes, new functionality
12833         * DataGridColumnStyle.cs: fixes
12835 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
12836         * FolderBrowserDialog.cs:
12837         - Use a thread to fill the TreeView
12838         - Adjusted some sizes
12840 2005-04-19  Peter Bartok  <pbartok@novell.com>
12842         * LinkLabel.cs: (Re-)create the pieces when setting the Text
12843           property. Fixes #74360.
12845 2005-04-19  Jackson Harper  <jackson@ximian.com>
12847         * XEventQueue.cs: Lock when getting the lockqueue size.
12848         * PictureBox.cs: Call base OnPaint
12849         
12850 2005-04-19  Peter Bartok  <pbartok@novell.com>
12852         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
12853           messages were no longer being processed (this broke BeginInvoke)
12855           
12856 2005-04-18  Jackson Harper  <jackson@ximian.com>
12858         * TreeView.cs: buglet that caused node images to get drawn
12859         regardless of whether or not they were in the clipping rectangle.
12861 2005-04-18  Jackson Harper  <jackson@ximian.com>
12863         * CurrencyManager.cs: There are four rules for GetItemProperties:
12864         - If the type is an array use the element type of the array
12865         - If the type is a typed list, use the type
12866         - If the list contains an Item property that is not an object, use
12867         that property
12868         - use the first element of the list if there are any elements in
12869         the list.
12870         
12871 2005-04-17  Jackson Harper  <jackson@ximian.oom>
12873         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
12874         click. This handles offsets for scrolling properly and reduces
12875         memory. Also fixed GetNode to not offset now that TopNode works
12876         properly.
12877         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
12878         
12879 2005-04-17  Jackson Harper  <jackson@ximian.com>
12881         * CursorConverter.cs: Initial implementation.
12883 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
12885         * ListControl.cs: work towards complex data binding support on ListControl
12886         * CurrencyManager.cs: work towards complex data binding support on ListControl
12887         * ListBox.cs: work towards complex data binding support on ListControl
12890 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
12892         * GridTableStylesCollection.cs: fixes name and constructor
12893         * DataGridTableStyle.cs: fixes
12894         * DataGridBoolColumn.cs: fixes names and constructors
12895         * DataGrid.cs: define methods and properties. Some init implementations
12896         * DataGridCell.cs: define methods and properties. Some init implementations
12897         * GridTablesFactory.cs: Define methods and properties
12899 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
12901         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
12902         graphics port changes.  We still want the coordinates in global screen
12903         coordinates.
12905 2005-04-14  Jackson Harper  <jackson@ximian.com>
12907         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
12908         check plus minus or checkbox clicks unless those features are enabled.
12910 2005-04-14  Jackson Harper  <jackson@ximian.com>
12912         * TreeView.cs: Add methods for setting the top and bottom visible
12913         nodes. TreeNode::EnsureVisible uses these methods.
12914         * TreeNode.cs: Implement EnsureVisible
12916 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
12918         * Form.cs: Pospone menu assignation if the window has not been created yet
12919         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
12920         size and position
12922 2005-04-12  Jackson Harper  <jackson@ximian.com>
12924         * TreeView.cs: Set the TopNode properly when scrolling
12925         occurs. This has the added benifit of reducing the amount of
12926         walking that needs to be done when drawing. Also removed an old
12927         misleading TODO.
12928         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
12929         
12930 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
12932         * Timer.cs: fixes interval setting when the timer is already enabled
12933         
12934 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
12936         * FolderBrowserDialog.cs: First approach
12938 2005-04-09  Peter Bartok  <pbartok@novell.com>
12940         * FolderBrowserDialog: Added
12942 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
12944         * LinkLabel.cs: move drawing code into the theme
12945         * ThemeWin32Classic.cs: drawing code and painting background bugfix
12946         * Theme.cs: define DrawLinkLabel method
12948 2005-04-05  Jackson Harper  <jackson@ximian.com>
12950         * BindingContext.cs: Use weak references so these bad actors don't
12951         stay alive longer then they need to.
12953 2005-04-05  Jackson Harper  <jackson@ximian.com>
12955         * ListControl.cs: Basic implementation of complex databinding.
12956         * ComboBox.cs:
12957         * ListBox.cs: Add calls to ListControl databinding methods.
12959 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
12961         * FileDialog.cs:
12962           - Don't change PopupButtonState to Normal when the
12963             PopupButton gets pressed several times.
12964           - Renamed ButtonPanel to PopupButtonPanel
12966 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
12968         * ColorDialog.cs: Use cached objects instead of creating them
12969         * LinkLabel.cs: Use cached objects instead of creating them
12970         * Splitter.cs: Use cached objects instead of creating them
12971         * FontDialog.cs: Use cached objects instead of creating them
12972         * PropertyGridView.cs: Use cached objects instead of creating them
12973         * MessageBox.cs: Use cached objects instead of creating them
12974         * FileDialog.cs: Use cached objects instead of creating them
12975         * ThemeWin32Classic.cs: Use cached objects instead of creating them
12976         * TreeView.cs: Use cached objects instead of creating them
12977         
12978 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
12980         * Control.cs: use Equals to compare the font since no == op
12981         * ScrollBar.cs: use Equals to compare the font since no == op
12983 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
12985         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
12987 2005-04-01  Jackson Harper  <jackson@ximian.com>
12989         * Binding.cs: Implement IsBinding.
12990         * BindingManagerBase.cs:
12991         * PropertyManager.cs:
12992         * CurrencyManager.cs: Add IsSuspended property.
12994 2005-04-01  Jackson Harper  <jackson@ximian.com>
12996         * Binding.cs: Had some IsAssignableFrom calls backwards.
12998 2005-04-01  Jackson Harper  <jackson@ximian.com>
13000         * Binding.cs: Handle null data members when pulling data.
13001         * PropertyManager.cs: Handle the data member being a property that
13002         does not exist.
13004 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
13006         * DataGridTextBoxColumn.cs: fixes signature
13007         * DataGrid.cs: calls right constructor
13009 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
13011         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
13012         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
13013         * GridTableStylesCollection.cs: implements GridTableStylesCollection
13014         * DataGridTableStyle.cs: implements DataGridTableStyle
13015         * DataGridBoolColumn.cs: implements DataGridBoolColumn
13016         * DataGridTextBox.cs: implements DataGridTextBox
13017         * DataGridColumnStyle.cs: implements DataGridColumnStyle
13019 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
13021         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
13023 2005-03-29  Peter Bartok  <pbartok@novell.com>
13025         * Application.cs:
13026           - Properly implemented CompanyName property
13027           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
13028             returns a path that includes CompanyName, ProductName and
13029             Version (fixes bug #70330)
13031 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
13033         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
13034           fixes bug #72588.
13036 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
13038         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
13039         
13040           - Added ReadOnly CheckBox
13041           - Further refactoring: moved some code from Open-/SaveFileDialog
13042             to FileDialog
13044 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
13046         * OpenFileDialog.cs: Fixed CheckFileExists
13047         * FileDialog.cs:
13048           Moved FileView and DirComboBox outside FileDialog class.
13049           They can now be used outside FileDialog
13051 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
13053         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
13054         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
13056 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
13058         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
13059           - Added missing CreatePrompt property in SaveDialog
13060           - Overall SaveDialog handling should be better now
13061           - Added non standard ShowHiddenFiles property
13062           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
13063           - Added InitialDirectory and RestoreDirectory support
13065 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
13067         * FileDialog.cs: Made dirComboBox usable
13069 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
13071         * FileDialog.cs: Added Filter support (case sensitiv)
13073 2005-03-24  Jackson Harper  <jackson@ximian.com>
13075         * TabControl.cs: Need a couple more pixels for the lines.
13077 2005-03-23  Jackson Harper  <jackson@ximian.com>
13079         * TabControl.cs: Give the tab page focus when it is selected.
13081 2005-03-23  Jackson Harper  <jackson@ximian.com>
13083         * TabControl.cs: Account for the drawing of tabs borders when
13084         invalidating. If the slider was clicked dont do click detection on
13085         the tabs.
13087 2005-03-23  Jackson Harper  <jackson@ximian.com>
13089         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
13091 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
13093         * CategoryGridEntry.cs: Added
13094         * GridItem.cs: Added helper properties
13095         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
13096         * GridEntry.cs: Updated code for collection
13097         * PropertyGrid.cs: Cleaned up some formatting
13098         * PropertyGridView.cs: Added drop down functionality for enums.
13099         * GridItemCollection.cs: Added enumerator logic
13100         * PropertyGridEntry.cs: Added
13102 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
13104         * FileDialog.cs:
13105           - Removed unnecessary commented code
13106           - Fixed handling for entering the filename manually in the combobox
13108 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
13110         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
13112 2005-03-18  Peter Bartok  <pbartok@novell.com>
13114         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
13115           them being touching the border
13117 2005-03-18  Peter Bartok  <pbartok@novell.com>
13119         * TextControl.cs: Quick hack to center text better
13121 2005-03-18  Peter Bartok  <pbartok@novell.com>
13123         * ControlPaint.cs:
13124           - Don't throw NotImplemented exceptions, just print a notice once
13125             instead (requested by Miguel). This makes running existing SWF
13126             apps a bit easier
13127         * Control.cs:
13128           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
13129           - Added context menu trigger on right click
13130         * Panel.cs: Trigger invalidate on resize
13131         * StatusBar.cs:
13132           - Removed old double-buffer drawing
13133           - Added ResizeRedraw style to force proper update of statusbar
13134         * ListView.cs:
13135           - Removed debug output
13136         * ThemeWin32Classic.cs:
13137           - Fixed drawing of status bar, now draws Text property if there
13138             are no defined panels
13140 2005-03-18  Jackson Harper  <jackson@ximian.com>
13142         * ImageList.cs: When the image stream is set pull all the images
13143         from it.
13144         * ImageListStreamer.cs: Implement reading image list streams.
13146 2005-03-18  Peter Bartok  <pbartok@novell.com>
13148         * ThemeWin32Classic.cs (DrawPictureBox):
13149           - Fixed calculations for centered drawing
13150           - Fixed drawing for normal mode, not scaling the image on normal
13152 2005-03-18  Peter Bartok  <pbartok@novell.com>
13154         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
13155           textbox
13156         * FileDialog.cs:
13157           - Made Open/Save button the accept button for FileDialog
13158           - Tied the cancel button to the IButtonControl cancel button
13159           - Save/Open now properly builds the pathname
13160           - Now handles user-entered text
13161           - Preventing crash on right-click if no item is selected
13162           - Fixed Text property, now uses contents of textbox
13163           - Fixed SelectedText property, now just returns the text part that
13164             is selected in the text box
13166 2005-03-18  Jackson Harper  <jackson@ximian.com>
13168         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
13169         rect, make sure to de-adjust the interior rect after drawing the
13170         tab text.
13172 2005-03-18  Peter Bartok  <pbartok@novell.com>
13174         * MenuAPI.cs: Remove menu *before* executing selected action to
13175           prevent the menu from 'hanging around'
13176           
13177 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
13179         * XplatUIOSX.cs: Implemented WorkingArea property
13181 2005-03-17  Peter Bartok  <pbartok@novell.com>
13183         * XplatUIX11.cs: Fixed menu coord calculations
13184         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
13185           for calculating offsets
13187 2005-03-17  Peter Bartok  <pbartok@novell.com>
13189         * Hwnd.cs: Do not consider menu presence for default client
13190           rectangle location/size
13191         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
13192           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
13193           translation functions
13194         * FileDialog.cs: Fixed (what I presume is a) typo
13196 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
13198         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
13199           X access (avoids X-Async errors)
13201 2005-03-16  Jackson Harper  <jackson@ximian.com>
13203         * TabControl.cs: Raise the SelectedIndexChanged event.
13205 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
13207         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
13208           - Removed vertical ToolBar and replaced it with a custom panel
13209             (desktop and home button already work)
13210           - Added Help button (some controls get resized or relocated then)
13211           - Draw correct text depending on Open or Save.
13212           - Fixed some typos...
13214 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
13216         * ScrollBar.cs:
13217           - Only change Maximum and Minimum when need it (bug fix)
13219 2005-03-15  Peter Bartok  <pbartok@novell.com>
13221         * Form.cs: Use Handle for icon, to trigger creation if
13222           the window does not yet exist
13223         * Control.cs:
13224           - CanSelect: Slight performance improvement
13225           - Focus(): Preventing possible recursion
13226           - Invalidate(): Removed ControlStyle based clear flag setting
13227           - WM_PAINT: fixed logic for calling OnPaintBackground
13228           - WM_ERASEBKGND: Fixed logic, added call to new driver method
13229             EraseWindowBackground if the control doesn't paint background
13230         * XplatUIWin32.cs:
13231           - Moved EraseWindowBackground() method to internal methods
13232           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
13233             is sent via SendMessage on BeginPaint call on Win32
13234         * XplatUIX11.cs:
13235           - Added EraseWindowBackground() method
13236           - No longer sends WM_ERASEBKGND on .Expose, but on call to
13237             PaintEventStart, which more closely matches Win32 behaviour
13238           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
13239           - Fixed SetFocus() to properly deal with client and whole windows
13240         * Hwnd.cs: Added ErasePending property
13241         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
13242         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
13244 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
13246         * XplatUIOSX.cs:
13247           - Fix hard loop when timers exist.
13248           - Fix bugs with middle and right click for 3 button mice.
13250 2005-03-11  Peter Bartok  <pbartok@novell.com>
13252         * XplatUIX11.cs:
13253           - get_WorkingArea: Need to call X directly, GetWindowPos only
13254             returns cached data now
13255           - Added sanity check to GetWindowPos hwnd usage
13257 2005-03-11  Jackson Harper  <jackson@ximian.com>
13259         * BindingManagerBase.cs: This method isn't used anymore as
13260         PullData now updates the data in the control.
13262 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
13264         * Form.cs: fixes menu drawing on X11
13265         * MenuAPI.cs:  fixes menu drawing on X11
13267 2005-03-11  Peter Bartok  <pbartok@novell.com>
13269         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
13270           from Jonathan Gilbert; should fix bug #73606
13271         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
13272           in Screen coordinates. Thanks, Jordi.
13273         * Form.cs: Added missing attribute
13275 2005-03-11  Peter Bartok  <pbartok@novell.com>
13277         * Form.cs:
13278           - Rudimentary Mdi support
13279           - Removed outdated FormParent code
13280           - Implemented lots of missing properties and methods, still missing
13281             transparency support
13282           - Added missing attributes
13283           - Implemented support for MaximumBounds
13284           - Added firing of various events
13285         * XplatUI.cs: Added SetIcon() method
13286         * XplatUIDriver.cs: Added SetIcon() abstract
13287         * XplatUIOSX.cs: Stubbed out SetIcon() method
13288         * XplatUIX11.cs:
13289           - Implemented SetIcon() support
13290           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
13291           - Switched to unix line endings
13292         * XplatUIWin32.cs:
13293           - Made POINT internal so for can access it as part of MINMAX
13294           - Implemented SetIcon() support
13295           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
13296             native Mdi support again, might have to go managed)
13297         * Control.cs: Now fires the StyleChanged event
13298         * MdiClient.cs: Added; still mostly empty
13300 2005-03-10  Peter Bartok  <pbartok@novell.com>
13302         * SaveFileDialog.cs: Added emtpy file
13304 2005-03-08  Peter Bartok  <pbartok@novell.com>
13306         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
13307           in turn triggers OnCreateContro) when creating a handle for the
13308           first time.
13309         * TextControl.cs: Fixed endless loop in certain cases when
13310           replacing the current selection
13312 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
13314         * ScrollBar.cs:
13315           - Honors NewValue changes in Scroll events allowing apps to change it
13316           - Adds First and Last Scroll events
13317           - Fixes Thumb events
13319 2005-03-07  Peter Bartok  <pbartok@novell.com>
13321         * Hwnd.cs: Added DefaultClientRectangle property
13322         * XplatUI.cs: Now using the X11 driver Where() method, which provides
13323           more detailed debug information
13324         * XplatUIX11.cs:
13325           - Fixed size-change feedback loop, where we would pull an old size
13326             off the queue and mistakenly change our window's size to an
13327             earlier value
13328           - Now compressing ConfigureNotify events, to reduce looping and
13329             redraw issues
13330         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
13331           is called
13333 2005-03-07  Jackson Harper  <jackson@ximian.com>
13335         * Binding.cs: Push data pushes from data -> property. Check if the
13336         property is readonly when attempting to set it.
13338 2005-03-07  Jackson Harper  <jackson@ximian.com>
13340         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
13341         instead of IsSubclassOf. Pulling data now sets the value on the
13342         control.
13343         * PropertyManager.cs:
13344         * CurrencyManager.cs: Just need to pull data when updating now,
13345         because PullData will set the value on the control.
13347 2005-03-04  Jackson Harper  <jackson@ximian.com>
13349         * Binding.cs: Implement data type parsing and converting on pulled
13350         data. TODO: Are there more ways the data can be converted?
13352 2005-03-04  Jackson Harper  <jackson@ximian.com>
13354         * Binding.cs: Support <Property>IsNull checks. Also bind to the
13355         controls Validating method so we can repull the data when the
13356         control loses focus.
13358 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
13360         * ColumnHeader.cs:
13361           - Fixes null string format
13362           
13363         * ListView.cs:
13364           - Adds enum type checks
13365           - Fixes redrawing and recalc need after changing some properties
13366           - Fixes on focus_item set after the event
13367           - Fixes adding columns after the control has been created
13368           
13369         * ThemeWin32Classic.cs:
13370           - Fixes CheckBox focus rectangle
13371           - Fixes ColumnHeader drawing
13374 2005-03-03  Jackson Harper  <jackson@ximian.com>
13376         * Binding.cs: Bind to <Property>Changed events so we can detect
13377         when properties are changed and update the data.
13379 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
13381         * ImageList.cs:
13382           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
13383           - Fixes ImageList constructor with ImageList container
13384           - Fixes image scaling (wrong parameters at DrawImage)
13386 2005-02-02  Jackson Harper  <jackson@ximian.com>
13388         * Binding.cs: Make property searches case-insensitive. Eliminate
13389         some duplicated code.
13391 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
13393         * ComboBox.cs:
13394                 - Handle focus event
13395                 - Fix scrollbar events
13396                 - Discard highlighted item if remove it
13397                 - Fixes SelectedItem with strings
13399 2005-03-01  Peter Bartok  <pbartok@novell.com>
13401         * Control.cs:
13402           - Fixed Visible property, now follows (once again) parent chain
13403             to return false if any control in the chain is visible=false
13404           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
13405           - Fixed several places where is_visible instead of Visible was used
13406           - Implemented FIXME related to focus selection when setting focused
13407             control to be invisible
13409         * XplatUIWin32.cs: Now using proper method to find out if window is
13410           visible. Thanks to Jordi for pointing it out
13412 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
13414         * ComboBox.cs: show/hide scrollbar instead of creating it
13416 2005-02-27  Jackson Harper  <jackson@ximian.com>
13418         * CurrencyManager.cs: Add PositionChanged stuff.
13420 2005-02-27  Peter Bartok  <pbartok@novell.com>
13422         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
13423         * XplatUIOSX.cs: Added GetMenuOrigin() stub
13424         * XplatUIWin32.cs: Implemented GetMenuOrigin()
13425         * XplatUIX11.cs:
13426           - Implemented GetMenuDC()
13427           - Implemented GetMenuOrigin()
13428           - Implemented ReleaseMenuDC()
13429           - Implemented generation of WM_NCPAINT message
13430           - Implemented generation and handling of WM_NCCALCSIZE message
13431         * Form.cs: Added debug helper message for Jordi's menu work
13432         * Hwnd.cs:
13433           - Modified ClientRect property; added setter, fixed getter to handle
13434             setting of ClientRect
13435           - Added MenuOrigin property
13437 2005-02-26  Peter Bartok  <pbartok@novell.com>
13439         * XplatUIX11.cs:
13440           - Destroys the caret if a window that's being destroyed contains it
13441           - Ignores expose events coming from the X11 queue for windows that
13442             already are destroyed
13443           - Now uses the proper variable for handling DestroyNotify, before we
13444             marked the wrong window as destroyed
13445           - Improved/added some debug output
13447 2005-02-26  Peter Bartok  <pbartok@novell.com>
13449         * X11Keyboard.cs: Fixes to work on 64bit systems
13451 2005-02-26  Peter Bartok  <pbartok@novell.com>
13453         * Control.cs:
13454           - Now calling OnHandleDestroyed from DestroyHandle()
13455             instead of Dispose()
13456           - Removed bogus call to controls.Remove() from DestroyHandle()
13458 2005-02-26  Peter Bartok  <pbartok@novell.com>
13460         * Control.cs: Properly destroy child windows when our handle is
13461           destroyed
13463 2005-02-25  Peter Bartok  <pbartok@novell.com>
13465         * XplatUI.cs:
13466           - Added 'DriverDebug' define to allow tracing XplatUI API calls
13467           - Alphabetized Static Methods and Subclasses
13469         * XplatUIX11.cs:
13470           - Added XException class to allow custom handling of X11 exceptions
13471           - Created custom X11 error handler, tied into XException class
13472           - Added support for MONO_XEXCEPTIONS env var to allow the user
13473             to either throw an exception on X errors or continue running
13474             after displaying the error
13475           - Added handling of DestroyNotify message
13476           - Added handler for CreateNotify message (still disabled)
13477           - Improved (tried to at least) Where method to provide file and lineno
13478         * X11Structs.cs:
13479           - Added XErrorHandler delegate
13480           - Added XRequest enumeration (to suppor translation of errors)
13482 2005-02-25  Jackson Harper  <jackson@ximian.com>
13484         * PropertyManager.cs: Implement editing features
13485         * CurrencyManager.cs:
13486         * Binding.cs: First attempt at UpdateIsBinding
13487         * BindingManagerBase.cs: Call UpdateIsBinding before
13488         pushing/pulling data.
13490 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
13492         * MenuAPI.cs: Respect disabled items
13493         * ThemeWin32Classic.cs
13494                 - Caches ImageAttributes creation for DrawImageDisabled
13495                 - Fixes vertical menu line drawing
13496                 - Draws disabled arrows in disable menu items
13498 2005-02-24  Peter Bartok  <pbartok@novell.com>
13500         * Hwnd.cs:
13501           - Added UserData property to allow associating arbitrary objects
13502             with the handle
13503           - Fixed leak; now removing Hwnd references from static windows array
13504         * XplatUIWin32.cs:
13505           - Fixed Graphics leak in PaintEventEnd
13506           - Removed usage of HandleData, switched over to Hwnd class
13507         * HandleData.cs: Removed, obsoleted by Hwnd.cs
13509 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
13511         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
13512         * ScrollBar.cs: Fixes bug
13513         * TrackBar.cs: removes death code, clipping, mimize refreshes,
13514          keyboard navigation enhancements
13516 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
13518         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
13519         * GroupBox.cs: Add control styles
13520         * Label.cs: Add control styles
13521         * UpDownBase.cs: Add control styles
13522         * ListBox.cs: Add control styles
13523         * XplatUIWin32.cs: Fixes wrong parameter order
13526 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
13528         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
13530 2005-02-23  Jackson Harper  <jackson@ximian.com>
13532         * PropertyManager.cs: Implement property binding. This doesn't
13533         seem to work yet though as (I think) there are some bugs in
13534         System.ComponentModel.PropertyDescriptor.
13535         * BindingContext.cs: Use new PropertyManager constructor.
13537 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
13539         * ProgressBar.cs: use clip region in ProgressBar
13540         * ThemeWin32Classic.cs: use clip region in ProgressBar
13542 2004-02-22  Jackson Harper  <jackson@ximian.com>
13544         * BindingsCollection.cs: Remove some debug code.
13546 2005-02-22  Jackson Harper  <jackson@ximian.com>
13548         * BindingContext.cs:
13549         * ControlBindingsCollection.cs:
13550         * CurrencyManager.cs:
13551         * Binding.cs:
13552         * BindingManagerBase.cs: Initial implementation
13553         * BindingsCollection.cs: Add an internal contains method that the
13554         BindingManagerBase uses to ensure bindings aren't added twice to
13555         the collection.
13556         * PropertyManager.cs: Stubbed out.
13557         * Control.cs:
13558         * ContainerControl.cs: Hook up databinding
13559         
13560 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
13562         * XplatUIOSX.cs:
13563           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
13564           Fixed Invalidate/Update chain.
13565           Fixed tons of other minor bugs (this is almost a complete rewrite).
13567 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
13569         * ComboBox.cs: do subcontrol creation when the control is created
13571 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
13573         * Label.cs: fixes image drawing (image and imagelist)
13574         * ThemeWin32Classic.cs: cache brushes
13575         
13576 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
13578         * Form.cs: Move menu drawing code to Theme class
13579         * ComboBox.cs: Move ComboBox drawing code to Theme class
13580         * MenuItem.cs: Move menu drawing code to Theme class
13581         * MenuAPI.cs: Move menu drawing code to Theme class
13582         * ThemeWin32Classic.cs: New methods
13583         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
13584         * ListBox.cs: Move Listbox drawing code to Theme class
13585         * Theme.cs: New methods
13587 2005-02-20  Peter Bartok  <pbartok@novell.com>
13589         * Control.cs:
13590           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
13591             only process mnemonics on those)
13592           - Fixed event sequence for key handling; first calling
13593             ProcessKeyEventArgs now
13594         * TextBoxBase.cs:
13595           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
13596             for processing non-character keys
13597           - Fixed WM_CHAR to generate proper event sequence before processing
13598         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
13599           generation
13601 2005-02-19  Peter Bartok  <pbartok@novell.com>
13603         * UserControl.cs: Added TextChanged event; added attributes
13604         * SizeGrip.cs: Implemented resizing and optional display of grip
13605         * Form.cs: Fixed attribute
13606         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
13607           Changed meaning of ScrollWindow bool argument; instead of the
13608           clear attribute (which will be true usually anyway), it gives the
13609           option of moving child controls as well.
13610         * XplatUIX11.cs:
13611           - Changed to match new ScrollWindow argument
13612           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
13613             now handles the implicit parent window a WM puts around us
13614         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
13615           to work)
13616         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
13617         * TreeView.cs: Adjusted to new ScrollWindow arguments
13619 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
13621         * Form.cs: Menu integration with non-client area
13622         * MenuItem.cs: Menu integration with non-client area
13623         * MenuAPI.cs: Menu integration with non-client area
13625 2005-02-18  Peter Bartok  <pbartok@novell.com>
13627         * MethodInvoker.cs: Added
13628         * MdiLayout.cs: Added
13629         * SendKeys.cs: Started implementation
13630         * ErrorIconAlignment.cs: Added
13632 2005-02-18  Peter Bartok  <pbartok@novell.com>
13634         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
13635         * Form.cs: Added handling for Menu-related Non-client messages
13637 2005-02-17  Peter Bartok  <pbartok@novell.com>
13639         * UpDownBase.cs: Fixed typo, compilation errors
13640         * DomainUpDown.cs: Fixed attribute value
13642 2005-02-16  Miguel de Icaza  <miguel@novell.com>
13644         * UpDownBase.cs: Attach entry events.
13645         Propagate events.
13646         Add ForeColor property, Focused, InterceptArrowKeys (interception
13647         does not work yet).
13649 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
13651         * Form.cs:
13652                 - Redraw non client are on Setmenu
13653                 - Calc proper menu starting point
13655 2005-02-17  Peter Bartok  <pbartok@novell.com>
13657         * Application.cs: Fixed message_filter check
13659 2005-02-17  Peter Bartok  <pbartok@novell.com>
13661         * Application.cs: Now calls registered message filters
13662         * DockStyle.cs: Fixed attribute
13663         * Form.cs: Fixed attribute
13664         * Menu.cs: Fixed attribute
13665         * ToolTip.cs: Fixed attribute
13666         * TreeNode.cs: Added missing attributes and arranged in regions
13667         * PropertyGrid.cs: Fixed signatures
13668         * TreeNodeCollection.cs: Added attributes
13669         * Splitter.cs: Added missing attributes; arranged into regions
13670         * TabPage.cs: Added missing attributes; arranged into regions
13671         * TextBoxBase.cs: Added missing attributes
13672         * TextBox.cs: Added missing attributes
13673         * ArrangeDirection.cs: Added missing attributes
13674         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
13675         * ToolBarButton.cs: Fixed attributes
13676         * AnchorStyles.cs: Fixed attribute
13677         * TrackBar.cs: Fixed attributes
13678         * TabControl.cs: Added missing attributes and arranged into regions
13679         * ToolBar.cs: Fixed attribute
13680         * StatusBar.cs: Fixed signature, organized into regions and added
13681           attributes
13682         * StatusBarPanel.cs: Fixed attributes
13683         * ContentsResizedEventArgs.cs: Implemented
13684         * ContentsResizedEventHandler.cs: Implemented
13685         * DateBoldEventArgs.cs: Implemented
13686         * DateBoldEventHandler.cs: Implemented
13687         * UpDownEventArgs.cs: Implemented
13688         * UpDownEventHandler.cs: Implemented
13689         
13690 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
13692         * Form.cs: first Menu NC refactoring
13693         * MenuAPI.cs: first Menu NC refactoring
13694         
13695 2005-02-16  Peter Bartok  <pbartok@novell.com>
13697         * ImeMode.cs: Added missing attributes
13698         * Menu.cs: Fixed attribute
13699         * GroupBox.cs: Fixed attribute
13700         * Label.cs: Fixed attribute
13701         * ColorDialog.cs (RunDialog): Removed TODO attribute
13702         * ComboBox.cs: Fixed attributes
13703         * ListControl.cs: Added missing attributes
13704         * PropertyGrid.cs: Fixed attributes
13705         * Control.cs: Fixed attributes
13706         * ListViewItem.cs: Added TypeConverter attribute
13707         * NotifyIcon.cs: Fixed attributes
13708         * ListView.cs: Fixed attributes
13709         * ButtonBase.cs: Fixed attribute
13710         * ImageList.cs: Added missing attributes
13711         * ContainerControl.cs: Fixed signature
13712         * CheckedListBox.cs: Fixed attribute; added missing attributes
13713         * Panel.cs: Fixed attributes
13714         * PropertyTabChangedEventArgs.cs: Added missing attribute
13715         * PropertyValueChangedEventArgs.cs: Added missing attribute
13716         * Binding.cs: Fixed attribute
13717         * ListViewItemConverter: Implemented ListViewSubItemConverter class
13718         * ListBox.cs: Fixed attribute; added missing attributes;
13719         * ScrollableControl.cs: Added missing attributes
13720         * PictureBox.cs: Added missing attributes; implemented missing property
13721         * DateTimePicker.cs: Added missing attributes
13722         * Theme.cs (ToolWindowCaptionHeight): Fixed type
13723         * MonthCalendar.cs: Fixed attributes
13724         * StatusBarPanel.cs: Added missing attributes
13725         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
13727 2005-02-16  Peter Bartok  <pbartok@novell.com>
13729         * TextBoxBase.cs: The previous method to enforce height yet remember
13730           the requested high was less than ideal, this is an attempt to do
13731           it better.
13732         * Control.cs: Added comment about possible problem
13733         * Copyright: Updated format
13734         * GridItemType.cs: Fixed swapped values
13736 2005-02-15  Jackson Harper  <jackson@ximian.com>
13738         * BaseCollection.cs: Use property so we never access an
13739         uninitialized list. Also initialize the list in the property.
13741 2005-02-15  Peter Bartok  <pbartok@novell.com>
13743         * GroupBox.cs (ProcessMnemonic): Implemented
13744         * Label.cs (ProcessMnemonic): Implemented
13745         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
13746           hotkeys
13748 2005-02-15  Peter Bartok  <pbartok@novell.com>
13750         * RadioButton.cs (ProcessMnemonic): Implemented
13751         * CheckBox.cs (ProcessMnemonic): Implemented
13752         * Control.cs:
13753           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
13754             handling
13755           - Added internal method to allow calling ProcessMnemonic from other
13756             controls
13757         * ContainerControl.cs:
13758           - Started support for handling validation chain handling
13759           - Implemented ProcessMnemonic support
13760           - Added Select() call to Active, to make sure the active control
13761             receives focus
13762         * Form.cs: Setting toplevel flag for Forms (this was lost in the
13763           FormParent rewrite)
13764         * ThemeWin32Classic.cs:
13765           - DrawCheckBox(): Fixed stringformat to show hotkeys
13766           - DrawRadioButton(): Fixed stringformat to show hotkeys
13767         * CommonDialog.cs: Removed WndProc override, not needed
13769 2005-02-14  Peter Bartok  <pbartok@novell.com>
13771         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
13772           missed those in the rewrite
13774 2005-02-14  Miguel de Icaza  <miguel@novell.com>
13776         * NumericUpDown.cs (Increment, ToString): Add.
13777         (DecimalPlaces): implement.
13778         
13779         Add attributes.
13780         
13781         * UpDownBase.cs: Add the designer attributes.
13783 2005-02-13  Peter Bartok  <pbartok@novell.com>
13785         * Panel.cs: Removed border_style, now in Control
13786         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
13787           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
13789 2005-02-13  Peter Bartok  <pbartok@novell.com>
13791         * MouseButtons.cs: Added missing attributes
13792         * XplatUIStructs.cs: Added enumeration for title styles
13793         * LeftRightAlignment.cs: Added missing attributes
13794         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
13795           it compatible with Graphics.FromHwnd()
13796         * SelectedGridItemChangedEventArgs.cs: Fixed property type
13797         * Keys.cs: Added missing attributes
13798         * SelectionRange.cs: Added missing attributes
13799         * SelectionRangeConverter.cs: Added
13800         * XplatUI.cs:
13801           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
13802             ReleaseMenuDC methods
13803           - Renamed ReleaseWindow to UngrabWindow
13804           - Added proper startup notice to allow version identification
13805         * Form.cs:
13806           - Added missing attributes
13807           - Removed FormParent concept
13808         * Label.cs: Removed border_style field, now in Control
13809         * RadioButton.cs: Now properly selects RadioButton when focus is
13810           received
13811         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
13812         * Control.cs:
13813           - Added missing attributes
13814           - Added borderstyle handling
13815           - Removed FormParent concept support
13816           - Fixed calls to XplatUI to match changed APIs
13817           - Fixed bug that would case us to use disposed Graphics objects
13818           - Removed unneeded internal methods
13819           - PerformLayout(): Fixed to handle DockStyle.Fill properly
13820           - SelectNextControl(): Fixed to properly check common parents
13821         * TextBoxBase.cs: Removed border_style field (now in Control)
13822         * MessageBox.cs:
13823           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
13824             fixed calculations for form size
13825           - Added support for localized strings and icons
13826           - Improved form size calculations, added border
13827         * ListView.cs: Removed border_style field (now in Control)
13828         * X11Structs.cs: Moved several structs from X11 driver here
13829         * X11Keyboard.cs: Changed debug message
13830         * Application.cs: Removed FormParent concept support
13831         * CommonDialog.cs:
13832           - Resetting end_modal flag
13833           - Removed FormParent concept support
13834         * NativeWindow.cs: Removed FormParent concept support
13835         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
13836           Client area and Non-Client whole window to allow support for WM_NC
13837           messages
13838         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
13839           prevent using it until it supports Hwnd as per Geoff Norton's request
13840         * ToolBar.cs: Fixed drawing, was not doing proper drawing
13841         * PictureBox.cs: Removed border_style field, now in Control
13842         * XplatUIWin32.cs: Added new driver methods
13844 2005-02-12  Peter Bartok  <pbartok@novell.com>
13846         * OpacityConverter.cs: Implemented
13847         * Hwnd.cs: Internal class to support drivers that need to emulate
13848           client area/non-client area window behaviour
13850 2005-02-11  Peter Bartok  <pbartok@novell.com>
13852         * KeysConverter.cs: Implemented
13854 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
13856         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
13857         * LinkLabel: Added missing attributes
13858         * MainMenu.cs: fixes ToString
13859         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
13860         * ListBox.cs: fixes event position
13861         * TrackBar.cs: adds missing attributes and events
13862         
13863 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
13865         * MenuItem.cs: Use SystemInformation and bug fixes
13866         * MenuAPI.cs: Use SystemInformation and bug fixes
13868 2005-02-09  Jackson Harper  <jackson@ximian.com>
13870         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
13871         their keystate otherwise things like VK_MENU get stuck "on".
13873 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
13875         * ListBox.cs: Fixes AddRange bug
13876         
13877 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
13879         * ProgressBar.cs
13880                 - Add missing attributes
13881                 - Add missing method
13882                 
13883         * CheckedListBox.cs: Added missing attributes
13884                 - Add missing attributes
13885                 - Remove extra method
13886         
13887         * ComboBox.cs: Added missing attributes
13888         * VScrollBar.cs: Added missing attributes
13889         * ScrollBar.cs:  Added missing attributes
13890         * ListBox.cs: Fixes signature, add missing consts
13891         * LinkArea.cs:   Added missing attributes
13892         
13894 2005-02-08  Peter Bartok  <pbartok@novell.com>
13896         * Menu.cs: Added missing attributes
13897         * MainMenu.cs: Added missing attributes
13898         * GroupBox.cs: Added missing attributes
13899         * Label.cs: Added missing attributes
13900         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
13901         * ColorDialog.cs:
13902           - Added Instance and Options properties
13903           - Added missing attributes
13904         * Cursor.cs: Made Serializable
13905         * NotifyIcon: Added missing attributes
13906         * MenuItem.cs: Added missing attributes
13907         * TextBoxBase.cs: Implemented AppendText() and Select() methods
13908         * Panel.cs: Added Missing attributes
13909         * MonthCalendar.cs: Fixed CreateParams
13911 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
13912         
13913         * LinkLabel.cs:
13914                 - Fixes signature
13915                 - Fixes issues with links
13916                 - Adds the class attributes
13918 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
13919         
13920         * ComboBox.cs:
13921                 - Fixes button when no items available in dropdown
13922                 - Fixes repainting problems
13923                 - Adds the class attributes
13924                 
13925 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
13927         * XplatUIOSX.cs: Detect the menu bar and title bar height from
13928         the current theme.  Cache these on startup.
13930 2005-02-07  Jackson Harper  <jackson@ximian.com>
13932         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
13933         the scrollbar buttons when they are depressed.
13935 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
13937         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
13938         Get the display size from the main displayid.  We currently dont
13939         support multiple display configurations.
13941 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
13943         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
13945 2005-02-07  Miguel de Icaza  <miguel@novell.com>
13947         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
13949 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
13951         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
13953 2005-02-04  Jackson Harper  <jackson@ximian.com>
13955         * ThemeWin32Classic.cs: Respect the clipping rect when
13956         drawing. Only fill the intersection of clips and rects so there
13957         isn't a lot of large fills.
13958         * ScrollBar.cs: Pass the correct clipping rect to the theme
13959         engine. Remove some debug code.
13961 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
13962         
13963         * DateTimePicker.cs:
13964                 - Fixed crash on DateTime.Parse, use Constructor instead
13966 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
13967         
13968         * MenuItem.cs:
13969         * MenuAPI.cs:
13970                 - Owner draw support (MeasureItem and DrawItem)
13972 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
13973         
13974         *  Menu.cs:
13975                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
13976                 - Fixes MenuItems.Add range
13977         * MenuItem.cs:
13978                 - MergeMenu and Clone and CloneMenu functions
13980 2005-02-03  Jackson Harper  <jackson@ximian.com>
13982         * ScrollBar.cs: Make abstract
13983         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
13984         is abstract.
13986 2005-02-03  Jackson Harper  <jackson@ximian.com>
13988         * ScrollBar.cs: First part of my scrollbar fixups. This removes
13989         all the unneeded refreshes and uses invalidates with properly
13990         computed rects.
13992 2005-02-03  Peter Bartok  <pbartok@novell.com>
13994         * ComponentModel.cs: Added
13995         * IDataGridEditingService.cs: Added
13996         * Timer.cs: Added missing attributes
13997         * ToolTip.cs: Added missing attributes
13999 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
14001         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
14003 2005-02-03  Peter Bartok  <pbartok@novell.com>
14005         * ListBox.cs: Added missing attributes
14007 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
14008         
14009         * ListBox.cs:
14010                 - Fixes font height after font change
14011                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
14012                 
14013 2005-02-02  Peter Bartok  <pbartok@novell.com>
14015         * HandleData.cs: Introduced static methods to allow class
14016           to be more self-contained and track it's own HandleData objects
14017         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
14018           HandleData to use new static methods
14020 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
14022         * Combobox.cs:
14023                 - Fixes default size and PreferredHeight
14024                 - Missing events
14025                 - ObjectCollection.Insert implementation
14026                 
14027         * ListControl.cs
14028                 - Fixes signature
14029         * ListBox.cs:
14030                 - Several fixes
14031                 - ObjectCollection.Insert implementation
14032                 - No selection after clean
14033                 - Small fixes
14035 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
14037         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
14039 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
14041         * Combobox.cs:
14042                 - Caches ItemHeight calculation for OwnerDrawVariable
14043                 - Handles dropdown properly
14044                 - Fixes several minor bugs
14046 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
14048         * ListBox.cs:
14049                 - Fixes 71946 and 71950
14050                 - Fixes changing Multicolumn on the fly
14051                 - Fixes keyboard navigation on Multicolumn listboxes
14053 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
14054         
14055         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
14056         crash reporter log.
14058 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
14060         * XplatUIOSX.cs: Allow applications to actually exit.
14062 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
14064         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
14065         their parent at creation time rather than lazily later.  Fixes a major
14066         regression we were experiencing.
14068 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
14070         * ThemeWin32Classic.cs: more date time picker painting fixes
14071         * DateTimePicker.cs: more monthcalendar drop down fixes
14072         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
14074 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
14076         * ScrollBar.cs:
14077                 - When moving the thumb going outside the control should stop the moving
14078                 - Adds the firing of missing events
14079                 - Fixes no button show if Size is not specified
14080                 - End / Home keys for keyboard navigation
14082 2005-01-30  Peter Bartok  <pbartok@novell.com>
14084         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
14085           sanity check to prevent theoretical loop
14086         * XplatUIWin32.cs (SetVisible): Removed debug output
14087         * XplatUIX11.cs (SystrayChange): Added sanity check
14088         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
14089         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
14090           behaviour, valid until the X11 client window rewrite is done
14091         * TextBox.cs (ctor): Setting proper default foreground and background
14092           colors
14094 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
14096         * Theme: Added DrawDateTimePicker to interface
14097         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
14098         * DateTimePicker.cs: Created (still needs keys and painting code)
14099         * DateTimePickerFormat.cs: added
14100         * MonthCalendar.cs: fixed CreateParams for popup window mode
14101           
14102 2005-01-29  Peter Bartok  <pbartok@novell.com>
14104         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
14105           this should also the calculations for ligher/darker
14106         * Theme.cs: Fixed defaults for ScrollBar widths/heights
14108 2005-01-29  Peter Bartok  <pbartok@novell.com>
14110         * ArrangeDirection.cs: Added
14111         * ArrangeStartingPositon.cs: Added
14112         * SystemInformation.cs: Implemented
14113         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
14114           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
14115           used by SystemInformation class
14116         * X11Strucs.cs: Added XSizeHints structure
14117         * MenuAPI.cs:
14118           - Fixed CreateParams to make sure the menu window is always visible
14119           - TrackPopupMenu: Added check to make sure we don't draw the
14120             menu offscreen
14122 2005-01-29  Peter Bartok  <pbartok@novell.com>
14124         * HandleData.cs: Added method for altering invalid area
14125         * TextBoxBase.cs: Implemented TextLength
14127 2005-01-28  Peter Bartok  <pbartok@novell.com>
14129         * XplatUIX11.cs: Improvement over last patch, not sending
14130           the WM_PAINT directly anymore, instead we scroll any pending
14131           exposed areas and let the system pick out the WM_PAINT later
14133 2005-01-28  Peter Bartok  <pbartok@novell.com>
14135         * SWF.csproj: Deleted, no longer used. Instead,
14136           Managed.Windows.Forms/SWF.csproj should be used
14137         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
14138           directly, to avoid a potential race condition with the next
14139           scroll
14141 2005-01-28  Peter Bartok  <pbartok@novell.com>
14143         * XplatUI.cs: Made class internal
14145 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
14147         * CheckedListBox.cs:
14148                 - Draw focus
14149                 - Fixed Drawing
14150                 - Missing methods and events
14152 2005-01-27  Peter Bartok  <pbartok@novell.com>
14154         * Application.cs (Run): Don't use form if we don't have one
14156 2005-01-27  Peter Bartok  <pbartok@novell.com>
14158         * TextBoxBase.cs (get_Lines): Fixed index off by one error
14160 2005-01-27  Peter Bartok  <pbartok@novell.com>
14162         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
14163         * GridItem.cs: Added; Patch by Jonathan S. Chambers
14164         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
14165         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
14166         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
14167         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
14168         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
14169         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
14170         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
14171         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
14172         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
14173         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
14175 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
14177         * Combobox.cs:
14178                 - Draw focus on Simple Combobox
14179                 - Fixes drawing issues
14180                 - fixes 71834
14182 2005-01-27  Peter Bartok  <pbartok@novell.com>
14184         * Form.cs:
14185           - Place window in default location, instead of hardcoded 0/0
14186           - Send initial LocationChanged event
14187         * Control.cs:
14188           - UpdateBounds after creation to find out where the WM placed us
14189           - Make sure that if the ParentForm changes location the Form
14190             is notified
14191         * XplatUIX11.cs: XGetGeometry will not return the coords relative
14192             to the root, but to whatever the WM placed around us.
14193             Translate to root coordinates before returning toplevel
14194             coordinates
14195         * XplatUIWin32.cs: Removed debug output
14196         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
14197           flag to GetWindowPos, to allow translation of coordinates on X11
14199 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
14201         * ListBox.cs: connect LostFocus Event
14203 2005-01-27  Peter Bartok  <pbartok@novell.com>
14205         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
14206           XplatUIX11.cs: Extended the Systray API
14207         * Form.cs: Removed debug output
14208         * Application.cs: Fixed focus assignment, always need to call
14209           XplatUI.Activate() since Form.Activate() has rules that may
14210           prevent activation
14211         * NotifyIcon.cs: Should be complete now
14212         * ToolTip.cs: Worked around possible timer bug
14214 2005-01-27  Jackson Harper  <jackson@ximian.com>
14216         * TabControl.cs:
14217         - Only invalidate the effected tabs when the
14218         selected index changes. This reduces drawing and gets rid of some
14219         flicker.
14220         - Only refresh if the tabs need to be shifted, otherwise only
14221         invalidate the slider button.
14222         - On windows the tabs are not filled to right if the slider is
14223         visible.
14224         
14225 2005-01-27  Jackson Harper  <jackson@ximian.com>
14227         * TabControl.cs: Only refresh on mouseup if we are showing the
14228         slider. Also only invalidate the button whose state has changed.
14230 2005-01-26  Peter Bartok  <pbartok@novell.com>
14232         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
14233         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
14234           and SystrayRemove() methods
14235         * XplatUIOSX.cs: Stubbed Systray methods
14236         * XplatUIX11.cs:
14237           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
14238             methods
14239           - Fixed broken XChangeProperty calls (marshalling messed up things)
14240         * X11Structs.cs: Added enums and structs required for Size hinting
14241         * NotifyIcon.cs: Added & implemented
14243 2005-01-26  Jackson Harper  <jackson@ximian.com>
14245         * TabControl.cs: Space vertically layed out tabs properly.
14247 2005-01-26  Peter Bartok  <pbartok@novell.com>
14249         * Form.cs (CreateClientParams): Always set the location to 0,0
14250           since we're a child window.
14252         * Control.cs (SetVisibleCore): Always explicitly setting the location
14253           of a toplevel window, apparently X11 doesn't like to move windows
14254           while they're not mapped.
14256 2005-01-26  Jackson Harper  <jackson@ximian.com>
14258         * TabControl.cs: Implement FillToRight size mode with vertically
14259         rendered tabs.
14261 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
14263         * ControlPaint.cs, ThemeWin32Classic.cs
14264                 - Fixes DrawFocusRectangle
14266 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
14268         * MenuAPI.cs:
14269                 - MenuBar tracking only starts when item is first clicked
14270                 - Fixes menu hidding for multiple subitems
14271                 - Unselect item in MenuBar when item Executed
14272                 - Fixes bug 71495
14274 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
14276         * ListControl.cs:
14277                 - IsInputKey for ListBox
14278         * ListBox.cs:
14279                 - Focus item
14280                 - Shift and Control item selection
14281                 - Implement SelectionMode.MultiExtended
14282                 - Fixes RightToLeft
14283         * ComboBox.cs:
14284                 - IsInputKey implemented
14285                 - Do not generate OnTextChangedEdit on internal txt changes
14286                 
14287 2005-01-23  Peter Bartok  <pbartok@novell.com>
14289         * AccessibleObject.cs: Partially implemented Select()
14290         * MonthCalendar.cs: Added missing attributes and events
14291         * Form.cs: Fixed CreateParams behaviour, now controls derived from
14292           form can properly override CreateParams.
14293         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
14294           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
14295           Control performs Invalidate & Update
14296         * NativeWindow (CreateHandle): Added special handling for Form
14297           and Form.FormParent classes to allow overriding of From.CreateParams
14298         * Control.cs:
14299           - ControlNativeWindow: Renamed 'control' variable to more intuitive
14300             name 'owner'
14301           - ControlNativeWindow: Added Owner property
14302           - Removed usage of Refresh() on property changes, changed into
14303             Invalidate(), we need to wait until the queue is processed for
14304             updates, direct calls might cause problems if not all vars for
14305             Paint are initialized
14306           - Added call to UpdateStyles() when creating the window, to set any
14307             styles that CreateWindow might have ignored.
14308           - Added support for Form CreateParent overrides to UpdateStyles()
14309         * MessageBox.cs: Removed no longer needed FormParent override stuff,
14310           CreateParams are now properly overridable
14311         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
14312           CreateParams are now properly overridable
14314 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
14316         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
14317         OnTextBoxChanged.
14319         Capture LostFocus and OnTextBoxChanged.  The later introduces a
14320         recursive invocation that I have not figured out yet.
14322         Reset the timer when not using (it was accumulating).
14325         (OnTextBoxChanged): Set UserEdit to true here to track whether the
14326         user has made changes that require validation.
14328         Reset changing to avoid loops.
14330 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
14332         * NumericUpDown.cs: Display value at startup.
14334         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
14335         ValidateEditText.
14337         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
14338         filled in.  Added some basic parsing of text.
14340         Still missing the OnXXX method overrides, and figuring out the
14341         events that must be emitted.
14343         * UpDownBase.cs: Handle UserEdit on the Text property.
14344         
14345 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
14347         * ComboBox.cs:
14348           - Fixes IntegralHeight
14349           - ToString method
14351 2005-01-21  Jackson Harper  <jackson@ximian.com>
14353         * TabControl.cs: Set the SelectedIndex property when SelectedTab
14354         is set so that the page visibility is updated and the tabs are
14355         sized correctly.
14357 2005-01-21  Jackson Harper  <jackson@ximian.com>
14359         * TabControl.cs: Use cliping rectangle for blitting. Give the
14360         theme the clipping rect so we can do clipping while
14361         drawing. Remove some debug code.
14363 2005-01-21  Jackson Harper  <jackson@ximian.com>
14365         * TabPage.cs: Add a new method so tab pages can force the tab
14366         control to recalculate the tab page sizes.
14367         * TabControl.cs: UpdateOwner needs to make the tab control recalc
14368         sizes.
14370 2005-01-20  Jackson Harper  <jackson@ximian.com>
14372         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
14374 2005-01-20  Jackson Harper  <jackson@ximian.com>
14376         * TreeView.cs: Set the bounds for nodes properly. They were
14377         getting screwed up when checkboxes were not enabled, but images
14378         were.
14380 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
14382         * ListBox.cs:
14383                 - Owner draw support
14384                 - Fixes
14385                 
14386 2005-01-20  Jackson Harper  <jackson@ximian.com>
14388         * XplatUIStructs.cs: More misc keys
14389         * X11Keyboard.cs: Ignore some control keys.
14391 2005-01-20  Jackson Harper  <jackson@ximian.com>
14393         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
14394         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
14396 2005-01-19  Peter Bartok  <pbartok@novell.com>
14398         * Control.cs: Un-selecting the control when it is loosing focus
14400 2005-01-19  Jackson Harper  <jackson@ximian.com>
14402         * TreeView.cs: Hook up to the text controls leave event so we can
14403         end editing when the users clicks outside the text box.
14404         
14405 2005-01-19  Jackson Harper  <jackson@ximian.com>
14407         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
14408         get set in the conversion array.
14410 2005-01-19  Peter Bartok  <pbartok@novell.com>
14412         * Application.cs (ModalRun): Added a call to CreateControl to ensure
14413           focus is properly set
14414         * Button.cs:
14415           - Added missing attributes
14416           - removed styles, those are already set in the base class
14417         * ButtonBase.cs:
14418           - Added missing attributes
14419           - Added clip window styles
14420         * CheckBox.cs: Added missing attributes
14421         * CommonDialog.cs:
14422           - FormParentWindow.CreateParams: Added required clip styles
14423         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
14424           also filters modifier keys
14425         * MessageBox.cs:
14426           - Added assignment of Accept and Cancel button to enable Enter
14427             and Esc keys in MessageBox dialogs
14428           - FormParentWindow.CreateParams: Added required clip styles
14429         * RadioButton.cs: Added missing attributes
14430         * TextControl.cs: No longer draws selection if control does not
14431           have focus
14432         * TextBoxBase.cs:
14433           - Now draws simple rectangle around test area to make it obvious
14434             there's a control. This is a hack until we properly support borders
14435           - A few simple fixes to support selections better, now erases selected
14436             text when typing, and resets selection when using movement keys
14438 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
14440         * UpDownBase.cs: Added some new properties.
14442         * DomainUpDown.cs: Implement a lot to get my test working.
14444 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
14446         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
14448 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
14450         * OSXStructs (WindowAttributes): Fixed csc complaints
14452 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
14454         * XplayUIOSX.cs:
14455           OSXStructs.cs: Initial refactor to move enums and consts into
14456           OSXStructs and use them in the driver for greater readability.
14458 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
14460         * XplatUIOSX.cs: Initial support for Standard Cursors.
14461         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
14463 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
14465         * ComboBox.cs: ability to change style when the ctrl is already
14466         created, missing methods and events, bug fixes, signature fixes
14468 2005-01-19  Peter Bartok  <pbartok@novell.com>
14470         * Cursors.cs (ctor): Added ctor to fix signature
14472 2005-01-18  Peter Bartok  <pbartok@novell.com>
14474         * Button.cs: Implemented DoubleClick event
14475         * ButtonBase.cs:
14476           - Fixed keyboard handling to behave like MS, where the press of
14477             Spacebar is equivalent to a mousedown, and the key release is
14478             equivalent to mouseup. Now a spacebar push will give the same
14479             visual feedback like a mouse click.
14480           - Added missing attributes
14481           - Added ImeModeChanged event
14482           - Added support for generating DoubleClick event for derived classes
14483         * CheckBox.cs:
14484           - Implemented DoubleClick event
14485           - Added missing attributes
14486         * CommonDialog.cs: Added missing attribute
14487         * ContextMenu.cs: Added missing attributes
14488         * RadioButton.cs:
14489           - AutoChecked buttons do not allow to be unselected when clicked
14490             (otherwise we might end up with no selected buttons in a group)
14491           - Added missing attributes
14492           - Implemented DoubleClickEvent
14493         * ThreadExceptionDialog.cs: Enabled TextBox code
14495 2005-01-18  Peter Bartok  <pbartok@novell.com>
14497         * Form.cs: Removed debug output
14498         * Button.cs: Added support for DoubleClick method
14500 2005-01-18  Peter Bartok  <pbartok@novell.com>
14502         * Form.cs:
14503           - Added method to parent window that allows triggering size
14504             calculations when a menu is added/removed
14505           - set_Menu: Cleaned up mess from early days of Form and Control,
14506             now properly triggers a recalc when a menu is added/removed
14507           - Added case to select form itself as focused form if no child
14508             controls exist
14509           - Added PerformLayout call when showing dialog, to ensure properly
14510             placed controls
14511         * Control.cs:
14512           - Select(): Made internal so Form can access it
14513           - Focus(): Only call Xplat layer if required (avoids loop), and sets
14514             status
14515         * Application.cs (Run): Removed hack and calls PerformLayout instead
14516           to trigger calculation when Form becomes visible
14518 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
14520         * ComboBox.cs: fixes for ownerdraw
14522 2005-01-18  Peter Bartok  <pbartok@novell.com>
14524         * TextControl.cs:
14525           - Sentinel is no longer static, each Document gets it's own, this
14526             avoids locking or alternatively overwrite problems when more
14527             than one text control is used simultaneously.
14528           - Switched to use Hilight and HilightText brushes for text selection
14530         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
14532 2005-01-18  Peter Bartok  <pbartok@novell.com>
14534         * Control.cs:
14535           - Hooked up the following events:
14536                 o ControlAdded
14537                 o ControlRemoved
14538                 o HandleDestroyed
14539                 o ImeModeChanged
14540                 o ParentChanged
14541                 o TabStopChanged
14542                 o Invalidated
14543                 o SystemColorsChanged
14544                 o ParentFontChanged
14545                 o Move
14546           - Removed debug output
14547           - Added a call to the current theme's ResetDefaults when a color change
14548             is detected
14549         * Form.cs: Now setting the proper ImeMode
14550         * Theme.cs: Defined a method to force recreation of cached resources
14551           and rereading of system defaults (ResetDefaults())
14552         * ThemeWin32Classic.cs: Added ResetDefaults() stub
14554 2005-01-17  Peter Bartok  <pbartok@novell.com>
14556         * Control.cs: Added missing attributes
14558 2005-01-17  Jackson Harper  <jackson@ximian.com>
14560         * TreeNode.cs: Implement editing. Add missing properties selected
14561         and visible.
14562         * TreeView.cs: Implement node editing. Also some fixes to use
14563         Invalidate (invalid area) instead of Refresh when selecting.
14565 2005-01-17  Peter Bartok  <pbartok@novell.com>
14567         * Control.cs:
14568           - Implemented InvokeGotFocus() method
14569           - Implemented InvokeLostFocus() method
14570           - Implemented InvokePaint() method
14571           - Implemented InvokePaintBackground() method
14572           - Implemented InvokeClick() method
14573           - Implemented FindForm() method
14574           - Implemented RectangleToClient() method
14575           - Implemented ClientToRectangle() method
14576           - Implemented ResetBackColor() method
14577           - Implemented ResetCursor() method
14578           - Implemented ResetFont() method
14579           - Implemented ResteForeColor() method
14580           - Implemented ResetImeMode() method
14581           - Implemented ResetLeftToRight() method
14582           - Implemented ResetText() method
14583           - Implemented Scale() methods
14584           - Implemented ScaleCore() method
14585           - Implemented Update() method
14586           - Removed unused variables
14587           - Stubbed AccessibilityNotifyClients and
14588             ControlAccessibleObject.NotifyClients() methods (dunno what to do
14589             with those yet)
14590           - Now setting proper default for RightToLeft property
14591           - Fixed bug in SetClientSizeCore that would cause windows to get
14592             really big
14593           - Now sending Click/DoubleClick events
14594           - Now selecting controls when left mouse button is clicked on
14595             selectable control
14596         * AccessibleEvents.cs: Added
14597         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
14598         * XplatUIOSX.cs: Stubbed UpdateWindow() method
14599         * XplatUIWin32.cs: Implemented UpdateWindow() method
14600         * XplatUIX11.cs: Implemented UpdateWindow() method
14601         * Form.cs: Removed stray semicolon causing CS0162 warning
14602         * ThemeWin32Classic.cs: Fixed unused variable warnings
14603         * ScrollableControl.cs: Now calls base method for ScaleCore
14604         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
14605           style to avoid interference with internal click handler (which is
14606           different than standard Control click handling)
14607         * RadioButton.cs:
14608           - Now unchecks all sibling radio buttons when control is
14609             selected (Fixes #68756)
14610           - Removed internal tabstop variable, using the one inherited from
14611             Control
14613 2005-01-17  Jackson Harper  <jackson@ximian.com>
14615         * NavigateEventArgs.cs: Fix base type.
14616         * LinkLabel.cs: Sig fix
14617         
14618 2005-01-17  Jackson Harper  <jackson@ximian.com>
14620         * TreeView.cs: Only invalidate the effected nodes bounds when
14621         selecting nodes.
14623 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
14625         * XplatUIWin32.cs: fixes Win32 marshaling
14626         * XplatUIX11.cs: fixes method signature
14628 2005-01-17  Peter Bartok  <pbartok@novell.com>
14630         * XplatUIX11.cs: Clean up resources when we no longer need them
14632 2005-01-17  Peter Bartok  <pbartok@novell.com>
14634         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
14635           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
14636           and DestroyCursor() methods.
14637         * Cursor.cs: Partially implemented, now supports standard cursors;
14638           still contains some debug code
14639         * Cursors.cs: Implemented class
14640         * Control.cs:
14641           - WndProc(): Added handling of WM_SETCURSOR message, setting the
14642             appropriate cursor
14643           - Implemented Cursor property
14644           - Replaced break; with return; more straightforwar and possibly
14645             faster
14646           - Now properly setting the result for WM_HELP
14647         * X11Structs.cs: Added CursorFontShape enum
14648         * XplatUIStructs.cs:
14649           - Added StdCursor enum (to support DefineStdCursor() method)
14650           - Added HitTest enum (to support sending WM_SETCURSOR message)
14651         * XplatUIX11.cs:
14652           - Now sends the WM_SETCURSOR message
14653           - Implemented new cursor methods
14654         * XplatUIOSX.cs: Stubbed new cursor methods
14655         * XplatUIWin32.cs:
14656           - Implemented new cursor methods
14657           - Added GetSystemMetrics function and associated enumeration
14659 2005-01-15  Peter Bartok  <pbartok@novell.com>
14661         * Control.cs:
14662           - WndProc(): Now handles EnableNotifyMessage
14663           - SelectNextControl(): Fixed bug where if no child or sibling
14664             controls exist we looped endlessly
14666 2005-01-14  Jackson Harper  <jackson@ximian.com>
14668         * TreeView.cs: Recalculate the tab pages when a new one is added
14669         so that the proper bounding rects are created.
14671 2005-01-14  Jackson Harper  <jackson@ximian.com>
14673         * TreeView.cs: Draw a gray box instead of a grip in the lower
14674         right hand corner when there are both horizontal and vertical
14675         scroll bars.
14677 2005-01-14  Jackson Harper  <jackson@ximian.com>
14679         * Control.cs: When erasing backgrounds use FromHwnd instead of
14680         FromHdc when there is a NULL wparam. This occurs on the X driver.
14681         * XplatUIX11.cs: Set the wparam to NULL.
14683 2005-01-13  Jackson Harper  <jackson@ximian.com>
14685         * PictureBox.cs: Implement missing methods (except ToString, need
14686         to test that on windows) and events. When visibility is changed we
14687         need to redraw the image because the buffers are killed. When size
14688         is changed refresh if the sizemode needs it.
14690 2005-01-13  Peter Bartok  <pbartok@novell.com>
14692         * Control.cs (SelectNextControl): Was using wrong method to select
14693           a control
14695 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
14697         * ComboBox.cs: fixes dropstyle
14699 2005-01-13  Peter Bartok  <pbartok@novell.com>
14701         * Form.cs:
14702           - Implemented Select() override
14703           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
14704           - Now sets keyboard focus on startup
14705         * Control.cs (SelectNextControl): Now properly handles directed=true
14706         * TextBoxBase.cs:
14707           - WndProc: Now passes tab key on to base if AcceptTabChar=false
14708           - Added (really bad) focus rectangle (mostly for testing)
14709         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
14710           to enforce redraw on focus changes
14711         * ContainerControl.cs:
14712           - Fixed detection of Shift-Tab key presses
14713           - Fixed traversal with arrow keys
14714         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
14715           gonna keep this or if it's complete yet
14716         
14717 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
14719         * ComboBox.cs: missing properties, fixes
14721 2005-01-13  Peter Bartok  <pbartok@novell.com>
14723         * Panel.cs (ctor): Setting Selectable window style to off
14724         * Splitter.cs (ctor): Setting Selectable window style to off
14725         * GroupBox.cs (ctor): Setting Selectable window style to off
14726         * Label.cs (ctor): Setting Selectable window style to off
14728 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
14730         * UpDownBase.cs (InitTimer): If the timer has been already
14731         created, enable it.
14733         Use a TextBox instead of a Label.
14735 2005-01-12  Jackson Harper  <jackson@ximian.com>
14737         * TreeView.cs: Refresh the tree after sorting the nodes. Always
14738         draw the connecting node lines (when ShowLines is true).
14739         * TreeNode.cs: The nodes index can now be updated. This is used
14740         when a node collection is sorted.
14741         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
14742         insert or an existing unsorted node collection can be sorted.
14743         
14744 2005-01-12  Peter Bartok  <pbartok@novell.com>
14746         * ContainerControl.cs: Implemented ProcessDialogKeys()
14748 2005-01-12  Peter Bartok  <pbartok@novell.com>
14750         * Control.cs:
14751           - Implemented SelectNextControl() method
14752           - Several focus related bug fixes
14753           - Fixed Docking calculations to match MS documentation and
14754             behaviour
14756 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
14758         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
14759         bug fixes
14761 2005-01-12  Peter Bartok  <pbartok@novell.com>
14763         * Control.cs:
14764           - Fixed broken Contains() method
14765           - Implemented GetNextControl() method. Finally. This is the pre-
14766             requisite for focus handling.
14768 2005-01-12  Peter Bartok  <pbartok@novell.com>
14770         * OSXStrucs.cs: Added
14772 2005-01-12  Peter Bartok  <pbartok@novell.com>
14774         * XplatUIWin32.cs:
14775           - Removed PeekMessageFlags
14776           - Implemented SetWindowStyle() method
14777         * XplatUIStructs.cs: Added PeekMessageFlags
14778         * X11Structs: Added missing border_width field to XWindowChanges struct
14779         * XplatUIX11.cs:
14780           - PeekMessage: Now throws exception if flags which are not yet
14781             supported are passed
14782           - Implemented SetWindowStyle() method
14783           - Fixed SetZOrder to handle AfterHwnd properly
14784         * XplatUI.cs: Added SetWindowStyle() method
14785         * XplatUIDriver.cs: Added SetWindowStyle() abstract
14786         * Control.cs:
14787           - Implemented UpdateStyles() method
14788           - Implemented UpdateZOrder() method
14789         * XplatUIOSX.cs: Added SetWindowStyle() stub
14791 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
14793         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
14794         button mouse).
14797 2005-01-11  Jackson Harper  <jackson@ximian.com>
14799         * TreeView.cs: Still need to draw lines to siblings even if out of
14800         the current node is out of the clip.
14802 2005-01-11  Jackson Harper  <jackson@ximian.com>
14804         * TreeView.cs: When setting the hbar/vbar/grip position use
14805         SetBounds so that perform layout is only called once. Also suspend
14806         and resume layout so layout is only done once for all controls.
14807         - Removed some debug fluff
14808         * SizeGrip.cs: Call base implmentation in overriding methods.
14809         - When visibility is changed the drawing buffers are killed so we
14810         need to redraw.
14812 2005-01-11  Jackson Harper  <jackson@ximian.com>
14814         * TreeView.cs: Calculate the open node count while drawing. This
14815         saves us an entire tree traversal for every paint operation. Use
14816         a member var for the open node count so less vars are passed around.
14818 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
14820         * MonthCalendar.cs:
14821         - fixed selection to use mousemove, not mouse polling on timer
14822         * ThemeWin32Classic.cs
14823         - removed redundant unused variable "no_more_content"
14824         
14825 2005-01-11  Peter Bartok  <pbartok@novell.com>
14827         * XplatUIX11.cs (DoEvents): Needs to return when no more events
14828           are pending, so it now calls PeekMessage instead of GetMessage;
14829           implemented a incomplete version of PeekMessage
14830         
14831 2005-01-11  Peter Bartok  <pbartok@novell.com>
14833         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
14834           I18n issues
14835         * TextBoxBase.cs: Added sending of TextChanged event
14837 2005-01-10  Jackson Harper  <jackson@ximian.com>
14839         * TreeView.cs: Try not to draw outside the clipping rectangle on
14840         each node element.
14842 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
14844         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
14846 2005-01-10  Jackson Harper  <jackson@ximian.com>
14848         * TreeView.cs:
14849         - Implement fast scrolling. Now only the newly
14850         exposed nodes are drawn and the old image is moved using the
14851         XplatUI::ScrollWindow method.
14852         - Factor in height of nodes when calculating whether or not the
14853         node is in the clipping rect.
14855 2005-01-10  Jackson Harper  <jackson@ximian.com>
14857         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
14859 2005-01-10  Peter Bartok  <pbartok@novell.com>
14861         * Application.cs: Added temporary hack to resolve all our resize
14862           required issues on startup. This will get fixed properly at
14863           some point in the future
14865 2005-01-10  Jackson Harper  <jackson@ximian.com>
14867         * SizeGrip.cs: New internal class that is used as a sizing
14868         grip control...hence the name.
14870 2005-01-10  Peter Bartok  <pbartok@novell.com>
14872         * Control.cs: Implemented proper TabIndex handling, now assigning
14873           a tabindex when a control is added to a container
14874         * GroupBox.cs (ctor): Now sets the Container style bit, required
14875           for Control.GetNextControl()
14877 2005-01-09  Jackson Harper  <jackson@ximian.com>
14879         * TextBoxBase.cs: Clear window when scrolling (fixes build).
14881 2005-01-09  Peter Bartok <pbartok@novell.com>
14883         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
14884           XplatUIX11.cs: Added ability to control ScrollWindow expose and
14885           an overload for ScrollWindow to allow only scrolling a rectangle
14887 2005-01-09  Peter Bartok <pbartok@novell.com>
14889         * Form.cs:
14890           - Implemented SetDesktopBounds method
14891           - Implemented SetDesktopLocation method
14893 2005-01-08  Jackson Harper  <jackson@ximian.com>
14895         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
14896         the node count has changed, this removes to VScroll::Refresh calls
14897         when drawing.
14899 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
14901         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
14903 2005-01-07  Jackson Harper  <jackson@ximian.com>
14905         * TreeNode.cs: Just update the single node when it is
14906         checked. Don't refresh after toggling, the Expand/Collapse already
14907         handles this.
14908         * TreeView.cs: Respect clipping a little more when drawing. Try
14909         not to redraw things that don't need to be redrawn. Just hide the
14910         scrollbars when they are no longer needed instead of removing
14911         them, so they don't have to be created again and again.
14912         
14913 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
14915         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
14916         coordinates to window space to place the caret properly, FIXED.
14917         Implement GetWindowState & SetWindowState
14919 2005-01-06  Peter Bartok <pbartok@novell.com>
14921         * Form.cs:
14922           - Implemented ClientSize property
14923           - Implemented DesktopBounds property
14924           - Implemented DesktopLocation property
14925           - Implemented IsRestrictedWindow property
14926           - Implemented Size property
14927           - Implemented TopLevel property
14928           - Implemented FormWindowState property
14929         * Control.cs:
14930           - Implemented GetTopLevel() method
14931           - Implemented SetTopLevel() method
14932         * X11Structs.cs (Atom):
14933           - Added AnyPropertyType definition
14934           - Added MapState definiton and updated XWindowAttribute struct
14935         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
14936         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
14937         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
14938         * XplatUIWin32.cs:
14939           - Implemented GetWindowState() and SetWindowState() methods
14940           - Fixed Win32GetWindowLong return type
14941         * XplatUIX11.cs:
14942           - Introduced central function for sending NET_WM messages
14943           - Implemented GetWindowState() and SetWindowState() methods
14944         * TextBoxBase.cs (set_Lines):
14945           - Now uses Foreground color for text added via Text property (Duh!)
14946           - Added code to remember programmatically requested size (fixes
14947             behaviour when Multiline is set after Size)
14948           - Added AutoSize logic
14950 2005-01-06  Jackson Harper  <jackson@ximian.com>
14952         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
14954 2005-01-06  Jackson Harper  <jackson@ximian.com>
14956         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
14957         set to less then 0.
14959 2005-01-06  Jackson Harper  <jackson@ximian.com>
14961         * ScrollableControl.cs: Lazy init the scrollbars.
14962         
14963 2005-01-06  Jackson Harper  <jackson@ximian.com>
14965         * Theme.cs: Speed up getting pens and solid brushes, by using
14966         their ARGB as a hash instead of tostring and not calling Contains.
14968 2005-01-06  Peter Bartok <pbartok@novell.com>
14970         * Form.cs:
14971           - Implemented OnActivated and OnDeactivate event trigger
14972           - Implemented Activate() method
14973           - Fixed ShowDialog() to activate the form that was active before
14974             the dialog was shown
14975         * XplatUIX11.cs:
14976           - Added global active_window var that tracks the currently active
14977             X11 window
14978           - Now always grabs Property changes from the root window to always
14979             catch changes on the active window property
14980           - Added code to PropertyNotify handler to send Active/Inactive
14981             messages when state changes. This puts X11 and Win32 en par on
14982             WM_ACTIVATE notifications (except for double notifications when
14983             the user clicks away from our modal window to another one of our
14984             windows)
14986 2005-01-05  Jackson Harper  <jackson@ximian.com>
14988         * ImageList.cs: Implment ctor
14990 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
14992         * XplatUIOSX.cs: Implement Activate/SetTopmost
14994 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
14996         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
14998 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
15000         * XplatUIOSX.cs: Implement GetActive/SetFocus.
15002 2005-01-05  Peter Bartok <pbartok@novell.com>
15004         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
15005           XplatUIOSX.cs: Added GetActive method to return the currently
15006           active window for the application (or null, if none is active)
15007         * Form.cs:
15008           - Implemented ActiveForm
15009           - Commented out owner assignment for modal dialogs (causes problems
15010             on Win32, since the owner will be disabled)
15011           - Reworked some Active/Focus handling (still incomplete)
15012         * CommonDialog.cs: Commented out owner assignment for modal dialogs
15013           (causes problems on Win32, since the owner will be disabled)
15014         * IWin32Window: Added ComVisible attribute
15016 2005-01-05  Peter Bartok <pbartok@novell.com>
15018         * ToolTip.cs (WndProc): Enable setting focus now that we have the
15019           required XplatUI functions.
15021 2005-01-05  Peter Bartok <pbartok@novell.com>
15023         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
15024           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
15025           to implement focus and activation handling; still incomplete and
15026           with debug output
15028 2005-01-04  Peter Bartok <pbartok@novell.com>
15030         * TextBoxBase.cs: Changed access level for Document property to
15031           match switch to internal for TextControl
15033 2005-01-04  Peter Bartok <pbartok@novell.com>
15035         * AccessibleObject: Added ComVisible attribute
15037 2005-01-04  Jackson Harper  <jackson@ximian.com>
15039         * X11Keyboard.cs: Remove unneeded var.
15041 2005-01-04  Jackson Harper  <jackson@ximian.com>
15043         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
15044         but PAINT.
15045         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
15046         ClientMessage. This makes apps exit cleanly (more often).
15047         
15048 2005-01-04  Jackson Harper  <jackson@ximian.com>
15050         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
15051         handling focus, return correct colors and fonts,
15052         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
15053         handle selection, horizontal scrolling, and mouse interaction.
15055 2005-01-04  Peter Bartok <pbartok@novell.com>
15057         * ICommandExecutor.cs: Added
15058         * IDataGridColumnStyleEditingNotificationService.cs: Added
15059         * IFeatureSupport.cs: Added
15060         * IFileReaderService.cs: Added
15061         * IDataObject.cs: Added ComVisible attribute
15062         * AmbientProperties.cs: Added
15063         * BaseCollection.cs: Added missing attributes
15064         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
15065         * BaseCollection.cs: Added missing attributes
15066         * Binding.cs: Added TypeConverter attribute
15067         * BindingContext.cs: Added DefaultEvent attribute
15068         * BindingsCollection.cs: Added DefaultEvent attribute
15069         * Button.cs: Added DefaultValue attribute
15070         * DragEventArgs.cs: Added ComVisible attribute
15071         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
15072         * KeyEventArgs.cs: Added ComVisible attribute
15073         * KeyPressEventArgs.cs: Added ComVisible attribute
15074         * MouseEventArgs.cs: Added ComVisible attribute
15075         * NavigateEventArgs.cs: Added
15076         * NavigateEventHandler.cs: Added
15077         * FeatureSupport.cs: Added
15078         * OSFeature.cs: Added
15079         * Theme.cs: Added abstract Version property to support OSFeature
15080         * ThemeWin32Classic.cs: Added Version property to
15081           support OSFeature.Themes
15082         * ProgressBar.cs: Removed OnPaintBackground override, not required since
15083           the proper styles to avoid background drawing are set, also doesn't
15084           match MS signature
15085         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
15086         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
15087         * ScrollEventArgs.cs: Added ComVisible attribute
15088         * SplitterEventArgs.cs: Added ComVisible attribute
15089         * AccessibleSelection.cs: Added Flags attribute
15090         * Appearance.cs: Added ComVisible attribute
15091         * Border3DSide.cs: Added ComVisible attribute
15092         * Border3DStyle.cs: Added ComVisible attribute
15093         * BorderStyle.cs: Added ComVisible attribute
15094         * DragAction.cs: Added ComVisible attribute
15095         * ErrorBlinkStyle.cs: Added
15096         * ScrollEventType.cs: Added ComVisible attribute
15097         * AnchorStyles.cs: Added Editor attribute
15098         * DockStyle.cs: Added Editor attribute
15099         * HorizontalAlignment.cs: Added ComVisible attribute
15100         * HelpEventArgs.cs: Added ComVisible attribute
15101         * PaintEventArgs.cs: Added IDisposable
15103 2005-01-04  Peter Bartok <pbartok@novell.com>
15105         * TextControl.cs: Switched Line, LineTag and Document classes to
15106           internal
15108 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
15110         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
15111         Simple mode, fixes, IntegralHeight, etc.
15113 2005-01-04  Peter Bartok <pbartok@novell.com>
15115         * TextBoxBase.cs: Using proper font variable now
15117 2005-01-04  Peter Bartok <pbartok@novell.com>
15119         * Form.cs (ShowDialog): Set parent to owner, if provided
15120         * GroupBox.cs: Removed unused vars
15121         * TextControl.cs:
15122           - Added GetHashCode() for Document and LineTag classes
15123           - Removed unused variables
15124           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
15125             to allow translation between continuous char position and line/pos
15126         * CheckBox.cs: Removed vars that are provided by base class
15127         * RadioButton.cs: Removed vars that are provided by base class, added
15128           new keyword where required
15129         * LinkLabel.cs: Added new keyword where required
15130         * Control.cs (WndProc): Removed unused variable
15131         * TextBoxBase.cs:
15132           - Finished SelectionLength property
15133           - Implemented SelectionStart property
15134           - Implemented Text property
15135           - Removed unused vars
15136         * MessageBox.cs: Added new keyword where required
15137         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
15138           WndProc signature
15139         * MenuAPI.cs: Added new keyword where required
15140         * ButtonBase.cs: Removed vars that are provided by base class, added
15141           new keyword where required
15142         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
15143           argument to double, to allow compiling with csc 2.0 (Atsushi ran
15144           into this)
15145         * Application.cs (Run): Now triggers the ThreadExit event
15146         * CommonDialog.cs: Added new keyword where required; now properly sets
15147           parent (owner) for dialog
15148         * XplatUIX11.cs: Commented out unused vars
15149         * StatusBar.cs: Fixed signature for Text property
15150         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
15152 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
15154         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
15155         TrackBar.cs, MonthCalendar.cs: remove unused vars
15157 2005-01-03  Jackson Harper  <jackson@ximian.com>
15159         * ThemeWin32Classic.cs:
15160         * X11Keyboard.cs: Remove unused vars.
15162 2005-01-03  Peter Bartok  <pbartok@novell.com>
15164         * TextBox.cs:
15165           - set_Text: Tied into TextControl
15166           - set_TextAlignment: Tied into TextControl
15167         * TextControl.cs:
15168           - Added alignment properties and implemented alignment handling
15169             and drawing (still has a bug, not generating proper expose events)
15170           - Added new Line() constructor to allow passing the line alignment
15171           - Fixed selection setting, properly handling end<start now
15172           - Added aligment considerations to RecalculateDocument()
15173         * TextBoxBase.cs:
15174           - Now properly enforces control height for single line controls
15175           - Added support for CharacterCasing
15176           - Added IsInputKey override
15177           - Fixed Keys.Enter logic
15178           - Added SetBoundsCore override
15179           - Fixed mouse selection handling
15181 2005-01-03  Jackson Harper  <jackson@ximian.com>
15183         * TreeView.cs:
15184           - Collapse and uncheck all nodes when CheckBoxes is disabled.
15185           - Checkboxes are always aligned to the bottom of the node,
15186           regardless of item height.
15187           - Use the node bounds to draw the text so we can center it when
15188           the item height is greater then the font height.
15189           - Node::Bounds are only the text part of the node.
15190         * TreeNode.cs: New method to combine collapsing and unchecking all
15191           nodes recursively.
15193 2005-01-02  Jackson Harper  <jackson@ximian.com>
15195         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
15196         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
15197         tree when a check is changed. TODO: Only refresh the checked node.
15199 2004-12-30  Jackson Harper  <jackson@ximian.com>
15201         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
15202         * TreeNode.cs: When collapsing make sure to never collapse the
15203         root node.
15205 2004-12-29  Jackson Harper  <jackson@ximian.com>
15207         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
15208         
15209 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
15211         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
15213 2004-12-28  Peter Bartok  <pbartok@novell.com>
15215         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
15216           not yet assigned
15218 2004-12-28  Peter Bartok  <pbartok@novell.com>
15220         * Control.cs (WndProc): Added WM_HELP handler, now generates
15221           HelpRequested event
15222         * Form.cs: Added HelpButton property and required support code
15223         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
15225 2004-12-28  Peter Bartok  <pbartok@novell.com>
15227         * CommonDialog.cs:
15228           - Made DialogForm.owner variable internal
15229           - Added check to ensure owner form is set before setting
15230             owner properties in CreateParams
15232 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
15234         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
15235           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
15236           GetCursorPos.  Fix major visibility issues.  Rework the windowing
15237           system to support borderless/titleless windows (implements menus).
15238           Fix GetWindowPos.  Implement initial background color support for
15239           views.
15241 2004-12-28  Peter Bartok  <pbartok@novell.com>
15243         * Form.cs (get_CreateParams): Make sure we have an owner before using
15244           the owner variable. Implement proper default if no owner exists
15246 2004-12-28  Peter Bartok  <pbartok@novell.com>
15248         * In preparation for making Managed.Windows.Forms the default build target
15249           for System.Windows.Forms, the following stubbed files were added.
15250           Dialogs are currently being implemented by contributors and are only
15251           short-term place holders.
15252         * ColorDialog.cs: Initial check-in (minmal stub)
15253         * DataGrid.cs: Initial check-in (minimal stub)
15254         * DataGridLineStyle.cs: Initial check-in (minimal stub)
15255         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
15256         * DataGridTableStyle.cs: Initial check-in (minimal stub)
15257         * FontDialog.cs: Initial check-in (minimal stub)
15258         * FileDialog.cs: Initial check-in (minimal stub)
15259         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
15260         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
15261         * OpenFileDialog: Initial check-in (minimal stub)
15262         * IComponentEditorPageSite.cs: Initial check-in
15263         * Splitter.cs: Initial check-in (for Jackson)
15264         * SplitterEventArgs.cs: Initial check-in (for Jackson)
15265         * SplitterEventHandler.cs: Initial check-in (for Jackson)
15266         * TextBox.cs: Initial check-in; still needs some wiring to
15267           TextControl backend
15268         * Form.cs: Implemented ControlBox property
15269         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
15270         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
15271         * TextControl.cs: Added selection functionality; added todo header
15272         * TextBoxBase.cs:
15273           - Implemented Lines property
15274           - Implemented TextHeight property
15275           - Implemented SelectedText property
15276           - Implemented SelectionLength property
15277           - Implemented SelectAll method
15278           - Implemented ToString method
15279           - Removed and cleaned up some debug code
15280           - Implemented (still buggy) mouse text selection
15282 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
15284         * ComboBox.cs: Complete DropDownList implementation, fixes.
15286 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
15288         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
15289         * ComboBoxStyle.cs: ComboBoxStyle enum
15290         * ComboBox.cs: Initial work on ComboBox control
15292 2004-12-21  Peter Bartok  <pbartok@novell.com>
15294         * Control.cs (ctor, CreateParams): Moved setting of is_visible
15295           forward so that anything that creates a window gets the default,
15296           also no longer uses Visible property in CreateParams to avoid
15297           walking up the parent chain and possibly get the wrong visible
15298           status. Fixed IsVisible to no longer walk up to the parent.
15300 2004-12-21  Peter Bartok  <pbartok@novell.com>
15302         * Form.cs (ShowDialog): Unset modality for the proper window
15304 2004-12-20  Peter Bartok  <pbartok@novell.com>
15306         * CommonDialog.cs: Initial check-in
15308 2004-12-20  Peter Bartok  <pbartok@novell.com>
15310         * Control.cs (Visible): Now uses the parent window instead of the
15311           client area window for the property
15313         * Form.cs
15314           - ShowDialog(): Now uses the proper window for modality
15315           - The default visibility state for the form parent is now false. This
15316             will prevent the user from seeing all the changes to the form and
15317             its controls before the application hits Application.Run()
15318           - Removed some stale commented out code
15320         * NativeWindow.cs:
15321           - Added FindWindow() method to have a method to check for existence
15322             of a window handle
15323           - Added ability to override default exception handling (for example
15324             when debugging with VS.Net; to do this the ExternalExceptionHandler
15325             define must be set
15326           - Removed some useless debug output
15328         * XplatUIX11.cs:
15329           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
15330             not working as expected
15331           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
15332             property to allow switching back to the modal window if focus is
15333             given to another one of our windows (Application Modal)
15334           - Now only sets override_redirect if we create a window
15335             without WS_CAPTION
15336           - Moved EventMask selection before mapping of newly created window
15337             so we can catch the map event as well
15338           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
15339           - Added various Atom related DllImports
15340           - Implemented Exit() method
15341           - .ctor() : No longer shows window if WS_VISIBLE is not defined
15342             in the CreateParams
15344         * MessageBox.cs: Now properly deals with the FormParent window by
15345           providing an override the FormParent CreateParams property to
15346           set as POPUP instead of OVERLAPPED window.
15348 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
15350         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
15351         Minor code cleanup.
15353 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
15354         
15355         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
15357 2004-12-18  Peter Bartok  <pbartok@novell.com>
15359         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
15360           implementing SetModal() method
15362 2004-12-18  Peter Bartok  <pbartok@novell.com>
15364         * X11Structs.cs (XGCValues): Fixed type of function element
15365         * XplatUI.cs: Added ScrollWindow() method
15366         * XplatUIDriver.cs: Added ScrollWindow() abstract
15367         * XplatUIWin32.cs: Implemented ScrollWindow() method
15368         * XplatUIX11.cs: Implemented ScrollWindow() method
15369         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
15371 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
15373         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
15374         Some more keyboard support (INCOMPLETE)
15376 2004-12-17  Peter Bartok  <pbartok@novell.com>
15378         * TextControl.cs:
15379         - Added color attribute to line tags.
15380         - Added color argument to all functions dealing with tags
15381         - Added color argument support to various functions
15382         - Fixed miss-calculation of baseline/shift in certain circumstances
15384         * TextBoxBase.cs: Added new color option to test code
15386 2004-12-17  Jackson Harper  <jackson@ximian.com>
15388         * TreeNode.cs:
15389         * MonthCalendar.cs: Signature fixes
15391 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
15393         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
15394         keyboard event moved it.  Create a new graphics context for each paint resolves this
15396 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
15398         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
15399         Make caret exist and go blink blink.  Initial keyboard support.
15400         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
15401         works.
15403 2004-12-17  Jackson Harper  <jackson@ximian.com>
15405         * XplatUIStructs.cs: Updated set of virtual keycodes.
15406         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
15408 2004-12-17  Jackson Harper  <jackson@ximian.com>
15410         * XplatUIX11.cs: Prune old keyboard code.
15412 2004-12-17  Jackson Harper  <jackson@ximian.com>
15414         * XplatUIX11.cs: When generating mouse wparams get the modifier
15415         keys from the ModifierKeys property.
15417 2004-12-17  Jackson Harper  <jackson@ximian.com>
15419         * X11Keyboard.cs: Send up/down input when generating
15420         messages. Remove some unused vars.
15422 2004-12-17  Jackson Harper  <jackson@ximian.com>
15424         * TabControl.cs:
15425         * TreeView.cs: get rid of warnings.
15427 2004-12-17  Jackson Harper  <jackson@ximian.com>
15429         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
15431 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
15433         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
15434           CheckedListBox.cs: Implementation
15436 2004-12-17  Peter Bartok  <pbartok@novell.com>
15438         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
15440 2004-12-16  Peter Bartok  <pbartok@novell.com>
15442         * TextControl.cs:
15443           - InsertCharAtCaret(): Fixed start pos fixup
15444           - CaretLine_get: No longer derives the line from the tag, the tag
15445             could be stale if lines in the document have been added or deleted
15446           - RebalanceAfterDelete(): Fixed bug in balancing code
15447           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
15448           - Line.Streamline(): Now can also elminate leading empty tags
15449           - DumpTree(): Added a few more tests and prevented exception on
15450             uninitialized data
15451           - Added Debug section for Combining lines
15452           - Delete(): Now copies all remaining properties of a line
15453           
15454         * TextBoxBase.cs:
15455           - Left mousebutton now sets the caret (and middle button still acts
15456             as formatting tester, which must go away soon)
15457           - Added Debug section for Deleting/Combining lines
15458           - Fixed calculations for UpdateView after Combining lines
15460 2004-12-16  Peter Bartok  <pbartok@novell.com>
15462         * TextControl.cs: Now properly aligns text on a baseline, using the
15463           new XplatUI.GetFontMetrics() method. Simplified several calculations
15464         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
15465           defined
15467 2004-12-16  Peter Bartok  <pbartok@novell.com>
15469         * XplatUI.cs: Added GetFontMetrics() method
15470         * XplatUIDriver.cs: Added GetFontMetrics() abstract
15471         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
15472           into libgdiplus, our private GetFontMetrics function
15473         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
15474         * XplatUIWin32.cs: Implemented GetFontMetrics() method
15476 2004-12-16  Jackson Harper  <jackson@ximain.com>
15478         * XplatUIStruct.cs: Add enum for dead keys
15479         * X11Keyboard.cs: Map and unmap dead keys.
15481 2004-12-16  Jackson Harper  <jackson@ximian.com>
15483         * X11Keyboard.cs: Detect and use the num lock mask.
15485 2004-12-16  Peter Bartok  <pbartok@novell.com>
15487         * Control.cs (CreateGraphics): Added check to make sure the
15488           handle of the window exists before calling Graphics.FromHwnd()
15490 2004-12-16  Peter Bartok  <pbartok@novell.com>
15492         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
15493           contains a lot of code that's not supposed to be there for the
15494           real thing, but required for developing/testing the textbox
15495           backend.
15497 2004-12-16  Peter Bartok  <pbartok@novell.com>
15499         * TextControl.cs:
15500         - Fixed Streamline method
15501         - Added FindTag method to Line
15502         - Added DumpTree method for debugging
15503         - Added DecrementLines() method for deleting lines
15504         - Fixed UpdateView to update the cursor to end-of-line on single-line
15505           updates
15506         - Added PositionCaret() method
15507         - Fixed MoveCaret(LineDown) to move into the last line, too
15508         - Added InsertChar overload
15509         - Fixed InsertChar tag offset calculations
15510         - Added DeleteChar() method
15511         - Added Combine() method for folding lines
15512         - Fixed Delete() method, no longer allocates wasted Line object and
15513           now copies all properties when swapping nodes
15514         - Delete() method now updates document line counter
15516 2004-12-15  Jackson Harper  <jackson@ximian.com>
15518         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
15519         * X11Keyboard.cs: Expose the currently selected modifier keys
15520         through a property.
15522 2004-12-15  Peter Bartok  <pbartok@novell.com>
15524         * TextControl.cs: Initial check-in. Still incomplete
15526 2004-12-15  Jackson Harper  <jackson@ximian.com>
15528         * TreeNode.cs:
15529         * TreeView.cs: Fix build on csc (second time today ;-))
15531 2004-12-15  Jackson Harper  <jackson@ximian.com>
15533         * TreeView.cs: Store the treenodes plus/minus box bounds when it
15534         is calculated and use this for click testing.
15535         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
15537 2004-12-15  Jackson Harper  <jackson@ximian.com>
15539         * TreeView.cs: Pass the nodes image index to the image list when
15540         drawing that image.
15542 2004-12-15  Jackson Harper  <jackson@ximian.com>
15544         * X11Keyboard.cs: Set messages hwnd.
15545         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
15546         post_message calls.
15548 2004-12-15  Jackson Harper  <jackson@ximian.com>
15550         * X11Keyboard.cs: Fix to compile with csc.
15551         
15552 2004-12-15  Jackson Harper  <jackson@ximian.com>
15554         * X11Structs.cs: Add key mask values
15555         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
15556         * X11Keyboard.cs: New file - Extrapolates and interpolates key
15557         down/up foo into WM_CHAR foo
15558         * KeyboardLayouts.cs: Common keyboard layouts
15559         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
15560         post messages into the main queue.
15562 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
15564         * Button.cs: implement ProcessMnemonic
15565         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
15566           brushes everytime
15567         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
15568         * ButtonBase.cs: Show HotkeyPrefix (not the &)
15570 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
15571         
15572         * MonthCalendar.cs: Implemented click-hold for next/previous month
15573           and date selection
15574           
15575 2004-12-11  Peter Bartok  <pbartok@novell.com>
15577         * X11Structs.cs:
15578           - Added XKeyboardState (moved from XplatUIX11.cs)
15579           - Added XCreateGC related enums and structures
15580           - Added GXFunction for XSetFunction
15582         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
15584         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
15585           CaretVisible() calls
15587         * ToolTip.cs: Added code to prevent stealing focus from app windows
15589         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
15590           DestroyCaret, SetCaretPos and CaretVisible)
15592         * XplatUIX11.cs:
15593           - Added implementation for caret functions
15594           - Moved hover variables into a struct, to make it a bit easier
15595             on the eyes and to debug
15596           - Removed XKeyboardState (moved to XplatUIX11.cs)
15597           - Moved Keyboard properties into the properties region
15599         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
15600           call to get a graphics context for our control
15602         * XplatUIOSX.cs: Added empty overrides for the new caret functions
15604         * TreeView.cs: Fixed bug. No matter what color was set it would always
15605           return SystemColors.Window
15607         * XplatUIWin32.cs: Implemented caret overrides
15609 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
15611         * ListBox.cs: fire events, implement missing methods and properties,
15612         sorting.
15614 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
15616         * MonthCalendar.cs: invalidation bug fixing
15617         * ThemeWin32Classic.cs: paint fixing
15619 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
15621         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
15622         prepare the CGContextRef there now.
15624 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
15626         * MonthCalendar.cs:
15627           - optimisationL only invalidate areas that have changed
15628         * ThemeWin32Classic.cs:
15629           - only paint parts that intersect with clip_area
15631 2004-12-09  Peter Bartok  <pbartok@novell.com>
15633         * Application.cs: Undid changes from r37004 which cause problems
15634         on X11
15636 2004-12-09  Ravindra  <rkumar@novell.com>
15638         * ToolBar.cs: Added support for displaying ContextMenu
15639         attached to a button on ToolBar.
15640         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
15641         property.
15643 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
15645         * Label.cs: autosize works in text change and removes unnecessary
15646         invalidate
15648 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
15650         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
15651         remove warnings
15653 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
15655         * XplatUIOSX.cs: Added mouse move/click/grab support
15656         Remove some debugging WriteLines not needed anymore.
15657         Add window resizing/positioning.
15658         Fix visibility on reparenting.
15660 2004-12-08  Peter Bartok  <pbartok@novell.com>
15662         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
15664 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
15666         * XplatUIOSX.cs: Initial checkin
15667         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
15669 2004-12-03  Ravindra <rkumar@novell.com>
15671         * ListView.cs: Added some keybindings and fixed scrolling.
15672         ScrollBars listen to ValueChanged event instead of Scroll
15673         Event. This would let us take care of all changes being
15674         done in the scrollbars' values programmatically or manually.
15675         * ListView.cs (CanMultiselect): Added a check for shift key.
15676         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
15677         * ListViewItem.cs (Clone): Fixed. We need to make a copy
15678         of ListViewSubItemCollection as well.
15680 2004-12-06  Peter Bartok <pbartok@novell.com>
15682         * Control.cs (Parent): Added check and exception to prevent
15683         circular parenting
15685 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
15687         * ListBox.cs: implemented clipping, selection single and multiple,
15688         bug fixing
15690 2004-12-03  Ravindra <rkumar@novell.com>
15692         * ListView.cs (ListView_KeyDown):
15693         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
15694         when CTRL key is pressed.
15695         * ListViewItem.cs (Selected): Fixed setting the property.
15697 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
15699         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
15701         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
15702         MinimizeBox, ShowInTaskbar, TopMost properties.
15704         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
15705         will be implemented).
15707 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
15709         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
15711         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
15712         tests.
15713         
15714         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
15715         
15716         * TreeView.cs: BackColor is Colors.Window.
15718 2004-12-01  Jackson Harper  <jackson@ximian.com>
15720         * TreeView.cs: When resizing the tree if the user is making it
15721         smaller we don't get expose events, so we need to handle adding
15722         the horizontal scrollbar in the size changed handler as well as
15723         the expose handler.
15725 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
15727         * DrawItemState.cs: fixes wrong enum values
15729 2004-12-01  Jackson Harper  <jackson@ximian.com>
15731         * TreeView.cs: Resize the hbar as well as the vbar on resize.
15733 2004-12-01  Jackson Harper  <jackson@ximian.com>
15735         * NodeLabelEditEventArgs.cs:
15736         * NodeLabelEditEventHandler.cs:
15737         * OpenTreeNodeEnumerator.cs:
15738         * TreeNode.cs:
15739         * TreeNodeCollection.cs:
15740         * TreeView.cs:
15741         * TreeViewAction.cs:
15742         * TreeViewCancelEventArgs.cs:
15743         * TreeViewCancelEventHandler.cs:
15744         * TreeViewEventArgs.cs:
15745         * TreeViewEventHandler.cs: Initial implementation.
15747 2004-12-01  Ravindra <rkumar@novell.com>
15749         * ListView.cs (CalculateListView): Fixed scrolling related
15750         calculations. Also, removed some debug statements from other
15751         places.
15752         * ListViewItem.cs: Changed access to 'selected' instance variable
15753         from private to internal.
15754         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
15756 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
15758         * ThemeWin32Classic.cs: remove cache of brush and pens for
15759         specific controls and use the global system, fixes scrollbutton
15760         bugs (for small sizes, disabled, etc)
15761         
15762         * ScrollBar.cs: does not show the thumb for very small controls
15763         (as MS) and allow smaller buttons that the regular size
15765 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
15767         * UpDownBase.cs: Add abstract methods for the interface.
15768         Add new virtual methods (need to be hooked up to TextEntry when it
15769         exists).
15770         Add override methods for most features.
15771         Computes the size, forces the height of the text entry.
15773         * NumericUpDown.cs: Put here the current testing code.
15775         * Set eol-style property on all files that do not have mixed line
15776         endings, to minimize the future problems.  There are still a few
15777         files with mixed endings, and someone should choose whether they
15778         want to move it or not.
15780 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
15782         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
15783         System.Colors
15784         
15785 2004-11-30  Ravindra <rkumar@novell.com>
15787         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
15788         drawing and replaced use of SystemColors by theme colors.
15789         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
15790         * ListView.cs (ListViewItemCollection.Add): Throw exception when
15791         same ListViewItem is being added more than once.
15793 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
15795         * MonthCalendar.cs:
15796           - ControlStyles love to make the control not flicker
15797           
15798 2004-11-30  Peter Bartok  <pbartok@novell.com>
15800         * CharacterCasing.cs: Added
15802 2004-11-29  Peter Bartok  <pbartok@novell.com>
15804         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
15805           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
15806           I am removing these files as they conflict with already completed
15807           work. While it is fantastic to get contributions to MWF, I
15808           respectfully ask that everyone please coordinate their contributions
15809           through mono-winforms-list or #mono-winforms at this time. We're
15810           explicitly avoiding stubbing and don't want controls that don't have
15811           their basic functionality implemented in svn. Please also see
15812           http://www.mono-project.com/contributing/winforms.html
15815 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
15817         * Application.cs (ModalRun): Don't hang after exit.
15819         * Theme.cs: New TreeViewDefaultSize property.
15821         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
15822         with less hardcoded SystemColors constant.
15823         Implemented TreeViewDefaultSize.
15825         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
15826         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
15829 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
15831         * MonthCalendar.cs:
15832           - Fix NextMonthDate and PrevMonthDate click moving calendar
15834 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
15836         * MonthCalendar.cs:
15837           - Fix usage of ScrollChange Property when scrolling months
15839 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
15841         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
15842          - Fixes menu destroying
15843          - Support adding and removing items on already created menus
15845 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
15847         * MonthCalendar.cs:
15848           - Re-worked all bolded dates handling to match win32
15849         * ThemeWin32Classic.cs:
15850           - Fixed rendering with bolded dates
15852 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
15854         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
15855         - Horizontal scroolbar
15856         - Multicolumn
15857         - Fixes
15860 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
15862         * MonthCalendar.cs:
15863           - Fix Usage of MaxSelectionCount from SelectionRange
15864           - Fixed Shift + Cursor Selection
15865           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
15866           - Fixed normal cursor selection to be compat with win32
15867           - Fixed Shift + Mouse Click selection
15869 2004-11-24  Peter Bartok <pbartok@novell.com>
15871         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
15872         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
15873         * XplatUIX11.cs:
15874           - CreatedKeyBoardMsg now updates keystate with Alt key
15875           - Added workaround for timer crash to CheckTimers, Jackson will
15876             develop a proper fix and check in later
15877           - Implemented DispatchMessage
15878           - Removed calling the native window proc from GetMessage (call
15879             now moved to DispatchMessage)
15881         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
15882           the keydata (Fixes bug #69831)
15884         * XplatUIWin32.cs:
15885           - (DispatchMessage): Switched to return IntPtr
15886           - Added DllImport for SetFocus
15888 2004-11-24  Ravindra <rkumar@novell.com>
15890         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
15891         background drawing.
15892         * ListViewItem.cs: Fixed various properties, calculations
15893         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
15894         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
15895         and some internal properties. Fixed MouseDown handler and Paint
15896         method.
15898 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
15900         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
15902 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
15904         * ContainerControl.cs: correct accidental check in of local changes
15906 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
15908         * ThemeWin32Classic.cs:
15909                 - Fixed Drawing Last month in grid (sometimes not showing)
15910         * MonthCalendar.cs:
15911                 - Fixed title width calculation bug (makeing title small)
15913 2004-11-23  Peter Bartok <pbartok@novell.com>
15915         * XplatUIX11.cs:
15916           - Added generation of WM_MOUSEHOVER event
15917           - Added missing assignment of async_method atom
15918           - Fixed WM_ERASEBKGND; now only redraws the exposed area
15920 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
15922         * ThemeWin32Classic.cs:
15923                 - Fixed Drawing of today circle when showtodaycircle not set
15924                 - fixed drawing of first and last month in the grid (gay dates)
15925         * MonthCalendar.cs:
15926                 - Fixed Drawing of today circle
15927                 - Fixed drawing of grady dates
15928                 - Fixed HitTest for today link when ShowToday set to false
15929                 - Fixed DefaultSize to obey ShowToday
15931 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
15933         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
15934         * System.Windows.Forms/Theme.cs
15935         * MonthCalendar.cs: added for MonthCalendar
15936         * SelectionRange.cs: added for MonthCalendar
15937         * Day.cs: added for MonthCalendar: added for MonthCalendar
15938         * DateRangeEventArgs.cs: added for MonthCalendar
15939         * DateRangeEventHandler.cs: added for MonthCalendar
15941 2004-11-22  Ravindra <rkumar@novell.com>
15943         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
15944         property.
15946 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
15948         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
15949         event handler.
15950         
15951         * NumericUpDown.cs: Added new implementation.
15952         * UpDownBase.cs: Added new implementation.
15954         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
15955         implementations.
15956         
15957         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
15958         implementations.
15960         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
15961         methods.
15963 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
15965         * Timer.cs  (Dispose): Should call the base dispose when
15966         overriding.
15968 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
15970         * ScrollBar.cs: updates thumb position when max, min or increment
15971         is changed
15973 2004-11-21  Ravindra <rkumar@novell.com>
15975         * ListView.cs: Implemented item selection, activation and
15976         column header style. Fixed properties to do a redraw, if
15977         required. Added support for MouseHover, DoubleClick, KeyDown
15978         and KeyUp event handling and some minor fixes.
15979         * ListViewItem.cs: Fixed constructor.
15980         * ThemeWin32Classic.cs: Improved drawing for ListView.
15982 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
15984         * ThemeWin32Classic.cs: initial listbox drawing code
15985         * DrawMode.cs: new enumerator
15986         * ListControl.cs: stubbed class
15987         * ListBox.cs: initial implementation
15988         * Theme.cs: new methods definitions
15989         * SelectionMode.cs: new enumerator
15991 2004-11-17  Peter Bartok  <pbartok@novell.com>
15993         * XplatUIWin32.cs: Added double-click events to the class style
15994         * Control.cs (WndProc):
15995           - Added handling of click-count to MouseDown/ MouseUp events.
15996           - Added handling of middle and right mouse buttons
15997           - Removed old debug code
15999 2004-11-17  Jackson Harper  <jackson@ximian.com>
16001         * XplatUIX11.cs: Use the new Mono.Unix namespace.
16003 2004-11-17  Ravindra <rkumar@novell.com>
16005         * ListView.cs: Added event handling for MouseMove/Up/Down.
16006         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
16007         * ThemeWin32Classic.cs: We need to clear the graphics context and
16008         draw column header in a proper state.
16011 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
16013         *  Menu.cs: fixes signature
16015 2004-11-16  Peter Bartok  <pbartok@novell.com>
16017         * XplatUIX11.cs (GetMessage): Implemented generation of
16018           double click mouse messages
16020 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
16022         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
16023         not by menu
16025 2004-11-11  Peter Bartok  <pbartok@novell.com>
16027         * HandleData.cs: Added Visible property
16028         * XplatUIX11.cs (IsVisible): Now uses Visible property from
16029           HandleData
16030         * XplatUIX11.cs: Removed old debug leftovers
16031         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
16032         * Control.cs (WndProc): Removed old debug leftovers,
16033           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
16034           needed WM_SIZE handling
16036 2004-11-11  Jackson Harper  <jackson@ximian.com>
16038         * OwnerDrawPropertyBag.cs:
16039         * TreeViewImageIndexConverter.cs: Initial implementation
16041 2004-11-10  Jackson Harper  <jackson@ximian.com>
16043         * ThemeWin32Classic.cs:
16044         * TabControl.cs: instead of moving tabs by the slider pos just
16045         start drawing at the tab that is offset by the slider. This way
16046         scrolling always moves by exactly one tab.
16048 2004-11-10  Jackson Harper  <jackson@ximian.com>
16050         * TabControl.cs: You can only scroll left when the slider has
16051         already ben moved right.
16052         
16053 2004-11-10  Jackson Harper  <jackson@ximian.com>
16055         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
16056         the clip area.
16057         
16058 2004-11-10  Jackson Harper  <jackson@ximian.com>
16060         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
16061         clip area.
16062         
16063 2004-11-09  Jackson Harper  <jackson@ximian.com>
16065         * TabControl.cs (CalcXPos): New helper method so we can determine
16066         the proper place to start drawing vertical tabs.
16067         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
16068         
16069 2004-11-09  Jackson Harper  <jackson@ximian.com>
16071         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
16072         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
16073         and Bottom, left and right are illegal values for this and
16074         multiline is enabled when the alignment is set to left or right.
16075         (DrawTab): Each alignment block should draw the text itself now
16076         because Left requires special love. Also add rendering for Left
16077         aligned tabs.
16078         
16079 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
16081         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
16082         does not destroy the windows, removes debugging messages
16084 2004-11-09  jba  <jba-mono@optusnet.com.au>
16086         * ThemeWin32Classic.cs
16087         (DrawButtonBase): Fix verticle text rect clipping in windows
16088         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
16089         rendering and incorrect text rect clipping
16090         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
16091         rendering and incorrect text rect clipping
16092         
16093 2004-11-08  Jackson Harper  <jackson@ximian.com>
16095         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
16096         bottom when they are bottom aligned so the bottoms of the tabs get
16097         displayed.
16098         * TabControl.cs (DropRow): Move rows up instead of down when the
16099         tab control is bottom aligned.
16101 2004-11-08 13:59  pbartok
16103         * XplatUIX11.cs:
16104           - Added handling for various window styles
16105           - Added handling for popup windows
16106           - Added SetTopmost handling
16108 2004-11-08 13:55  pbartok
16110         * XplatUIWin32.cs:
16111           - Added argument to SetTopmost method
16112           - Fixed broken ClientToScreen function
16114 2004-11-08 13:53  pbartok
16116         * XplatUIStructs.cs:
16117           - Added missing WS_EX styles
16119 2004-11-08 13:53  pbartok
16121         * XplatUI.cs, XplatUIDriver.cs:
16122           - Added argument to SetTopmost
16124 2004-11-08 13:52  pbartok
16126         * X11Structs.cs:
16127           - Added XSetWindowAttributes structure
16128           - Improved XWindowAttributes structure
16129           - Added SetWindowValuemask enum
16130           - Added window creation arguments enum
16131           - Added gravity enum
16132           - Added Motif hints structure
16133           - Added various Motif flags and enums
16134           - Added PropertyMode enum for property functions
16136 2004-11-08 13:50  pbartok
16138         * Form.cs:
16139           - Fixed arguments for updated SetTopmost method
16141 2004-11-08 13:49  pbartok
16143         * ToolTip.cs:
16144           - Fixed arguments for updated SetTopmost function
16145           - Fixed usage of PointToClient
16147 2004-11-08 13:44  pbartok
16149         * MenuAPI.cs:
16150           - Added Clipping of children and siblings
16152 2004-11-08 13:41  pbartok
16154         * MainMenu.cs:
16155           - Removed SetMenuBarWindow call. We do this in Form.cs
16157 2004-11-08 13:40  jackson
16159         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
16160           scrolling jimmi in the correct location with bottom aligned tabs
16162 2004-11-08 13:36  pbartok
16164         * ContainerControl.cs:
16165           - Implemented BindingContext
16166           - Implemented ParentForm
16168 2004-11-08 12:46  jackson
16170         * TabControl.cs: Put bottom rendered tabs in the right location
16172 2004-11-08 07:15  jordi
16174         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
16175           removes dead code
16177 2004-11-05 17:30  jackson
16179         * TabControl.cs: When selected tabs are expanded make sure they
16180           don't go beyond the edges of the tab control
16182 2004-11-05 14:57  jackson
16184         * TabControl.cs: Reset show_slider so if the control is resized to
16185           a size where it is no longer needed it's not displayed anymore
16187 2004-11-05 13:16  jackson
16189         * TabControl.cs: Make tab pages non visible when added to the
16190           control
16192 2004-11-05 12:42  jackson
16194         * TabControl.cs: Implement SizeMode.FillToRight
16196 2004-11-05 12:16  jackson
16198         * Control.cs: Do not call CreateHandle if the handle is already
16199           created
16201 2004-11-05 11:46  jackson
16203         * TabControl.cs: Remove superflous call to CalcTabRows
16205 2004-11-05 09:07  jackson
16207         * XplatUIX11.cs: Update for Mono.Posix changes
16209 2004-11-05 07:00  ravindra
16211         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
16212           scrolling.
16214 2004-11-04 22:47  jba
16216         * ThemeWin32Classic.cs:
16217           - Fix Button rendering for FlatStyle = Flat or Popup
16218           - Fix RadioButton and CheckBox rendering when Appearance = Button
16219             (normal and flatstyle).
16220           - Correct outer rectangle color when drawing focus rectangle
16221           - Adjust button bounds to be 1 px smaller when focused
16222           - Make button not draw sunken 3d border when pushed (windows compat)
16223           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
16224           - Offset the text in RadioButton and Checkbox when being rendered as
16225           a button.
16226           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
16227           radiobuttons
16228           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
16229           - Fixed disabled text rendering for normally rendered radiobuttons
16231 2004-11-04 10:26  jackson
16233         * TabControl.cs: Recalculate tab rows when resizing
16235 2004-11-04 07:47  jordi
16237         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
16238           collection completion, drawing issues, missing features
16240 2004-11-04 05:03  ravindra
16242         * ScrollBar.cs:
16243                 - We need to recalculate the Thumb area when
16244                 LargeChange/maximum/minimum values are changed.
16245           - We set the 'pos' in UpdatePos() method to minimum, if it's less
16246                 than minimum. This is required to handle the case if large_change is
16247                 more than max, and use LargeChange property instead of large_change
16248                 variable.
16249           - We return max+1 when large_change is more than max, like MS does.
16251 2004-11-04 04:29  ravindra
16253         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
16254                 - Changed default value signatures (prefixed all with ListView).
16255                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
16256                 ListView.
16257           - Fixed calculations for ListViewItem and implemented Clone()
16258           method.
16260 2004-11-04 04:26  ravindra
16262         * Theme.cs, ThemeWin32Classic.cs:
16263                 - Changed default ListView values signatures (prefixed all with
16264                 ListView).
16265           - Fixed default size values for VScrollBar and HScrollBar.
16266                 - Fixed DrawListViewItem method.
16268 2004-11-04 04:05  ravindra
16270         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
16272 2004-11-04 04:04  ravindra
16274         * ImageList.cs: Implemented the missing overload for Draw method.
16276 2004-11-03 19:29  jackson
16278         * TabControl.cs: Handle dropping rows on selection properly
16280 2004-11-03 11:59  jackson
16282         * TabControl.cs: remove debug code
16284 2004-11-03 11:52  jackson
16286         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
16287           the scrolly widgerywoo
16289 2004-11-02 13:52  jackson
16291         * TabControl.cs: Resize the tab pages and tabs when the tab control
16292           is resized
16294 2004-11-02 13:40  jackson
16296         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
16297           selected tab to the bottom
16299 2004-11-02 13:39  jackson
16301         * TabPage.cs: Store the tab pages row
16303 2004-11-02 12:33  jordi
16305         * MenuItem.cs: fixes handle creation
16307 2004-11-02 11:42  jackson
16309         * TabControl.cs: signature fix
16311 2004-11-02 08:56  jackson
16313         * TabControl.cs: Calculate whether the tab is on an edge properly.
16314           Remove top secret debugging code
16316 2004-11-01 19:57  jackson
16318         * TabControl.cs: Add click handling, and proper sizing
16320 2004-11-01 19:47  jackson
16322         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
16323           tab controls
16325 2004-11-01 19:39  jackson
16327         * TabPage.cs: add internal property to store the bounds of a tab
16328           page
16330 2004-10-30 04:23  ravindra
16332         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
16333           values.
16335 2004-10-30 04:21  ravindra
16337         * ListView.cs, ListViewItem.cs: Added support for scrolling and
16338           fixed calculations.
16340 2004-10-30 03:06  pbartok
16342         * XplatUIX11.cs:
16343           - Removed extension of DllImported libs
16345 2004-10-29 09:55  jordi
16347         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
16348           navigation, itemcollection completion, menu fixes
16350 2004-10-27 22:58  pbartok
16352         * XplatUIX11.cs:
16353           - Now throws a nice error message when no X display could be opened
16355 2004-10-26 13:51  jordi
16357         * ListView.cs: removes warning
16359 2004-10-26 03:55  ravindra
16361         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
16362           ThemeWin32Classic.cs: Some formatting for my last checkins.
16364 2004-10-26 03:36  ravindra
16366         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
16367           control and default values.
16369 2004-10-26 03:35  ravindra
16371         * Theme.cs: Added some default values for ListView control.
16373 2004-10-26 03:33  ravindra
16375         * ToolBar.cs: ToolBar should use the user specified button size, if
16376           there is any. Added a size_specified flag for the same.
16378 2004-10-26 03:33  ravindra
16380         * ColumnHeader.cs: Added some internal members and calculations for
16381           ColumnHeader.
16383 2004-10-26 03:32  ravindra
16385         * ListViewItem.cs: Calculations for ListViewItem.
16387 2004-10-26 03:31  ravindra
16389         * ListView.cs: Added some internal members and calculations for
16390           ListView.
16392 2004-10-22 13:31  jordi
16394         * MenuAPI.cs: speedup menus drawing
16396 2004-10-22 13:16  jackson
16398         * XplatUIX11.cs: Make sure to update exposed regions when adding an
16399           expose event
16401 2004-10-22 11:49  jackson
16403         * Control.cs: oops
16405 2004-10-22 11:41  jackson
16407         * Control.cs: Check to see if the window should have its background
16408           repainted by X when drawing.
16410 2004-10-22 11:31  jackson
16412         * XplatUIX11.cs: When invalidating areas only use XClearArea if
16413           clear is true, this way we do not get flicker from X repainting the
16414           background
16416 2004-10-22 11:28  jackson
16418         * XEventQueue.cs: Queue properly
16420 2004-10-21 09:38  jackson
16422         * XEventQueue.cs: Fix access modifier
16424 2004-10-21 09:36  jackson
16426         * XEventQueue.cs: Don't loose messages
16428 2004-10-21 09:22  jackson
16430         * XEventQueue.cs: Don't loose messages
16432 2004-10-20 04:15  jordi
16434         * BootMode.cs: enum need it by SystemInfo
16436 2004-10-19 21:58  pbartok
16438         * XplatUIWin32.cs:
16439           - Small sanity check
16441 2004-10-19 21:56  pbartok
16443         * Form.cs:
16444           - Added private FormParentWindow class which acts as the container
16445             for our form and as the non-client area where menus are drawn
16446           - Added/Moved required tie-ins to Jordi's menus
16447           - Fixed/Implemented the FormStartPosition functionality
16449 2004-10-19 21:52  pbartok
16451         * Control.cs:
16452           - Removed unneeded locals
16453           - Added code to all size and location properties to understand and
16454             deal with the parent container of Form
16456 2004-10-19 21:33  pbartok
16458         * Application.cs:
16459           - Fixed to deal with new Form subclasses for menus
16461 2004-10-19 17:48  jackson
16463         * XEventQueue.cs: commit correct version of file
16465 2004-10-19 16:50  jackson
16467         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
16469 2004-10-19 16:15  jordi
16471         * MenuAPI.cs: MenuBarCalcSize returns the height
16473 2004-10-19 08:31  pbartok
16475         * Control.cs:
16476           - Added missing call to PreProcessMessage before calling OnXXXKey
16477           methods
16479 2004-10-19 00:04  ravindra
16481         * ToolTip.cs: Fixed constructor.
16483 2004-10-18 09:31  jordi
16485         * MenuAPI.cs: menuitems in menubars do not have shortcuts
16487 2004-10-18 09:26  jordi
16489         * MenuItem.cs: fixes MenuItem class signature
16491 2004-10-18 08:56  jordi
16493         * MenuAPI.cs: prevents windows from showing in the taskbar
16495 2004-10-18 00:28  ravindra
16497         * ToolTip.cs: Suppressed a warning message.
16499 2004-10-18 00:27  ravindra
16501         * Control.cs: Default value of visible property must be true.
16503 2004-10-17 23:19  pbartok
16505         * ToolTip.cs:
16506           - Complete implementation
16508 2004-10-17 23:19  pbartok
16510         * XplatUIX11.cs:
16511           - Added EnableWindow method
16512           - Added SetModal stub
16513           - Added generation of WM_ACTIVATE message (still needs testing)
16514           - Added SetTopMost stub
16515           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
16517 2004-10-17 23:17  pbartok
16519         * XplatUIWin32.cs:
16520           - Removed VirtualKeys to XplatUIStructs
16521           - Implemented SetTopMost method
16522           - Implemented EnableWindow method
16523           - Bugfix in ScreenToClient()
16524           - Bugfixes in ClientToScreen()
16526 2004-10-17 22:51  pbartok
16528         * XplatUIStructs.cs:
16529           - Added WS_EX styles to WindowStyles enumeration
16531 2004-10-17 22:50  pbartok
16533         * XplatUI.cs, XplatUIDriver.cs:
16534           - Added method for enabling/disabling windows
16535           - Added method for setting window modality
16536           - Added method for setting topmost window
16538 2004-10-17 22:49  pbartok
16540         * ThemeWin32Classic.cs:
16541           - Added ToolTip drawing code
16543 2004-10-17 22:49  pbartok
16545         * Theme.cs:
16546           - Added ToolTip abstracts
16548 2004-10-17 22:47  pbartok
16550         * Form.cs:
16551           - Fixed Form.ControlCollection to handle owner relations
16552           - Added Owner/OwnedForms handling
16553           - Implemented Z-Ordering for owned forms
16554           - Removed unneeded private overload of ShowDialog
16555           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
16556             so I hope)
16557           - Fixed Close(), had wrong default
16558           - Added firing of OnLoad event
16559           - Added some commented out debug code for Ownership handling
16561 2004-10-17 22:16  pbartok
16563         * Control.cs:
16564           - Fixed/implemented flat list of controls
16566 2004-10-17 22:14  pbartok
16568         * Application.cs:
16569           - Added code to simulate modal dialogs on Win32
16571 2004-10-17 16:11  jordi
16573         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
16574           mouse event
16576 2004-10-17 13:39  jordi
16578         * MenuAPI.cs: menu drawing fixes
16580 2004-10-15 09:10  ravindra
16582         * StructFormat.cs: General Enum.
16584 2004-10-15 09:09  ravindra
16586         * SizeGripStyle.cs: Enum for Form.
16588 2004-10-15 09:08  ravindra
16590         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
16591           in Theme for ListView.
16593 2004-10-15 09:06  ravindra
16595         * ColumnHeader.cs: Flushing some formatting changes.
16597 2004-10-15 09:05  ravindra
16599         * ListViewItem.cs: Implemented GetBounds method and fixed coding
16600           style.
16602 2004-10-15 09:03  ravindra
16604         * ListView.cs: Implemented Paint method and fixed coding style.
16606 2004-10-15 07:34  jordi
16608         * MenuAPI.cs: fix for X11
16610 2004-10-15 07:32  ravindra
16612         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
16613                 - Renamed Paint() method to Draw() for clarity. Also, moved
16614                 DrawImage() to OnPaint().
16616 2004-10-15 07:25  ravindra
16618         * CheckBox.cs, RadioButton.cs:
16619                 - Removed Redraw (), we get it from ButtonBase.
16620                 - Implemented Paint (), to do class specific painting.
16622 2004-10-15 07:16  ravindra
16624         * ButtonBase.cs:
16625                 - Redraw () is not virtual now.
16626                 - Added an internal virtual method Paint (), so that
16627                 derived classes can do their painting on their own.
16628                 - Modified OnPaint () to call Paint ().
16630 2004-10-15 06:43  jordi
16632         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
16633           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
16635 2004-10-15 00:30  ravindra
16637         * MessageBox.cs:
16638                 - MessageBox on windows does not have min/max buttons.
16639                 This change in CreateParams fixes this on Windows. We
16640                 still need to implement this windowstyle behavior in
16641                 our X11 driver.
16643 2004-10-14 05:14  ravindra
16645         * ToolBar.cs:
16646                 - Changed Redraw () to do a Refresh () always.
16647                 - Fixed the MouseMove event handling when mouse is pressed,
16648                 ie drag event handling.
16649                 - Replaced the usage of ToolBarButton.Pressed property to
16650                 ToolBarButton.pressed internal variable.
16652 2004-10-14 05:10  ravindra
16654         * ToolBarButton.cs:
16655                 - Added an internal member 'inside' to handle mouse move
16656                 with mouse pressed ie mouse drag event.
16657                 - Changed 'Pressed' property to return true only when
16658                 'inside' and 'pressed' are both true.
16659                 - Some coding style love.
16661 2004-10-14 00:17  ravindra
16663         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
16664           public method.
16666 2004-10-14 00:15  ravindra
16668         * ButtonBase.cs: Redraw () related improvements.
16670 2004-10-14 00:14  ravindra
16672         * MessageBox.cs: Moved InitFormSize () out of Paint method and
16673           removed unnecessary calls to Button.Show () method.
16675 2004-10-13 17:50  pbartok
16677         * XplatUIX11.cs:
16678           - Formatting fix
16679           - Removed destroying of window until we solve the problem of X
16680             destroying the window before us on shutdown
16682 2004-10-13 16:32  pbartok
16684         * ButtonBase.cs:
16685           - Now Redraws on MouseUp for FlatStyle Flat and Popup
16687 2004-10-13 14:18  pbartok
16689         * XplatUIX11.cs:
16690           - Added code to destroy the X window
16692 2004-10-13 14:18  pbartok
16694         * XplatUIWin32.cs:
16695           - Added code to destroy a window
16697 2004-10-13 14:12  pbartok
16699         * ButtonBase.cs:
16700           - Added the Redraw on Resize that got dropped in the last rev
16702 2004-10-13 09:06  pbartok
16704         * ThemeWin32Classic.cs:
16705           - Path from John BouAntoun:
16706             * Fix check rendering (centre correctly for normal style, offset
16707               correctly for FlatStyle).
16708             * Fix border color usage (use backcolor) for FlatStyle.Popup
16709             * Use checkbox.Capture instead of checkbox.is_pressed when
16710               rendering flatstyle states.
16712 2004-10-12 21:48  pbartok
16714         * ThemeWin32Classic.cs:
16715           - Removed all occurences of SystemColors and replaced them with the
16716             matching theme color
16718 2004-10-12 21:41  pbartok
16720         * ThemeWin32Classic.cs:
16721           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
16722             him using the function for flatstyle drawing
16723           - Changed functions to use the new version of CPDrawBorder3D
16725 2004-10-12 21:15  pbartok
16727         * ControlPaint.cs:
16728           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
16729             match MS documentation. They need to return defined colors if the
16730             passed color matches the configured control color. Thanks to John
16731             BouAntoun for pointing this out.
16733 2004-10-12 20:57  pbartok
16735         * Control.cs:
16736           - Fix from John BouAntoun: Raise ForeColorChanged event when text
16737             color is changed
16739 2004-10-12 20:46  pbartok
16741         * CheckBox.cs:
16742           - Fix from John BouAntoun: Now properly sets the Appearance property
16744 2004-10-12 20:45  pbartok
16746         * ThemeWin32Classic.cs:
16747           - Fixes from John BouAntoun: now handles forecolors and backcolors
16748             for flatstyle rendered controls much better; It also fixes normal
16749             checkbox rendering when pushed or disabled.
16751 2004-10-08 02:50  jordi
16753         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
16754           work
16756 2004-10-07 08:56  jordi
16758         * ThemeWin32Classic.cs: Removes deletion of cached brushes
16760 2004-10-06 03:59  jordi
16762         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
16763           XplatUIWin32.cs: removes warnings from compilation
16765 2004-10-05 12:23  jackson
16767         * RadioButton.cs: Fix ctor
16769 2004-10-05 11:10  pbartok
16771         * MessageBox.cs:
16772           - Partial implementation by Benjamin Dasnois
16774 2004-10-05 10:15  jackson
16776         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
16777           by John BouAntoun
16779 2004-10-05 03:07  ravindra
16781         * ToolBar.cs:
16782                 - Removed a private method, Draw ().
16783                 - Fixed the ButtonDropDown event handling.
16784                 - Fixed MouseMove event handling.
16786 2004-10-05 03:04  ravindra
16788         * ThemeWin32Classic.cs:
16789                 - Added DrawListView method and ListViewDefaultSize property.
16790                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
16791                 - Changed DOS style CRLF to Unix format (dos2unix).
16793 2004-10-05 03:03  ravindra
16795         * Theme.cs:
16796                 - Added DrawListView method and ListViewDefaultSize property.
16798 2004-10-05 02:42  ravindra
16800         * ToolBarButton.cs: Added an internal member dd_pressed to handle
16801           clicks on DropDown arrow.
16803 2004-10-04 22:56  jackson
16805         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
16806           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
16807           Control handle the buffers, derived classes should not have to
16808           CreateBuffers themselves.
16810 2004-10-04 21:20  jackson
16812         * StatusBar.cs: The control handles resizing the buffers now.
16814 2004-10-04 21:18  jackson
16816         * Control.cs: When resizing the buffers should be invalidated. This
16817           should be handled in Control not in derived classes.
16819 2004-10-04 14:45  jackson
16821         * TabPage.cs: oops
16823 2004-10-04 02:14  pbartok
16825         * LeftRightAlignment.cs:
16826           - Initial check-in
16828 2004-10-04 01:09  jordi
16830         * ThemeWin32Classic.cs: fixes right button position causing right
16831           button not showing on horizontal scrollbars
16833 2004-10-02 13:12  pbartok
16835         * XplatUIX11.cs:
16836           - Simplified the Invalidate method by using an X call instead of
16837             generating the expose ourselves
16838           - Added an expose when the window background is changed
16839           - Implemented ClientToScreen method
16841 2004-10-02 13:08  pbartok
16843         * XplatUIWin32.cs:
16844           - Added Win32EnableWindow method (test for implementing modal
16845           dialogs)
16846           - Added ClientToScreen method and imports
16848 2004-10-02 13:07  pbartok
16850         * XplatUI.cs, XplatUIDriver.cs:
16851           - Added ClientToScreen coordinate translation method
16853 2004-10-02 13:06  pbartok
16855         * KeyPressEventArgs.cs:
16856           - Fixed access level for constructor
16858 2004-10-02 13:06  pbartok
16860         * NativeWindow.cs:
16861           - Changed access level for the window_collection hash table
16863 2004-10-02 13:05  pbartok
16865         * Form.cs:
16866           - Added KeyPreview property
16867           - Added Menu property (still incomplete, pending Jordi's menu work)
16868           - Implemented ProcessCmdKey
16869           - Implemented ProcessDialogKey
16870           - Implemented ProcessKeyPreview
16872 2004-10-02 13:02  pbartok
16874         * Control.cs:
16875           - Added private method to get the Control object from the window
16876           handle
16877           - Implemented ContextMenu property
16878           - Implemented PointToScreen
16879           - Implemented PreProcessMessage
16880           - Implemented IsInputChar
16881           - Implemented IsInputKey
16882           - Implemented ProcessCmdKey
16883           - Completed ProcessKeyEventArgs
16884           - Fixed message loop to call the proper chain of functions on key
16885           events
16886           - Implemented ProcessDialogChar
16887           - Implemented ProcessDialogKey
16888           - Implemented ProcessKeyMessage
16889           - Implemented ProcessKeyPreview
16890           - Added RaiseDragEvent stub (MS internal method)
16891           - Added RaiseKeyEvent stub (MS internal method)
16892           - Added RaiseMouseEvent stub (MS Internal method)
16893           - Added RaisePaintEvent stub (MS Internal method)
16894           - Added ResetMouseEventArgs stub (MS Internal method)
16895           - Implemented RtlTranslateAlignment
16896           - Implemented RtlTranslateContent
16897           - Implemented RtlTranslateHorizontal
16898           - Implemented RtlTranslateLeftRight
16899           - Added generation of KeyPress event
16901 2004-10-02 05:57  ravindra
16903         * ListViewItem.cs: Added attributes.
16905 2004-10-02 05:32  ravindra
16907         * ListView.cs: Added attributes.
16909 2004-10-01 11:53  jackson
16911         * Form.cs: Implement the Close method so work on MessageBox can
16912           continue.
16914 2004-09-30 14:06  pbartok
16916         * XplatUIX11.cs:
16917           - Bug fixes
16919 2004-09-30 11:34  jackson
16921         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
16923 2004-09-30 07:26  ravindra
16925         * ListViewItemConverter.cs: Converter for ListViewItem.
16927 2004-09-30 07:26  ravindra
16929         * SortOrder.cs: Enum for ListView control.
16931 2004-09-30 07:25  ravindra
16933         * ColumnHeader.cs: Supporting class for ListView control.
16935 2004-09-30 07:24  ravindra
16937         * ListView.cs, ListViewItem.cs: Initial implementation.
16939 2004-09-30 07:20  ravindra
16941         * ItemActivation.cs: Enum for ListView Control.
16943 2004-09-29 20:29  pbartok
16945         * XplatUIX11.cs:
16946           - Added lookup of pixel value for background color; tries to get a
16947             color 'close' to the requested color, it avoids having to create a
16948             colormap.  Depending on the display this could mean the used color
16949             is slightly off the desired color. Might have to change it to a more
16950             resource intensive colormap approach, but it will work as a
16951           workaround to avoid red screens.
16953 2004-09-29 14:27  jackson
16955         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
16957 2004-09-28 12:44  pbartok
16959         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
16960           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
16961           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
16962           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
16963           TrackBar.cs, VScrollBar.cs:
16964           - Streamlined Theme interfaces:
16965             * Each DrawXXX method for a control now is passed the object for
16966               the control to be drawn in order to allow accessing any state the
16967               theme might require
16969             * ControlPaint methods for the theme now have a CP prefix to avoid
16970               name clashes with the Draw methods for controls
16972             * Every control now retrieves it's DefaultSize from the current
16973             theme
16975 2004-09-28 12:17  jackson
16977         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
16978           drawing
16980 2004-09-24 14:57  jackson
16982         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
16983           Gives us a nice little performance boost.
16985 2004-09-24 12:02  jackson
16987         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
16988           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
16989           Control and supporting classes. Initial checkin
16991 2004-09-23 13:08  jackson
16993         * Form.cs: Temp build fixage
16995 2004-09-23 01:39  ravindra
16997         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
16998           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
16999           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
17000           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
17001           EventHandlers needed by ListView Control.
17003 2004-09-22 14:12  pbartok
17005         * ScrollableControl.cs:
17006           - Implemented DockPadding property
17007           - Implemented AutoScroll property
17008           - Implemented AutoScrollMargin property
17009           - Implemented AutoScrollMinSize property
17010           - Implemented AutoScrollPosition property
17011           - Implemented DisplayRectangle property (still incomplete)
17012           - Implemented CreateParams property
17013           - Implemented HScroll property
17014           - Implemented VScroll property
17015           - Implemented OnVisibleChanged property
17017 2004-09-22 14:09  pbartok
17019         * Form.cs:
17020           - Added Form.ControllCollection class
17021           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
17022             RemoveOwnedForm (still incomplete, missing on-top and common
17023             minimize/maximize behaviour)
17024           - Added StartPosition property (still incomplete, does not use when
17025             creating the form)
17026           - Added ShowDialog() methods (still incomplete, missing forcing the
17027             dialog modal)
17029 2004-09-22 14:05  pbartok
17031         * Application.cs:
17032           - Added message loop for modal dialogs
17034 2004-09-22 14:02  pbartok
17036         * GroupBox.cs:
17037           - Fixed wrong types for events
17039 2004-09-22 14:00  pbartok
17041         * Shortcut.cs, FormWindowState.cs:
17042           - Fixed wrong values
17044 2004-09-22 12:01  jackson
17046         * Control.cs: Text is never null
17048 2004-09-20 22:14  pbartok
17050         * XplatUIWin32.cs:
17051           - Fixed accessibility level for Idle handler
17053 2004-09-20 18:54  jackson
17055         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
17056           XplatUIX11.cs: New message loop that uses poll so we don't get a
17057           busy loop
17059 2004-09-17 10:43  pbartok
17061         * ScrollBar.cs:
17062           - Fixed behaviour of arrow buttons. Now properly behaves like
17063             Buttons (and like Microsoft's scrollbar arrow buttons)
17065 2004-09-17 10:14  pbartok
17067         * ScrollBar.cs:
17068           - Added missing release of keyboard/mouse capture
17070 2004-09-17 06:18  jordi
17072         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
17073           Theme.cs: Very early menu support
17075 2004-09-16 17:45  pbartok
17077         * XplatUIWin32.cs:
17078           - Fixed sending a window to the front
17079           - Added overload for SetWindowPos to avoid casting
17081 2004-09-16 17:44  pbartok
17083         * Control.cs:
17084           - Added SendToBack and BringToFront methods
17086 2004-09-16 07:00  ravindra
17088         * Copyright: Added Novell URL.
17090 2004-09-16 07:00  ravindra
17092         * ToolBar.cs: Invalidate should be done before redrawing.
17094 2004-09-15 21:19  ravindra
17096         * ColumnHeaderStyle.cs: Enum for ListView Control.
17098 2004-09-15 21:18  ravindra
17100         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
17101           ListView Control.
17103 2004-09-13 18:26  jackson
17105         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
17106           properly
17108 2004-09-13 18:13  jackson
17110         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
17111           a second thread and post messages into the main threads message
17112           queue. This makes timing much more consistent. Both win2K and XP
17113           have a minimum timer value of 15 milliseconds, so we now do this
17114           too.
17116 2004-09-13 15:18  pbartok
17118         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
17119           XplatUIX11.cs:
17120           - Added Z-Ordering methods
17122 2004-09-13 10:56  pbartok
17124         * Form.cs:
17125           - Fixed #region names
17126           - Moved properties and methods into their proper #regions
17128 2004-09-13 10:51  pbartok
17130         * Form.cs:
17131           - Added Accept and CancelButton properties
17132           - Added ProcessDialogKey() method
17134 2004-09-13 08:18  pbartok
17136         * IWindowTarget.cs:
17137           - Initial check-in
17139 2004-09-10 21:50  pbartok
17141         * Control.cs:
17142           - Added DoDragDrop() [incomplete]
17143           - Properly implemented 'Visible' handling
17144           - Added SetVisibleCore()
17145           - Implemented FindChildAtPoint()
17146           - Implemented GetContainerControl()
17147           - Implemented Hide()
17149 2004-09-10 19:28  pbartok
17151         * Control.cs:
17152           - Moved methods into their appropriate #regions
17153           - Reordered methods within regions alphabetically
17155 2004-09-10 18:57  pbartok
17157         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
17158           - Added method to retrieve text from window
17160 2004-09-10 18:56  pbartok
17162         * Control.cs:
17163           - Moved some internal functions into the internal region
17164           - Implemented FontHeight
17165           - Implemented RenderRightToLeft
17166           - Implemented ResizeRedraw
17167           - Implemented ShowFocusCues
17168           - Implemented ShowKeyboardCues
17169           - Implemented FromChildHandle
17170           - Implemented FromHandle
17171           - Implemented IsMnemonic
17172           - Implemented ReflectMessage
17173           - All public and protected Static Methods are now complete
17175 2004-09-10 16:54  pbartok
17177         * Control.cs:
17178           - Implemented remaining missing public instance properties
17179           - Alphabetized some out of order properties
17181 2004-09-10 05:51  ravindra
17183         * PictureBox.cs: Added a check for null image.
17185 2004-09-10 00:59  jordi
17187         * GroupBox.cs: remove cvs tag
17189 2004-09-09 05:25  ravindra
17191         * ToolBar.cs: Make redraw accessible from ToolBarButton.
17193 2004-09-09 05:23  ravindra
17195         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
17196           parent redraw.
17198 2004-09-09 02:28  pbartok
17200         * ThemeWin32Classic.cs:
17201           - Improve disabled string look
17203 2004-09-09 01:15  jordi
17205         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
17206           args and handler
17208 2004-09-08 23:56  ravindra
17210         * ItemBoundsPortion.cs: It's enum, not a class!
17212 2004-09-08 23:47  ravindra
17214         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
17215           Enums for Form.
17217 2004-09-08 21:13  ravindra
17219         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
17220           ListView control.
17222 2004-09-08 21:03  ravindra
17224         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
17225           avoid crash.
17227 2004-09-08 21:01  ravindra
17229         * ScrollableControl.cs: Removed unreachable code.
17231 2004-09-08 06:45  jordi
17233         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
17235 2004-09-08 01:00  jackson
17237         * XplatUIX11.cs: Only run the timers when updating the message
17238           queue. This effectively gives X messages a higher priority then
17239           timer messages. Timers still need love though
17241 2004-09-07 14:01  jackson
17243         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
17244           this for us and the handle is no longer valid.
17246 2004-09-07 13:59  jackson
17248         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
17249           loop that manages to not crash. TODO: Add poll and cleanup timers
17251 2004-09-07 11:12  jordi
17253         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
17255 2004-09-07 03:40  jordi
17257         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
17258           fixes, methods, multiple links
17260 2004-09-06 06:55  jordi
17262         * Control.cs: Caches ClientRectangle rectangle value
17264 2004-09-05 02:03  jordi
17266         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
17267           certain situations
17269 2004-09-04 11:10  jordi
17271         * Label.cs: Refresh when font changed
17273 2004-09-02 16:24  pbartok
17275         * Control.cs:
17276           - Added sanity check to creation of double buffer bitmap
17278 2004-09-02 16:24  pbartok
17280         * ButtonBase.cs:
17281           - Fixed selection of text color
17282           - Fixed handling of resize event; now properly recreates double
17283             buffering bitmap
17284           - Added missing assignment of TextAlignment
17285           - Added proper default for TextAlignment
17287 2004-09-02 14:26  pbartok
17289         * RadioButton.cs:
17290           - Added missing RadioButton.RadioButtonAccessibleObject class
17292 2004-09-02 14:26  pbartok
17294         * Control.cs:
17295           - Added missing Control.ControlAccessibleObject class
17296           - Started to implement Select()ion mechanisms, still very incomplete
17298 2004-09-02 14:25  pbartok
17300         * AccessibleObject.cs:
17301           - Added missing methods
17303 2004-09-02 14:23  pbartok
17305         * AccessibleNavigation.cs, AccessibleSelection.cs:
17306           - Initial check-in
17308 2004-09-02 10:32  jordi
17310         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
17311           pool for pens, brushes, and hatchbruses
17313 2004-09-01 15:30  jackson
17315         * StatusBar.cs: Fix typo
17317 2004-09-01 14:44  pbartok
17319         * RadioButton.cs:
17320           - Fixed state
17322 2004-09-01 14:39  pbartok
17324         * Button.cs, RadioButton.cs:
17325           - Functional initial check-in
17327 2004-09-01 14:01  pbartok
17329         * CheckBox.cs:
17330           - Added missing default
17331           - Added missing region mark
17333 2004-09-01 09:10  jordi
17335         * Label.cs: fixes method signatures, new methods, events, fixes
17336           autosize
17338 2004-09-01 07:19  jordi
17340         * Control.cs: Init string variables with an empty object
17342 2004-09-01 04:20  jordi
17344         * Control.cs: fires OnFontChanged event
17346 2004-08-31 20:07  pbartok
17348         * ButtonBase.cs:
17349           - Enabled display of strings
17351 2004-08-31 20:05  pbartok
17353         * Form.cs:
17354           - Added (partial) implementation of DialogResult; rest needs to be
17355             implemented when the modal loop code is done
17357 2004-08-31 19:55  pbartok
17359         * CheckBox.cs:
17360           - Fixed to match the removal of the needs_redraw concept
17362 2004-08-31 19:55  pbartok
17364         * ButtonBase.cs:
17365           - Removed the rather odd split between 'needs redraw' and redrawing
17366           - Now handles the events that require regeneration (ambient
17367             properties and size)
17369 2004-08-31 19:41  pbartok
17371         * Control.cs:
17372           - Added firing of BackColorChanged event
17373           - Added TopLevelControl property
17374           - Fixed handling of WM_ERASEBKGRND message
17376 2004-08-31 12:49  pbartok
17378         * ButtonBase.cs:
17379           - Removed debug
17380           - Minor fixes
17382 2004-08-31 12:48  pbartok
17384         * CheckBox.cs:
17385           - Finished (famous last words)
17387 2004-08-31 04:35  jordi
17389         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
17390           scrolling bugs, adds new methods
17392 2004-08-30 14:42  pbartok
17394         * CheckBox.cs:
17395           - Implemented CheckBox drawing code
17397 2004-08-30 14:42  pbartok
17399         * ButtonBase.cs:
17400           - Made Redraw() and CheckRedraw() virtual
17401           - Improved mouse up/down/move logic to properly track buttons
17403 2004-08-30 09:44  pbartok
17405         * CheckBox.cs:
17406           - Updated to fix broken build. Not complete yet.
17408 2004-08-30 09:28  pbartok
17410         * CheckState.cs:
17411           - Initial checkin
17413 2004-08-30 09:17  pbartok
17415         * Appearance.cs:
17416           - Initial check-in
17418 2004-08-27 16:12  ravindra
17420         * ToolBarButton.cs: Added TypeConverter attribute.
17422 2004-08-27 16:07  ravindra
17424         * ImageIndexConverter.cs: Implemented.
17426 2004-08-27 14:17  pbartok
17428         * Control.cs:
17429           - Removed unneeded stack vars
17430           - First attempt to fix sizing issues when layout is suspended
17432 2004-08-25 15:35  jordi
17434         * ScrollBar.cs: more fixes to scrollbar
17436 2004-08-25 14:04  ravindra
17438         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
17439           Added the missing divider code and grip for ToolBar Control.
17441 2004-08-25 13:20  pbartok
17443         * Control.cs:
17444           - Control now properly passes the ambient background color to child
17445             controls
17447 2004-08-25 13:20  jordi
17449         * ScrollBar.cs: small bug fix regarding bar position
17451 2004-08-25 12:33  pbartok
17453         * Timer.cs:
17454           - Now only calls SetTimer or KillTimer if the enabled state has
17455           changed
17457 2004-08-25 12:33  pbartok
17459         * XplatUIWin32.cs:
17460           - Fixed timer handling, now seems to work
17461           - Improved error message for window creation
17463 2004-08-25 12:32  pbartok
17465         * Control.cs:
17466           - Fixed generation of MouseUp message
17468 2004-08-25 12:29  jordi
17470         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
17471           and fixes for progressbar
17473 2004-08-24 18:43  ravindra
17475         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
17476           in ToolBar control.
17478 2004-08-24 17:15  pbartok
17480         * Panel.cs:
17481           - Added #region
17482           - Added missing events
17483           - Alphabetized
17485 2004-08-24 17:14  pbartok
17487         * StatusBar.cs, PictureBox.cs:
17488           - Now uses Control's CreateParams
17490 2004-08-24 16:36  pbartok
17492         * XplatUIX11.cs:
17493           - Fixed background color handling
17494           - Fixed sending of enter/leave events on a grab
17496 2004-08-24 16:35  pbartok
17498         * X11Structs.cs:
17499           - Refined definitions for CrossingEvent
17501 2004-08-24 12:37  jordi
17503         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
17504           formmating, methods signature, and adds missing events
17506 2004-08-24 12:24  jordi
17508         * Control.cs: fire OnEnabledChanged event
17510 2004-08-24 11:17  pbartok
17512         * XplatUIWin32.cs:
17513           - Implemented SetTimer() and KillTimer()
17515 2004-08-24 11:16  pbartok
17517         * XplatUIX11.cs:
17518           - Now uses Remove instead of Add to kill the timer
17520 2004-08-24 10:16  jackson
17522         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
17523           picture boxes in the theme now. Draw picture box borders and obey
17524           sizing modes
17526 2004-08-24 05:49  jackson
17528         * Timer.cs: Remove top secret debugging code
17530 2004-08-24 05:34  jackson
17532         * PictureBox.cs: Temp hack to make picture boxes draw their full
17533           image
17535 2004-08-24 05:29  jackson
17537         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
17538           XplatUIX11.cs: Move timers to the driver level. On X they are
17539           queued by the driver and checked on idle.
17541 2004-08-24 01:07  jackson
17543         * XplatUIX11.cs: Use a queue for async messages instead of passing
17544           them as ClientMessages since that was totally broken. Also simply
17545           check for events and return an idle message if none are found. This
17546           gives us an idle handler, and prevents deadlocking when no messages
17547           are in the queue.
17549 2004-08-23 18:19  ravindra
17551         * XplatUIWin32.cs: Removed the unwanted destructor.
17553 2004-08-23 17:27  pbartok
17555         * ButtonBase.cs:
17556           - Finishing touches. Works now, just needs some optimizations.
17558 2004-08-23 16:53  jordi
17560         * ScrollBar.cs: small fix
17562 2004-08-23 16:45  pbartok
17564         * Application.cs:
17565           - Removed debug output
17566           - Simplifications
17568 2004-08-23 16:43  jordi
17570         * ScrollBar.cs: [no log message]
17572 2004-08-23 16:10  pbartok
17574         * Form.cs:
17575           - Fixed handling of WM_CLOSE message
17576           - Removed debug output
17578 2004-08-23 16:09  pbartok
17580         * Application.cs:
17581           - Added handling of Idle event
17582           - Added handling of form closing
17583           - Fixed reporting of MessageLoop property
17584           - Removed some unneeded code, should provide a bit of a speedup
17586 2004-08-23 15:22  pbartok
17588         * Control.cs:
17589           - Added InitLayout() method
17590           - Added code to properly perform layout when Anchor or Dock property
17591             is changed
17592           - Changed 'interpretation' of ResumeLayout. MS seems to have a
17593             LAMESPEC, tried to do it in a way that makes sense
17595 2004-08-23 14:10  jordi
17597         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
17598           properties and methods
17600 2004-08-23 13:55  pbartok
17602         * Control.cs:
17603           - Properly fixed Jordi's last fix
17604           - Now uses Cursor's Position property instead of calling XplatUI
17605           directly
17607 2004-08-23 13:44  jordi
17609         * PaintEventHandler.cs: Adding missing attribute
17611 2004-08-23 13:39  pbartok
17613         * Cursor.cs:
17614           - Implemented Position property
17616 2004-08-23 13:39  pbartok
17618         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
17619           - Added method to move mouse cursor
17621 2004-08-23 13:39  pbartok
17623         * XplatUIX11.cs:
17624           - Fixed setting of background color
17625           - Added method to move mouse cursor
17627 2004-08-23 13:16  jordi
17629         * Control.cs: avoids null exception
17631 2004-08-22 17:46  jackson
17633         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
17634           PictureBox
17636 2004-08-22 17:40  jackson
17638         * XplatUIX11.cs: Add some missing locks
17640 2004-08-22 15:10  pbartok
17642         * Control.cs, Form.cs:
17643           - Removed OverlappedWindow style from Control, instead it's default
17644             now is child
17645           - Made form windows OverlappedWindow by default
17647 2004-08-22 13:34  jackson
17649         * ScrollBar.cs: Update the position through the Value property so
17650           the OnValueChanged event is raised.
17652 2004-08-22 12:04  pbartok
17654         * SWF.csproj:
17655           - Added Cursor.cs and UserControl.cs
17657 2004-08-22 12:03  pbartok
17659         * Cursor.cs:
17660           - Started implementation, not usable yet
17662 2004-08-22 12:00  pbartok
17664         * UserControl.cs:
17665           - Implemented UserControl (complete)
17667 2004-08-21 19:20  ravindra
17669         * ToolBar.cs: Correcting the formatting mess of VS.NET.
17671 2004-08-21 18:49  ravindra
17673         * ToolBar.cs: Probably this completes the missing attributes in
17674           toolbar control.
17676 2004-08-21 18:03  ravindra
17678         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
17679           Fixed toolbar control signatures.
17681 2004-08-21 16:32  pbartok
17683         * LinkLabel.cs:
17684           - Signature Fixes
17686 2004-08-21 16:30  pbartok
17688         * Label.cs:
17689           - Signature fixes
17691 2004-08-21 16:19  pbartok
17693         * Control.cs, Label.cs:
17694           - Signature fixes
17696 2004-08-21 15:57  pbartok
17698         * ButtonBase.cs:
17699           - Added loads of debug output for development
17700           - Fixed typo in method name
17702 2004-08-21 15:52  pbartok
17704         * ToolBarButtonClickEventArgs.cs:
17705           - Added missing base class
17707 2004-08-21 14:53  pbartok
17709         * Control.cs:
17710           - Updated to match new GrabWindow signature
17712 2004-08-21 14:51  pbartok
17714         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
17715           - Added method to get default display size
17717 2004-08-21 14:23  pbartok
17719         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
17720           - Added method to query current grab state
17721           - Added argument to allow confining a grab to a window
17723 2004-08-21 14:22  pbartok
17725         * Keys.cs:
17726           - Added [Flags] attribute so that modifiers can be used in bitwise
17727           ops
17729 2004-08-21 14:21  pbartok
17731         * TrackBar.cs, ScrollBar.cs:
17732           - Replaced direct XplatUI calls with their Control counterpart
17734 2004-08-21 13:32  pbartok
17736         * Control.cs:
17737           - Implemented Created property
17739 2004-08-21 13:28  pbartok
17741         * Control.cs:
17742           - Implemented ContainsFocus
17744 2004-08-21 13:26  pbartok
17746         * Control.cs:
17747           - Implemented CausesValidation
17749 2004-08-21 13:21  pbartok
17751         * Control.cs:
17752           - Implemented CanFocus
17753           - Implemented CanSelect
17754           - Implemented Capture
17756 2004-08-21 12:35  pbartok
17758         * XplatUIWin32.cs:
17759           - Fixed bug with Async message handling
17760           - Implemented getting the ModifierKeys
17762 2004-08-21 12:32  jackson
17764         * AsyncMethodResult.cs: Make sure we have the mutex before we
17765           release it. Fixes BeginInvoke on windows
17767 2004-08-21 11:31  pbartok
17769         * XplatUIWin32.cs, XplatUIX11.cs:
17770           - Drivers now return proper mouse state
17772 2004-08-21 10:54  jackson
17774         * Control.cs: Implement EndInvoke
17776 2004-08-21 10:48  jackson
17778         * Timer.cs: Remove unneeded finalizer
17780 2004-08-20 19:52  ravindra
17782         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
17783           in mouse event handling in the ToolBar control.
17785 2004-08-20 19:50  ravindra
17787         * ImageList.cs: Changed draw method to use the arguments passed in
17788           to draw the image.
17790 2004-08-20 18:58  pbartok
17792         * XplatUIStructs.cs:
17793           - Added private message for async communication
17795 2004-08-20 17:38  ravindra
17797         * Control.cs: Made RightToLeft property virtual and removed a
17798           Console.WriteLine.
17800 2004-08-20 14:39  jordi
17802         * ThemeGtk.cs: use style_attach
17804 2004-08-20 14:39  pbartok
17806         * XplatUIWin32.cs:
17807           - Added jackson's Async code from X11 to Win32
17809 2004-08-20 14:09  pbartok
17811         * SWF.csproj:
17812           - Added all new files
17814 2004-08-20 14:09  pbartok
17816         * Control.cs:
17817           - Added call to set window background color
17819 2004-08-20 14:03  pbartok
17821         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
17822           - Added method for setting the window background
17824 2004-08-20 14:02  pbartok
17826         * XplatUIWin32.cs:
17827           - Added method for setting the background color
17828           - Added handling for erasing the window background
17830 2004-08-20 13:45  jordi
17832         * TrackBar.cs: fixes timer, new properties and methods
17834 2004-08-20 13:34  jackson
17836         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
17837           correct thread
17839 2004-08-20 13:22  jackson
17841         * Timer.cs: Timer Tick events are now handed through Controls Async
17842           mechanism so the callbacks are executed in the same thread as X
17844 2004-08-20 13:19  jackson
17846         * XplatUIDriver.cs: Expose functionality to send async messages
17847           through the driver
17849 2004-08-20 13:18  jackson
17851         * Control.cs: Implement Begininvoke
17853 2004-08-20 13:14  jackson
17855         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
17856           messages through the driver
17858 2004-08-20 13:12  jackson
17860         * XplatUIX11.cs: Lock before all X operations. Also added Async
17861           method functionality through XSendEvent
17863 2004-08-20 13:11  jackson
17865         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
17866           This will screw up on 64 bit systems)
17868 2004-08-20 13:10  jackson
17870         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
17871           Async messages through X/Win32
17873 2004-08-19 19:39  pbartok
17875         * XplatUIX11.cs:
17876           - Updated code to match new HandleData.DeviceContext type
17878 2004-08-19 19:38  pbartok
17880         * HandleData.cs:
17881           - Made DeviceContext a generic object to allow usage from various
17882           drivers
17883           - Added support for queueing Windows messages
17885 2004-08-19 19:37  pbartok
17887         * XplatUIWin32.cs:
17888           - Added generation of MouseEnter, MouseLeave and MouseHover events
17889           - Added cleanup on EndPaint
17891 2004-08-19 19:17  pbartok
17893         * Control.cs:
17894           - Added handling of WM_MOUSEHOVER
17895           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
17896           code
17898 2004-08-19 18:55  jordi
17900         * ThemeGtk.cs: fixes button order
17902 2004-08-19 18:12  jordi
17904         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
17906 2004-08-19 17:09  pbartok
17908         * Control.cs:
17909           - Added Right property
17910           - Added RightToLeft property
17912 2004-08-19 16:27  jordi
17914         * ThemeGtk.cs: experimental GTK theme support
17916 2004-08-19 16:26  jordi
17918         * ITheme.cs, Theme.cs: move themes from an interface to a class
17920 2004-08-19 16:25  jordi
17922         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
17923           theme enhancaments
17925 2004-08-19 16:04  pbartok
17927         * XplatUIX11.cs:
17928           - Added colormap basics
17929           - Added a way to re-initialize with a different display handle
17930           - Fixed setting of the window background color
17931           - Added various X11 imports related to colors and colormaps
17933 2004-08-19 15:51  pbartok
17935         * X11Structs.cs:
17936           - Removed packing hints (Paolo suggested this a while back)
17937           - fixed colormap type
17938           - Added default Atom types
17939           - Added Screen and color structs and enums
17941 2004-08-19 15:39  pbartok
17943         * ImageList.cs:
17944           - Added missing Draw() method
17945           - Added missing RecreateHandle event
17947 2004-08-19 15:30  pbartok
17949         * Form.cs:
17950           - Added handling of WM_CLOSE
17952 2004-08-18 13:16  jordi
17954         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
17955           a table
17957 2004-08-18 09:56  jordi
17959         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
17961 2004-08-17 15:31  ravindra
17963         * SWF.csproj: Updated project.
17965 2004-08-17 15:25  pbartok
17967         * Control.cs:
17968           - Drawing improvement; don't call UpdateBounds if we are not visible
17969             (or have been minimized)
17971 2004-08-17 15:24  pbartok
17973         * XplatUIWin32.cs:
17974           - Finished IsVisible
17975           - Added Win32GetWindowPlacement
17977 2004-08-17 15:08  jackson
17979         * Panel.cs: Initial checkin of the Panel
17981 2004-08-17 14:25  pbartok
17983         * Control.cs:
17984           - Fixed broken handling of default window sizes
17986 2004-08-17 13:29  jackson
17988         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
17989           has a large startup time.
17991 2004-08-17 10:25  jackson
17993         * HandleData.cs: union areas properly
17995 2004-08-17 10:12  jackson
17997         * HandleData.cs: union areas properly
17999 2004-08-16 20:00  ravindra
18001         * ToolBar.cs, ToolBarButton.cs: Added attributes.
18003 2004-08-16 18:48  ravindra
18005         * ToolBar.cs: Added attributes.
18007 2004-08-16 17:17  ravindra
18009         * SWF.csproj: Updated project.
18011 2004-08-16 17:16  jackson
18013         * XplatUIX11.cs: Check for more expose events before sending a
18014           WM_PAINT so they can all be grouped together. This makes dragging a
18015           window across another window redraw in a sane way.
18017 2004-08-16 15:47  pbartok
18019         * Control.cs:
18020           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
18021             support OnMouseEnter/Leave()
18022           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
18023             exposure handling
18025 2004-08-16 15:46  pbartok
18027         * XplatUIStructs.cs, XplatUIX11.cs:
18028           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
18029           OnMouseEnter/Leave()
18031 2004-08-16 15:34  jackson
18033         * XplatUIX11.cs: Group multiple expose events in HandleData, make
18034           sure messages get the message field set to WM_NULL if they are not
18035           handled.
18037 2004-08-16 15:24  jackson
18039         * HandleData.cs: HandleData is used for storing message information
18040           for window handles
18042 2004-08-15 17:23  ravindra
18044         * ColorDepth.cs: Added attribute.
18046 2004-08-15 17:23  ravindra
18048         * SWF.csproj: Updated project for ToolBar Control.
18050 2004-08-15 17:20  ravindra
18052         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
18053           control and also dos2unix format.
18055 2004-08-15 17:13  ravindra
18057         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
18058           ToolBarButtonClickEventArgs.cs,
18059           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
18060           ToolBarTextAlign.cs: First Implementation of ToolBar control.
18062 2004-08-15 15:31  pbartok
18064         * ButtonBase.cs:
18065           - First (mostly) working version
18067 2004-08-13 16:15  pbartok
18069         * Control.cs:
18070           - Fixed Anchor default
18072 2004-08-13 15:43  pbartok
18074         * Control.cs:
18075           - Changed GetCursorPos signature
18077 2004-08-13 15:42  pbartok
18079         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
18080           - Changed signature for GetCursorPos
18082 2004-08-13 15:25  pbartok
18084         * XplatUIX11.cs:
18085           - Cleanup
18086           - Fixed resizing/exposure handling
18088 2004-08-13 15:22  jordi
18090         * ThemeWin32Classic.cs: removes redundant code and fixes issues
18091           with tickposition
18093 2004-08-13 14:55  jordi
18095         * TrackBar.cs: change from wndproc to events
18097 2004-08-13 13:00  jordi
18099         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18100           XplatUIX11.cs: implements PointToClient (ScreenToClient)
18102 2004-08-13 12:53  pbartok
18104         * XplatUIWin32.cs:
18105           - Changed GetWindowPos to also provide client area size
18106           - Fixed broken prototypes for several win32 functions
18108 2004-08-13 12:53  pbartok
18110         * XplatUI.cs, XplatUIDriver.cs:
18111           - Changed GetWindowPos to also provide client area size
18113 2004-08-13 12:52  pbartok
18115         * XplatUIX11.cs:
18116           - Added generation of WM_POSCHANGED
18117           - Changed GetWindowPos to also provide client area size
18119 2004-08-13 12:52  pbartok
18121         * Control.cs:
18122           - Added Dispose() and destructor
18123           - Fixed resizing and bounds calculation
18124           - Fixed Layout
18125           - Added memory savings for invisible windows
18127 2004-08-13 12:46  jordi
18129         * TrackBar.cs: adds timer and grap window
18131 2004-08-13 10:25  jackson
18133         * Timer.cs: SWF Timer
18135 2004-08-12 16:59  pbartok
18137         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18138           - Implemented method to get current mouse position
18140 2004-08-12 14:29  jordi
18142         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
18143           enhancement, fix mouse problems, highli thumb, etc
18145 2004-08-12 13:31  pbartok
18147         * Control.cs:
18148           - Fixed Anchoring bugs
18150 2004-08-12 13:01  jackson
18152         * StatusBar.cs: Don't forget things
18154 2004-08-12 12:54  jackson
18156         * ThemeWin32Classic.cs: Handle owner draw status bars
18158 2004-08-12 12:54  jackson
18160         * StatusBar.cs: Implement missing properties, events, and methods.
18161           Handle mouse clicking
18163 2004-08-12 10:19  jackson
18165         * StatusBarPanelClickEventArgs.cs,
18166           StatusBarPanelClickEventHandler.cs: Classes for handling status
18167           bar panel click events
18169 2004-08-12 10:10  jackson
18171         * Control.cs: Add missing properties
18173 2004-08-12 09:46  pbartok
18175         * BindingsManagerBase.cs:
18176           - Name changed to BindingManagerBase.cs
18178 2004-08-12 09:25  jordi
18180         * ScrollableControl.cs: calls ctrlbase instead of exeception
18182 2004-08-11 16:28  pbartok
18184         * InputLanguageChangingEventArgs.cs:
18185           - Never check in before compiling. Fixes the last check-in
18187 2004-08-11 16:26  pbartok
18189         * InputLanguageChangingEventArgs.cs:
18190           - More signature fixes
18192 2004-08-11 16:20  pbartok
18194         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
18195           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
18196           ImageListStreamer.cs, InputLanguage.cs,
18197           InputLanguageChangedEventArgs.cs,
18198           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
18199           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
18200           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
18201           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18202           - Signature fixes
18204 2004-08-11 16:16  pbartok
18206         * Application.cs:
18207           - Fixed Signature
18208           - Added .Net 1.1 method
18210 2004-08-11 15:25  pbartok
18212         * SWF.csproj:
18213           - Fixed BindingManagerBase.cs filename
18215 2004-08-11 15:22  pbartok
18217         * BindingManagerBase.cs:
18218           - Was checked in with wrong filename
18220 2004-08-11 14:50  pbartok
18222         * SWF.csproj:
18223           - Updated
18225 2004-08-11 13:41  jordi
18227         * XplatUIWin32.cs: Fixes ClientRect
18229 2004-08-11 13:19  pbartok
18231         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18232           XplatUIX11.cs:
18233           - We had SetWindowPos and MoveWindow to set window positions and
18234             size, removed MoveWindow. We have GetWindowPos, so it made sense to
18235             keep SetWindowPos as matching counterpart
18236           - Added some X11 sanity checking
18238 2004-08-11 12:59  pbartok
18240         * Control.cs:
18241           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
18242             (It seems that SetBounds is just a front for SetBoundsCore and
18243              SetBoundsCore updates the underlying window system and
18244              UpdateBounds is responsible for updating the variables associated
18245              with the Control and sending the events)
18246           - Major cleanup of Size handling; we now have two sizes, client_size
18247             and bounds. Bounds defines the window with decorations, client_size
18248             without them.
18250 2004-08-11 12:55  pbartok
18252         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18253           - Added method to calculate difference between decorated window and
18254             raw client area
18256 2004-08-11 12:54  pbartok
18258         * Label.cs:
18259           - Forcing redraw on resize
18261 2004-08-11 11:43  pbartok
18263         * ImageList.cs:
18264           - Removed disposing of the actual images when the list is disposed
18266 2004-08-11 09:13  pbartok
18268         * Control.cs:
18269           - Now properly reparents windows
18271 2004-08-11 08:37  pbartok
18273         * Control.cs:
18274           - Duh!
18276 2004-08-11 07:47  pbartok
18278         * Control.cs:
18279           - Rewrote the collection stuff. Might not be as fast now, not
18280             keeping the number of children around and accessible directly, but
18281             it's more straightforward
18283 2004-08-11 07:44  pbartok
18285         * AccessibleObject.cs:
18286           - Fixed to match ControlCollection rewrite
18288 2004-08-11 07:43  pbartok
18290         * ImageList.cs:
18291           - Added missing creation of the collection list
18293 2004-08-10 20:08  jackson
18295         * StatusBar.cs: Get the paint message from WndProc
18297 2004-08-10 19:31  jackson
18299         * ThemeWin32Classic.cs: Create Brushes as little as possible
18301 2004-08-10 19:20  jackson
18303         * UICues.cs: Add Flags attribute
18305 2004-08-10 19:19  jackson
18307         * StatusBarPanel.cs: Signature cleanup
18309 2004-08-10 19:10  jackson
18311         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
18312           Initial implementation of status bar item drawing
18314 2004-08-10 17:27  jordi
18316         * TrackBar.cs: add missing methods, properties, and restructure to
18317           hide extra ones
18319 2004-08-10 16:24  jackson
18321         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
18322           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
18323           attribute
18325 2004-08-10 13:21  jordi
18327         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
18328           enhancements and standarize on win colors defaults
18330 2004-08-10 12:52  jackson
18332         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
18333           ThemeWin32Classic.cs: Implement DrawItem functionality
18335 2004-08-10 12:47  jordi
18337         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
18339 2004-08-10 12:32  jordi
18341         * Control.cs: throw ontextchange event
18343 2004-08-10 11:43  pbartok
18345         * Control.cs:
18346           - Added more to the still unfinished Dock/Anchor layout code
18348 2004-08-10 11:39  pbartok
18350         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
18351           - Added GetWindowPos method
18353 2004-08-10 11:36  pbartok
18355         * XplatUIWin32.cs:
18356           - Implemented several methods
18358 2004-08-10 09:47  jackson
18360         * TrackBar.cs: Allow control to handle buffering
18362 2004-08-10 09:41  jackson
18364         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
18366 2004-08-10 09:24  jackson
18368         * Label.cs, LinkLabel.cs: Let Control handle buffering.
18370 2004-08-10 09:09  jackson
18372         * StatusBar.cs: Let Control handle all the buffering.
18374 2004-08-10 09:08  jackson
18376         * Control.cs: Control will now handle the buffering code, so each
18377           control does not have to implement this.
18379 2004-08-10 08:34  jackson
18381         * XplatUIDriver.cs: Use default colors from the theme
18383 2004-08-09 17:12  pbartok
18385         * ImageList.cs:
18386           - Fixed several bugs Ravindra pointed out
18388 2004-08-09 16:11  pbartok
18390         * Control.cs:
18391           - Added incomplete dock layout code
18392           - Added support for mouse wheel
18394 2004-08-09 16:09  pbartok
18396         * XplatUIX11.cs:
18397           - Added handling for middle and right mousebutton
18398           - Added handling for mouse wheel
18399           - Added handling for key state and mouse state and position
18400           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
18401           messages
18403 2004-08-09 15:40  jackson
18405         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
18406           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
18407           checkin
18409 2004-08-09 15:37  jackson
18411         * StatusBar.cs: Initial implementation of StatusBar
18413 2004-08-09 15:36  jackson
18415         * ITheme.cs: Add support for drawing status bar and getting status
18416           bar item sizes
18418 2004-08-09 15:35  pbartok
18420         * MouseButtons.cs:
18421           - Fixed values
18423 2004-08-09 15:34  jackson
18425         * ThemeWin32Classic.cs: Add support for drawing status bar and get
18426           status bar item sizes
18428 2004-08-09 15:21  jackson
18430         * ThemeWin32Classic.cs: Use known colors for default control
18431           colours
18433 2004-08-09 15:12  jackson
18435         * ThemeWin32Classic.cs: Make the default font static, it is static
18436           in control so this doesn't change functionality and creating fonts
18437           is sloooooow.
18439 2004-08-09 14:56  pbartok
18441         * X11Structs.cs:
18442           - Added GrabMode enum
18444 2004-08-09 14:55  pbartok
18446         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18447           - Removed Run method, was only required for initial development
18449 2004-08-09 14:51  pbartok
18451         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18452           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
18453           capture
18455 2004-08-09 13:48  pbartok
18457         * XplatUIX11.cs:
18458           - Fixed default sizing for child windows
18460 2004-08-09 12:56  pbartok
18462         * XplatUIX11.cs:
18463           - Added generation of WM_DESTROY message
18464           - Added handling of window manager induced shutdown
18466 2004-08-09 11:31  jackson
18468         * ThemeWin32Classic.cs: New names for control properties
18470 2004-08-09 11:25  jackson
18472         * Control.cs: Use new color names
18474 2004-08-09 11:02  jackson
18476         * XplatUI.cs: Get default window properties from the theme
18478 2004-08-09 11:01  jackson
18480         * ITheme.cs: The theme engine now controls default window
18481           properties
18483 2004-08-09 11:00  jackson
18485         * ThemeWin32Classic.cs: Add default window color properties
18487 2004-08-09 10:17  jackson
18489         * ThemeWin32Classic.cs: Use correct default back color
18491 2004-08-09 10:05  jackson
18493         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
18494           the theme now.
18496 2004-08-09 09:56  jackson
18498         * XplatUI.cs: Remove defaults, these are handled by the theme now.
18500 2004-08-09 09:54  jackson
18502         * Control.cs: Get default properties from the theme.
18504 2004-08-09 09:53  jackson
18506         * ITheme.cs: Themes now handle default control properties
18508 2004-08-09 09:53  jackson
18510         * ThemeWin32Classic.cs: Themes now handle default control
18511           properties so coloring will be consistent
18513 2004-08-08 16:54  jordi
18515         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
18517 2004-08-08 15:08  jordi
18519         * XplatUIX11.cs: fixes keyboard crash
18521 2004-08-08 13:47  jordi
18523         * Label.cs: add cvs header info
18525 2004-08-08 12:09  jackson
18527         * ThemeWin32Classic.cs: Add pen_buttonface
18529 2004-08-08 11:52  jordi
18531         * Label.cs, LinkLabel.cs: [no log message]
18533 2004-08-08 11:34  jordi
18535         * ThemeWin32Classic.cs: Use Windows Standard Colours
18537 2004-08-07 17:32  jordi
18539         * TrackBar.cs: throw exceptions of invalid enums values
18541 2004-08-07 17:31  jordi
18543         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
18544           draw method name
18546 2004-08-07 16:56  jackson
18548         * HorizontalAlignment.cs: Initial checkin
18550 2004-08-07 13:16  jordi
18552         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
18553           methods
18555 2004-08-07 13:05  jordi
18557         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
18558           GetSysColor defines
18560 2004-08-06 18:01  pbartok
18562         * ThemeWin32Classic.cs:
18563           - Fixed some rounding issues with float/int
18565 2004-08-06 18:00  jackson
18567         * DockStyle.cs, AnchorStyles.cs:
18569                   Add flags and serializable attributes.
18571 2004-08-06 17:46  pbartok
18573         * XplatUIX11.cs:
18574           - Implemented GetParent
18576 2004-08-06 17:18  pbartok
18578         * TrackBar.cs:
18579           - Fixed some rounding issues with float/int
18581 2004-08-06 17:17  pbartok
18583         * X11Structs.cs, XplatUIX11.cs:
18584           - Fixed Refresh and Invalidate
18586 2004-08-06 15:30  pbartok
18588         * Control.cs, X11Structs.cs, XplatUIX11.cs:
18589           - Fixed recursive loop when resizing
18590           - Improved/fixed redrawing on expose messages
18592 2004-08-06 09:53  jordi
18594         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
18595           keyboard navigation
18597 2004-08-06 08:02  pbartok
18599         * X11Structs.cs, XplatUIX11.cs:
18600           - Fixed reparenting
18601           - Fixed window border creation
18603 2004-08-05 15:38  pbartok
18605         * XplatUIX11.cs:
18606           - Attempted fix for reparenting problems
18608 2004-08-04 15:14  pbartok
18610         * Control.cs:
18611           - Fixed Invalidation bug (calculated wrong client area)
18612           - Added ClientSize setter
18614 2004-08-04 15:13  pbartok
18616         * Form.cs:
18617           - Added AutoScale properties
18619 2004-08-04 15:13  pbartok
18621         * SWF.csproj:
18622           - Added latest files
18624 2004-08-04 14:11  pbartok
18626         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18627           XplatUIX11.cs:
18628           - Added Invalidate handling
18630 2004-08-03 17:09  jordi
18632         * XplatUIDriver.cs: fixes spelling mistake
18634 2004-07-27 09:53  jordi
18636         * TrackBar.cs: fixes trackbar events, def classname, methods
18637           signature
18639 2004-07-27 09:29  jordi
18641         * ScrollBar.cs: fixes scrollbar events
18643 2004-07-27 04:38  jordi
18645         * Control.cs: changes to be able to run winforms samples
18647 2004-07-26 11:42  jordi
18649         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
18650           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
18652 2004-07-26 05:41  jordi
18654         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
18655           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
18656           implementation
18658 2004-07-22 09:22  jordi
18660         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
18661           check link overlapping, implement events, and fixes
18663 2004-07-21 10:28  jordi
18665         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
18667 2004-07-21 10:19  jordi
18669         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
18670           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
18671           LinkLabelLinkClickedEventArgs.cs,
18672           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
18673           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
18674           implementation
18676 2004-07-19 13:09  jordi
18678         * Control.cs, Label.cs: label control re-written: added missing
18679           functionlity, events, and properties
18681 2004-07-19 10:49  jordi
18683         * Control.cs: fixes SetBounds logic
18685 2004-07-19 01:29  jordi
18687         * Control.cs: Call RefreshWindow only if the window has created
18689 2004-07-15 14:05  pbartok
18691         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
18692           - Implemented ImageList and ImageList.ImageCollection classes
18693           - Added ColorDepth enumeration
18694           - Updated SWF VS.Net project
18696 2004-07-15 11:06  jordi
18698         * XplatUIStructs.cs: added MsgButons enum
18700 2004-07-15 11:03  jordi
18702         * Control.cs: added basic mouse handeling events
18704 2004-07-15 03:38  jordi
18706         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
18707           Vertical TrackBar control implementation
18709 2004-07-13 09:33  jordi
18711         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
18713 2004-07-13 09:31  jordi
18715         * Control.cs, Form.cs: commit: new properties and fixes form size
18716           problems
18718 2004-07-09 14:13  miguel
18720         * ProgressBar.cs: Spelling
18722 2004-07-09 11:25  pbartok
18724         * ProgressBar.cs:
18725           - Removed usage of Rectangle for drawing. Miguel pointed out it's
18726           faster
18728 2004-07-09 11:17  miguel
18730         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
18732                 * ProgressBar.cs: Fixed spelling for `block'
18734                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
18735                 style guidelines.
18737                 Avoid using the += on rect.X, that exposed a bug in the compiler.
18739 2004-07-08 23:21  pbartok
18741         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
18742           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
18743           BaseCollection.cs, Binding.cs, BindingContext.cs,
18744           BindingMemberInfo.cs, BindingsCollection.cs,
18745           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
18746           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
18747           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
18748           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
18749           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
18750           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
18751           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
18752           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
18753           FrameStyle.cs, GiveFeedbackEventArgs.cs,
18754           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
18755           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
18756           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
18757           InputLanguageChangedEventArgs.cs,
18758           InputLanguageChangedEventHandler.cs,
18759           InputLanguageChangingEventArgs.cs,
18760           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
18761           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
18762           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
18763           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
18764           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
18765           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
18766           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
18767           QueryAccessibilityHelpEventArgs.cs,
18768           QueryAccessibilityHelpEventHandler.cs,
18769           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
18770           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
18771           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
18772           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
18773           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
18774           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
18775           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
18776           XplatUIX11.cs, lang.cs:
18777           - Initial check-in