* TreeView.cs: Use the currently highlighted node for the
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2006-11-10  Jackson Harper  <jackson@ximian.com>
2
3         * TreeView.cs: Use the currently highlighted node for the
4         BeforeSelect event.
5
6 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
7
8         * Button.cs: only perform click when button is Selectable (so as 
9         not to activate default buttons when they're disabled)
10         
11         * Control.cs: Rewrite of the SelectNextControl and related 
12         methods. HandleClick now selects next control if the current one
13         is being disabled.
14         
15         * Form.cs: OnActivated selects next active control only if Load 
16         has already occurred. If Load hasn't run, there's no point in 
17         selecting here, Load might change the state of controls.
18         
19         * FocusTest.cs: Tests marked as working again for these fixes
20
21 2006-11-10  Chris Toshok  <toshok@ximian.com>
22
23         * XplatUIX11.cs: a couple of fixes.
24
25         - use XInternAtoms with almost all the atoms we need to register,
26         instead of many, many calls to XInternAtom.  should help a bit on
27         startup time, at the expense of making the code look a little
28         worse.
29
30         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
31         isn't reparented (which seems to be a clue that we're running fon
32         compiz) and they have an Owner form.  This fixes the tool windows
33         in paint.net when running under compiz.
34
35         - when setting the opacity of a window, support both the case
36         where the window has been reparented and also when it hasn't been.
37         Since compiz/beryl doesn't seem to reparent windows, and these are
38         the only window managers which support translucency, I'm not sure
39         why we need the hwnd.reparented case at all.. but leave it in.
40         now we get translucent windows in paint.net under compiz/beryl.
41
42 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
43
44         * FileDialog.cs: Always return the value for FilterIndex that
45           was set. Internally convert it to values that make sense.
46
47 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
48         
49         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
50
51 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
52
53         * Toolbar.cs: Change default value of DropDownArrows to true, the 
54         signature still using false to make it compatible with MS but the 
55         initial value is true. Fixes #79855.
56
57 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
58
59         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
60           only available on Linux.
61
62 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
63
64         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
65         reduce number of calls to redraw method during toolbar creation.
66
67 2006-11-09  Mike Kestner  <mkestner@novell.com>
68
69         * ListView.cs : raise SelectedIndexChanged when an item is selected
70         programmatically via the Item.Selected property.  Gert's nice 
71         ListViewSelectedIndexChanged test fixture now runs clean.
72
73 2006-11-09  Mike Kestner  <mkestner@novell.com>
74
75         * ListView.cs : raise SelectedIndexChanged when a selected item is
76         removed from the item collection using Remove or RemoveAt.
77
78 2006-11-09  Mike Kestner  <mkestner@novell.com>
79
80         * ListView.cs : raise SelectedIndexChanged once per selected item
81         for compat with MS.  Fixes #79849+.
82
83 2006-11-09  Chris Toshok  <toshok@ximian.com>
84
85         * TabControl.cs: initialize row_count to 0, and set it to 1 when
86         we need to (if we have any tab pages).  Fixes unit test.
87
88 2006-11-09  Chris Toshok  <toshok@ximian.com>
89
90         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
91         width is 0, not 3.  Fixes a unit test.
92
93 2006-11-09  Mike Kestner  <mkestner@novell.com>
94
95         * ListView.cs : use Implicit scrollbars so that focus isn't 
96         stolen from the listview when they are clicked. Fixes #79850.
97
98 2006-11-09  Chris Toshok  <toshok@ximian.com>
99
100         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
101         have a root item.  Fixes #79879.
102
103 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
104
105         * FileDialog.cs:
106           - Fix ToString ()
107           - An ArgumentException is now thrown if a wrong filter
108             is applied (matches ms). The previous filter doesn't change
109             anymore if an exception is thrown.
110           - Changing the FileName property also affects FileNames
111         * ColorDialog.cs: The length of the CustomColors array is always
112           16. It doesn't matter if we use a smaller array or null to update
113           or change the custom colors property.
114         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
115           for RootFolder if we get a undefined value.
116
117 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
118
119         * StatusBarPanel.cs: 
120         - Width is set to MinWidth if Width is smaller than
121         MinWidth. Fixes #79842.
122         - MinWidth now always overrides Width (MSDN says MinWidth
123         is set to Width when AutoSize = None, but they do not 
124         behave like that).
125         - Style has now the the correct default value.
126         
127 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
128  
129         * TrackBar.cs: 
130         - The control is completely invalidated on 
131         Got/LostFocus to draw the focus rectangle correctly.
132         - When AutoSize then height is always 45 (width for 
133         vertical controls).
134         
135         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
136         on the mouse when moved and it doesn't move when grabbed
137         until the mouse moves as well. Also fixed some wrong 
138         calculations when clicking on the thumb (control thought
139         click was outside of thumb and didn't grab it).
140         Fixes some of the issues in #79718.
141
142 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
143
144         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
145
146 2006-11-08  Chris Toshok  <toshok@ximian.com>
147
148         * PropertyGridView.cs: only call ToggleValue if the item is not
149         readonly.
150
151 2006-11-08  Jackson Harper  <jackson@ximian.com>
152
153         * TextBoxBase.cs: The RichTextBox and textbox have very different
154         word selection methods.  Implement the textbox's simple word
155         selection here, and let the RichTextBox override and provide it's
156         own.
157         - Don't do extra selection on mouseup
158         * RichTextBox.cs: Use the documents word selection algorithm, I
159         think ideally, this function will be pulled into the
160         RichTextBox.cs code someday.
161
162 2006-11-08  Chris Toshok  <toshok@ximian.com>
163
164         * RootGridEntry.cs: new class to represent GridItemType.Root.
165
166         * CategoryGridEntry.cs: reformat, and add boilerplate.
167         
168         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
169         returns the UI parent anyway, and we need special handling to
170         implement the GetTarget method in the face of it.  Also, implement
171         Select().
172
173         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
174         a root grid item, and use that instead of PropertyGrid.grid_items.
175         Also, make use of TypeConverters (and add limitted support for
176         ICustomTypeDescriptors) when initially populating the grid.
177         Arrays now show up more or less properly.
178
179 2006-11-08  Chris Toshok  <toshok@ximian.com>
180
181         * Application.cs: set the modal dialog to non modal after we close
182         it.  Fixes bug #79866.
183
184 2006-11-08  Jackson Harper  <jackson@ximian.com>
185
186         * TextControl.cs: When combining lines carry over the line end
187         style from the end line.
188         - Invalidate the selected area when setting it, if it is visible.
189         * TextBoxBase.cs: Only rich text box can do full line selects.
190         - Make sure to set the cursor position when there is a click,
191         otherwise two clicks in separate areas could cause a large chunk
192         to be selected.
193
194 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
195
196         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
197         Fixes #79863.
198
199 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
200
201         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
202         time. Remove tooltips when ToolButton click events.  Fixes #79856.
203
204 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
205
206         * MenuAPI.cs: Ignore right click for menu actions and fixes
207         menu border when clicked.  Fixes #79846.
208
209 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
210
211         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
212         MouseState after create wParam for message, this fixes mouse button 
213         equal none in mouse up events.
214         
215 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
216
217         * Control.cs : Focus() now calls Select to set the Container's
218         Active Control and to give it focus. To avoid infinite recursion
219         (because ActiveControl also calls Focus at one point), a check 
220         is made in Focus with the help of a new internal variable
221         is_focusing.
222
223 2006-11-07  Mike Kestner  <mkestner@novell.com>
224
225         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
226         if there's a selection.  Fixes #79849.
227
228 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
229
230         * PropertyGrid.cs: Avoid fixed height of help description label.
231         Fixes part of bug #79829.
232
233 2006-11-07  Chris Toshok  <toshok@ximian.com>
234
235         * XplatUIX11.cs: fix #79790 again, by using the
236         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
237
238 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
239
240         * ToolBar.cs: Fix left click checking.
241
242 2006-11-07  Chris Toshok  <toshok@ximian.com>
243
244         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
245
246 2006-11-07  Chris Toshok  <toshok@ximian.com>
247
248         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
249         PropertyManager unit tests.
250
251         * PropertyManager.cs: make property_name internal.
252
253 2006-11-07  Chris Toshok  <toshok@ximian.com>
254
255         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
256         pass a unit test.  Also, don't set image_index to anything in
257         response to setting the ImageList property.
258
259 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
260
261         * ToolBar.cs: Ignore click events when mouse button is not a
262         left button, only accepts other button for dropdown menus.  
263         Fixes #79854.
264
265 2006-11-07  Chris Toshok  <toshok@ximian.com>
266
267         * DataGrid.cs: make the back and parent row buttons a little less
268         ugly.
269
270 2006-11-07  Jackson Harper  <jackson@ximian.com>
271
272         * TextBoxBase.cs: When converting to Text don't put line breaks in
273         for soft line breaks.
274         * TextControl.cs: There is an initial "fake" line in the document,
275         this is now a soft break line, so that an extra line feed doesn't
276         get added to the end of documents.
277
278 2006-11-07  Chris Toshok  <toshok@ximian.com>
279
280         [ fix bug #79778 ]
281         
282         * CurrencyManager.cs: if the list is readonly, don't bother
283         checking if IBindingList.AllowNew is true.
284
285         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
286         for non-DataRowView datasources..  or rather, make it not crash.
287         (DataGridPaintRelationRow): make sure we limit the row painting to
288         the area not covered by the row header, and make our cell width at
289         least large enough to cover the relation area.  This allows grids
290         that have relations but no rows to render correctly.
291         (DataGridPaintRowContents): same type of changes here.
292         (SetDataSource): move back to always calling
293         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
294         navigating back through relations.
295         (HitTest): handle the case where we have no cells but have
296         relations.  Right now we generate a hit in cell 0 of whatever the
297         row is, not sure if this is strictly correct, but it works for our
298         purposes.
299         
300         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
301         bother doing anything.
302
303 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
304
305         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
306         early version of StatusStrip.  Not responsible for eaten
307         application or firstborn children.
308
309 2006-11-06  Chris Toshok  <toshok@ximian.com>
310
311         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
312         call GetTabRect with a -1 index.  Fixes #79847.
313
314 2006-11-06  Jackson Harper  <jackson@ximian.com>
315
316         * TreeNodeCollection.cs: Update scrollbars after clearing.
317
318 2006-11-06  Chris Toshok  <toshok@ximian.com>
319
320         * NumericUpDown.cs: fix the ToString method for some unit test
321         love.
322
323 2006-11-06  Chris Toshok  <toshok@ximian.com>
324
325         * PropertyGrid.cs:
326         - set the initial SelectedGridItem if we can.
327
328         - Exclude non-mergable properties only if we're merging > 1
329         object.  Merging 1 object isn't really merging, obviously.
330
331         - Handle PropertySort.NoSort just like Alphabetical, which is
332         wrong of course, but at least gets things on the screen.
333         
334         * PropertyGridView.cs:
335         - Add method "FindFirstItem" which finds the first property grid
336         item, so we can select it by default.
337
338         - make use of GridEntry.CanResetValue.
339
340         - Don't call RedrawBelowItemOnExpansion here anymore, the
341         individual GridEntry's will do that.
342
343         - Remove the ITypeDescriptorContextImpl internal class.
344         
345         * GridEntry.cs:
346         - this class needs to implement ITypeDescriptorContext, as it's
347         what MS's PropertyDescriptorGridEntry does, which means we can
348         remove the ITypeDescriptorContextImpl internal class from
349         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
350
351         - keep a reference to our PropertyGridView, and move the call to
352         RedrawBelowItemOnExpansion here from PGV.  This means
353         programmaticly setting Expanded actually does something visible.
354
355         - add a CanResetValue() function which takes into account our
356         possibly multiple "selected_objects" in the merged case.  Shifting
357         PropertyGridView to use this method fixes another unreported
358         crasher found running the test for #79829.
359
360         - when Top or Bounds is updated, make sure the PropertyGridTextBox
361         is updated to reflect this.
362
363         * CategoryGridEntry.cs: the ctor takes the PGV now.
364         
365 2006-11-06  Jackson Harper  <jackson@ximian.com>
366
367         * TextControl.cs: These are 1 based.
368         * TextBoxBase.cs: When setting the selected text, don't change the
369         selected text tags, this is done by ReplaceText, just position the
370         cursor at the end of the new text.
371
372 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
373
374         * ListView.cs: Allow label edit only when, when LabelEdit is
375           set to true.
376
377 2006-11-06  Jackson Harper  <jackson@ximian.com>
378
379         * TextControl.cs: If a suitable wrapping position isn't found,
380         just wrap right in the middle of a word.
381
382 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
383
384         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
385           bug #79820.
386
387 2006-11-06  Jackson Harper  <jackson@ximian.com>
388
389         * TreeView.cs: Can't use the VisibleCount property when setting
390         scrollbar heights, because this doesn't take into account whether
391         or not the horz scrollbar just came visible.
392
393 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
394
395         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
396         activated.  Fixes #79369, #79832.
397
398 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
399
400         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
401           had to remove support for links that point to a directory. FileInfo
402           returns no usefull information (means, the directory they point to)
403           for such links. Replaced some empty string ("") with String.Empty.
404
405 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
406
407         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
408         NullReferenceException when attempting to remove node that is not in
409         collection. Throw NullReferenceException when null is passed to 
410         Remove. Allow first element of the collection to be removed. Fixes
411         bug #79831.  In GetEnumerator ().Current return null if positioned 
412         before the first element of the collection. In GetEnumerator ().Reset,
413         position before first element of the collection.
414
415 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
416
417         * PropertyGrid.cs: To match MS, remove default title and description
418         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
419         buttons.
420
421 2006-11-04  Chris Toshok  <toshok@ximian.com>
422
423         * Theme.cs: add a Clamp method, just for kicks.
424
425         * ThemeWin32Classic.cs: clamp all color components to [0..255].
426
427 2006-11-04  Chris Toshok  <toshok@ximian.com>
428
429         * Form.cs: if the form isn't visible, Close() does nothing.
430
431 2006-11-03  Chris Toshok  <toshok@ximian.com>
432
433         * Form.cs (Close): if the form is modal, don't Dispose of it, only
434         Hide it.
435         (WndProc): don't Dispose after handling the WM_CLOSE message.
436
437         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
438         them as such, instead of using casts from Control to Form.  Also,
439         don't Dispose of the modal dialog when we fall out of the loop -
440         Close() it instead.
441
442         fixes bug #79813.
443
444 2006-11-03  Chris Toshok  <toshok@ximian.com>
445
446         * Control.cs (Dispose): only go through the dispose thing if we're
447         @disposing, and we haven't already been disposed.  Fixes bug
448         #79814.
449
450         * Form.cs: no reason to call "base.Dispose()" here instead of
451         "Dispose()".
452
453 2006-11-03  Mike Kestner  <mkestner@novell.com>
454
455         * ComboBox.cs : use ToString instead of casts in AddItem for
456         sorting functionality.  Fixes #79812.
457
458 2006-11-03  Chris Toshok  <toshok@ximian.com>
459
460         * Application.cs: pave the way for actually using the thread
461         exception dialog.  it's ifdefed out at the moment.
462
463 2006-11-03  Chris Toshok  <toshok@ximian.com>
464
465         * ThreadExceptionDialog.cs: until we get a better layout, actually
466         hide the details textbox and label when we shouldn't see them.
467
468 2006-11-03  Jackson Harper  <jackson@ximian.com>
469
470         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
471         multiline textboxes anymore.  This method also determines the
472         width/height of a textboxes canvas area.
473         - Sorta a revert of the last patch.  For multiline just position
474         the controls, then bail.  This way the scrollbar width won't be
475         altered.
476
477 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
478
479         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
480         it dont need.  Fixes #79537.
481
482 2006-11-02  Jackson Harper  <jackson@ximian.com>
483
484         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
485         send the status after firing the DndOver event.
486
487 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
488
489         * TrackBar.cs: Now orientation only switches height / width if
490         the control's handle is created (Win32 does it like this). Also 
491         fixed a typo in ToString() for a test to pass, changed the 
492         exception thrown in set_LargeChange and set_SmallChange to 
493         match Win32 behaviour, and added TrackBar tests to the unit 
494         tests.
495
496 2006-11-02  Chris Toshok  <toshok@ximian.com>
497
498         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
499         not _NET_WM_STATE_NO_TASKBAR.
500
501 2006-11-02  Jackson Harper  <jackson@ximian.com>
502
503         * TextControl.cs: Increment count by one, since in the update view
504         count - 1 is used.
505
506 2006-11-02  Jackson Harper  <jackson@ximian.com>
507
508         * TextBoxBase.cs: Use client rectangle not bounds for checking if
509         the mouse is in the client rectangle (duh).
510
511 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
512         
513         * TrackBar.cs: Fixed trackbar jumping around when clicking
514         on it - the trackbar was not detecting correctly at which
515         side of the thumb the click was done. (fixes #79718)
516
517 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
518
519         * ListBox.cs: scroll visible area when change SelectedIndex to
520         a non visible area.  Fixes #79481.
521
522 2006-11-01  Jackson Harper  <jackson@ximian.com>
523
524         * TextControl.cs: When replacing the selection move the selection
525         start/end/anchor to the end of the new text.
526
527 2006-11-01  Jackson Harper  <jackson@ximian.com>
528
529         * XplatUIWin32.cs: When setting the parent change the controls
530         visibility to it's visibility flag, not to it's old parents
531         visibility (.Visible walks the parent chain).
532
533 2006-11-01  Chris Toshok  <toshok@ximian.com>
534
535         * XplatUIX11.cs: revert the #79790 fix, as the simple.
536         XSetTransientForHint fix breaks paint .net's tool windows.  more
537         work needed for that one.
538
539 2006-11-01  Chris Toshok  <toshok@ximian.com>
540
541         * ScrollBar.cs: throw ArgumentException instead of Exception in
542         LargeChange/SmallChange setters.  fixes unit tests.
543
544 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
545
546         * ContainerControl.cs: reverted rev.67183 (which was itself
547         a reversion of rev.66853... eh).
548         
549         * Control.cs: Fixes Reflector hang by changing Focus() call
550         to what it was before rev.66643 (calling Select() here sets 
551         ActiveControl, which in some situations calls back Focus and 
552         eventually does a stack overflow). Temp fix.    
553         Changes to GetNextControl() to not look for children to select when
554         parent cannot be selectable (so it looks for siblings instead)  
555         
556 2006-10-31  Mike Kestner  <mkestner@novell.com>
557
558         * CheckedListBox.cs : off by one error in returned index from
559         ObjectCollection.Add.  Fixes #79758.
560
561 2006-10-31  Chris Toshok  <toshok@ximian.com>
562
563         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
564         calls for the textbox/spinner, to keep from recursing to the point
565         where we crash.  Fixes #79760.
566
567 2006-10-31  Chris Toshok  <toshok@ximian.com>
568
569         * ListControl.cs (set_SelectedValue): don't throw exceptions on
570         null/"" value, just return.  matches ms's behavior and fixes some
571         failing tests.
572
573 2006-10-31  Chris Toshok  <toshok@ximian.com>
574
575         * Control.cs (set_Capture): make a logic a little easier to
576         follow.
577
578         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
579         if it's being destroyed.  A necessary fix surely, but a bandaid
580         also, to fix the stuck capture problem in bug #78413.
581
582 2006-10-31  Chris Toshok  <toshok@ximian.com>
583
584         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
585         convention of clearing hwnd.ClientRect when we set the
586         width/height (so it'll be recalculated by Hwnd).
587
588 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
589
590         * ContainerControl.cs: reversed Contains check from
591         ActiveControl due to hanging problems. This fix
592         partly regresses #79667 (button does not have
593         initial focus), so this might be a symptom for 
594         a larger parenting problem (set_ActiveControl
595         is being called but the child control does
596         not have the parent set yet?)   
597         
598 2006-10-31  Mike Kestner  <mkestner@novell.com>
599
600         * MenuAPI.cs : fix keynav when menu is click activated.
601
602 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
603
604         * ToolStrip*: Version 0.2.
605
606         * MenuStrip.cs: Version 0.1.
607
608         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
609
610 2006-10-30  Chris Toshok  <toshok@ximian.com>
611
612         [ fixes the oversized notify icon issue in bug #79745 ]
613         
614         * NotifyIcon.cs: scale the icon down to the size we're given by
615         the XplatUI layer (this would be faster if we did it once instead
616         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
617         since it's never invoked.
618
619         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
620         pixels high by default, so let's hardcode our systray icon to that
621         size.  The SYSTEM_TRAY protocol should really have a way for
622         client apps to query for the correct icon size.. but oh well.  A
623         couple of patches to deal with the screwy client_window ==
624         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
625         instance, and also make sure we don't XSelectInput twice).
626
627 2006-10-30  Chris Toshok  <toshok@ximian.com>
628
629         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
630         recreating forms.  Control recreation is the bane of my existence.
631         Fix it in a way that keeps everyone happy.
632
633 2006-10-30  Chris Toshok  <toshok@ximian.com>
634
635         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
636         just non-CHILD ones.  otherwise sometimes scrollbars end up with
637         client_windows not being resized to the proper size (ReportBuilder
638         shows this extremely well).
639
640 2006-10-30  Chris Toshok  <toshok@ximian.com>
641
642         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
643         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
644         showing up in the gnome taskbar.  Fixes bug #79790.
645
646 2006-10-30  Chris Toshok  <toshok@ximian.com>
647
648         * ApplicationContext.cs: guard against a NRE.
649
650         * Application.cs: null out the old MainForm for the context, so we
651         don't try to use it again once it's disposed.  Fixes bug #79783.
652
653 2006-10-30  Chris Toshok  <toshok@ximian.com>
654
655         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
656         BindingContext, set the data source directly, otherwise do the
657         lazy approach - the actual ListManager will be created when we get
658         a BindingContext. Fixes bug #79700.
659
660 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
661
662         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
663           XplatUIX11.cs: Remove old 2 parameter SetVisible.
664
665         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
666
667 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
668
669         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
670         of SetVisible that allows a window to be shown, but not activated.
671         This is needed on Windows for MenuStrip, and can probably be used
672         with MainMenu and ComboBox to fix the focus stealing issues on
673         Windows.
674
675         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
676
677 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
678
679         * PictureBox.cs: Fix the output of the ToString method.
680
681 2006-10-29  Chris Toshok  <toshok@ximian.com>
682
683         * Control.cs (get_TopLevelControl): fix bug #79781.
684
685 2006-10-29  Chris Toshok  <toshok@ximian.com>
686
687         * ListControl.cs (set_DataSource): throw Exception here, not
688         ArgumentException, to match MS behavior.
689
690 2006-10-29  Chris Toshok  <toshok@ximian.com>
691
692         * Form.cs: remove the try-catch's around calls to GetWindowState.
693         We can just check the return value.
694
695         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
696         Instead return -1.
697
698         * XplatUI.cs: Add note about additional return value for
699         GetWindowState.
700
701 2006-10-29  Chris Toshok  <toshok@ximian.com>
702
703         * Control.cs (CreateHandle): when we create our handle, we also
704         create the handles of our child controls.  Fixes one of the
705         Control unit tests (CH11).
706
707 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
708
709         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
710
711 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
712
713         * ThemeClearlooks.cs: A little speedup.
714
715 2006-10-27  Chris Toshok  <toshok@ximian.com>
716
717         * Control.cs: implement Control.FromChildHandle in a way that
718         matches the docs (and fixes the failed test.)
719
720 2006-10-27  Chris Toshok  <toshok@ximian.com>
721
722         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
723         comments).
724
725         * DataGrid.cs: implement ResetForeColor such that the tests
726         succeed.
727         
728 2006-10-27  Chris Toshok  <toshok@ximian.com>
729
730         * ToolBarButton.cs: setting text/tooltiptext to null results in it
731         being set to "".  Fixes bug #79759.
732
733 2006-10-27  Jackson Harper  <jackson@ximian.com>
734
735         * TextControl.cs: We need to clear the entire selection area when
736         setting the start, otherwise multiline selections are still
737         visible.
738
739 2006-10-26  Chris Toshok  <toshok@ximian.com>
740
741         * PropertyGridView.cs: 
742
743         - ifdef all the code specific to the double
744         buffer case, and provide some alternatives in the non-doublebuffer
745         code, which makes heavy use of XplatUI.ScrollWindow to move things
746         around without having to invalidate (and cause flicker).  There
747         are still some drawing problems in the non-doublebuffered case, so
748         DOUBLEBUFFER is defined by default.
749
750         - Fix the way dropdowns are handled.  now we explicitly watch for
751         the events which might cause the dropdown to close, and break out
752         of the nested event loop there.  This gets rid of all Capture
753         code, at the expense of the Msg special casing.  Seems to work,
754         though, and fixes bug #79743.
755
756 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
757         * Control.cs: SetIsRecreating now recreates implicitly added
758         child controls as well. Finally fixes #79629. The flag passed to 
759         SetIsRecreating has also been removed since it wasn't used.
760         
761 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
762
763         * PageSetupDialog.cs: Clean some code, fix some bits, 
764         add some checks, and add a printer sub-dialog.
765
766 2006-10-26  Chris Toshok  <toshok@ximian.com>
767
768         * PropertyGrid.cs: make set_SelectedObject call
769         set_SelectedObjects, and move the duplicate logic to the
770         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
771
772         * PropertyGridView.cs: hide the textbox when we get a
773         SelectedObjectsChanged event.
774
775         Fixes bug #79748.
776
777 2006-10-26  Chris Toshok  <toshok@ximian.com>
778
779         * PropertyGridView.cs: deal with the type converter not supporting
780         GetStandardValues() or GetStandardValues() returning null, which
781         is does in the default case.  Fixes #79742.
782
783 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
784
785         * CheckedListBox.cs: nunit no longer crashes when selecting 
786         Project/Edit menu option
787         
788 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
789
790         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
791         is no menu selected. fixes #79739
792
793 2006-10-25  Chris Toshok  <toshok@ximian.com>
794
795         * PropertyGridView.cs: factor out the splitter invalidation code
796         into the SplitterPercent setter, and for kicks implement the
797         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
798         amount in either direction.
799
800 2006-10-25  Chris Toshok  <toshok@ximian.com>
801
802         * PropertyGridView.cs: do some cleanup of the brush used to draw
803         text - read only fields should be grayed out.  not sure how to do
804         this with the textbox, though.  but the textbox's should also be
805         readonly now at least.  Also, hide/show the textbox when resizing
806         the control.
807         
808         * CursorConverter.cs: use System.Reflection when getting the
809         properties of Cursors, as TypeDescriptor.GetProperties isn't
810         returning static properties.
811
812 2006-10-25  Chris Toshok  <toshok@ximian.com>
813
814         * PropertyGridView.cs: factor out the up/down handling, and reuse
815         it for page up/down.  also add End/Home support.
816
817 2006-10-25  Chris Toshok  <toshok@ximian.com>
818
819         * PropertyGridView.cs:
820
821         - ensure the selected grid item is visible in the scrolled area,
822         fixes bug #79572.
823
824         - fix Keys.Down handling when you're on the last item in the
825         propertygrid.
826
827 2006-10-25  Mike Kestner  <mkestner@novell.com>
828
829         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
830         clicks too.  Fixes #79725.
831
832 2006-10-24  Chris Toshok  <toshok@ximian.com>
833
834         * PropertyGrid.cs: use property.Converter instead of
835         TypeDescriptor.GetConverter(property.PropertyType), so we catch
836         TypeConverters declared on the property as well as on the
837         PropertyType.  Fixes bug #79678.
838
839 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
840
841         * MimeIcon.cs, Mime.cs:
842           Fallback to the default platform handler if no shared mime info
843           stuff exists (fixes #79693).
844
845 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
846         * ContainerControl.cs: Incorrect contains check in ActiveControl 
847         from previous fix (duh).
848
849 2006-10-20  Chris Toshok  <toshok@ximian.com>
850
851         * PropertyGridView.cs: the dropdown should be MIN(number of items
852         in list, 15).  Fixes #79551.
853
854 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
855         Fixes #79384, #79394, #79652, #79667
856         * Application.cs: 
857         
858         - Modal windows are now destroyed in the proper order for windows
859         
860         * ContainerControl.cs:
861         
862         - ActiveControl setter has more conditions on when to return:
863                 - if we're reselecting the active control, but it actually
864                 didn't have focus (window hidden or some such), it runs
865                 - if the active control being selected doesn't actually 
866                 exist in the container, it returns
867         
868         * Form.cs
869         
870         - The ShowDialog now gets the current form as the owner when
871         invoking without parameters, and correctly activates the owner 
872         when returning
873         
874         * MessageBox.cs
875         
876         - MessageBox now catches the Escape key to exit
877
878 2006-10-20  Chris Toshok  <toshok@ximian.com>
879
880         * PropertyGridView.cs: fix a number of issues (bug #78565, and
881         most of bug #79676):
882
883         - you can navigate around the property grid with the arrow keys.
884
885         - the dropdown is sized properly when the pg has a vertical
886         scrollbar.
887
888         - fix the indentation for subentries, and properly select the
889         entire label rect.
890
891         - fix the gray bar's drawing (only draw it to the last element,
892         not for the height of the control.  Also make sure we draw that
893         last horizontal grid line.
894
895         - use the same mechanism the datagrid uses wrt the editing textbox
896         when scrolling/resizing/etc.  Namely, we hide it first, do the
897         operation, then show it again (if it's still visible).
898         
899         - aggressively remove a lot of unnecessary refreshes (and also
900         calls to Invalidate(). call more limited variants, and only redraw
901         what we need.)
902         
903         * PropertyGrid.cs:
904
905         - when we're populating the merged collection, fill in the UI
906         parent with either the passed in item, or the category item we
907         create.
908
909         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
910
911         * GridItem.cs: drop some fully qualified names.
912         
913         * GridEntry.cs: add a "UIParent", which is basically the parent
914         treenode.
915
916         * GridItemCollection.cs: add an IndexOf method.
917
918 2006-10-20  Mike Kestner  <mkestner@novell.com>
919
920         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
921         a working win32 NC invalidation mechanism, we can't invalidate
922         menus.  [Fixes #79705]
923
924 2006-10-20  Mike Kestner  <mkestner@novell.com>
925
926         * ListBox.cs : don't update the VScrollbar if the list is empty,
927         just hide it.  [Fixes #79692]
928
929 2006-10-20  Jackson Harper  <jackson@ximian.com>
930
931         * RichTextBox.cs: Handle some special chars better, and don't skip
932         the entire group when we encounter a special char that we don't
933         handle correctly.
934
935 2006-10-18  Chris Toshok  <toshok@ximian.com>
936
937         * PropertyGridView.cs: address a number of issues from bug #79676,
938         mostly of the cosmetic variety.
939
940         - The highlight rectangle for indented items not extends all the
941         way to the left.
942
943         - Indented items aren't indented so much.
944
945         - the dropdown is properly sized width-wise if the pg has a
946         vertical scrollbar.
947
948 2006-10-18  Chris Toshok  <toshok@ximian.com>
949
950         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
951         systray stuff is rather convoluted to begin with.
952
953         systray icons are a single window for some reason (that I haven't
954         figured out yet), and for them, client_window == whole_window.
955         Given the way the tests are structured elsewhere to determine
956         which paints are pending (client vs. nc), that situation will
957         always yield PAINT, not NCPAINT.  So, if we have a pending
958         nc_expose and no pending expose, remove the hwnd from the paint
959         queue, and also set nc_expose_pending to false, to keep us from
960         blocking further expose's adding the hwnd to the paint queue.
961
962         phew.  like i said, a rather convoluted change.  Fixes the
963         notifyicon repaint issues in bug #79645.
964
965 2006-10-18  Chris Toshok  <toshok@ximian.com>
966
967         * Form.cs: when getting the backcolor of the form, don't get
968         base.BackColor, as this allows parents to influence the background
969         color.  This breaks mdi forms.  Instead, if the background_color
970         is empty, return the default.
971
972 2006-10-18  Chris Toshok  <toshok@ximian.com>
973
974         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
975         to being private instead of internal static.
976
977         * Control.cs: remove all the stupid ParentWaitingOnRecreation
978         crap, it wasn't working for more deeply nested controls anyway,
979         and we already have the is_recreating flag - use that instead.
980         Before calling DestroyHandle in RecreateHandle, recurse through
981         the control tree setting it to true.  this returns the recreate
982         code to much of its original simplicity, while now guaranteeing we
983         actually recreate everything we're supposed to.  This change gets
984         fyireporting actually showing mdi children.
985
986 2006-10-17  Chris Toshok  <toshok@ximian.com>
987
988         * Form.cs: remove some debug spew, and collapse some duplicate
989         code at the end of SetClientSizeCore.
990
991         * XplatUIX11.cs: 
992         - add some more debug spew here too wrt Destroy handling.
993         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
994         in Control's handling of WM_DESTROY.
995         - Remove the handling of zombie window DestroyNotifies from the
996         event loop - we don't need it.  Now the only DestroyNotifies we
997         actually handle are ones generated by X.
998         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
999         match gtk's (functioning) handling of this. This keep metacity
1000         from leaving droppings in the form of wm borders with no window
1001         contents all over the place.
1002
1003         * Control.cs:
1004         - add a bunch of debug spew wrt control recreation.
1005         - fix a bug where we weren't tracking Visible properly on
1006         recreated hwnds.
1007         - fixed the WM_PAINT double buffer handling to support re-entrant
1008         calls (yes, i know it's gross, but it's happening to us).
1009
1010 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
1011         * ThemeWin32Classic.cs: changed drawing of selected days
1012         to make them look better.
1013
1014 2006-10-16  Chris Toshok  <toshok@ximian.com>
1015
1016         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
1017         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
1018
1019         * XplatUIX11.cs: move away from using hwnd.client_dc and
1020         hwnd.non_client_dc and on to a stack of dc's (and in window's
1021         case, PAINTSTRUCT's), so we can deal with nested Paint calls
1022         without puking or not disposing of Graphics objects.
1023
1024         * XplatUIOSX.cs: same.
1025
1026         * XplatUIWin32.cs: same.
1027
1028 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
1029
1030         * FileDialog.cs: Don't call on_directory_changed inside
1031           OnSelectedIndexChanged (it changes the SelectedIndex too).
1032           Instead move it to OnSelectionChangeCommitted.
1033
1034 2006-10-13  Chris Toshok  <toshok@ximian.com>
1035
1036         * XplatUIX11.cs: more Destroy work.  the current code does the
1037         following things, in order:
1038
1039         1. Enumerates all handles of all controls at or below the one
1040         being destroyed, in pre-order.  As it is doing this, it marks the
1041         handles as zombie and clears all references to them.
1042         
1043         2. calls XDestroyWindow on the window passed in.
1044
1045         3. SendMessage's WM_DESTROY to all he handles in the accumulated
1046         list.
1047
1048 2006-10-13  Chris Toshok  <toshok@ximian.com>
1049
1050         * XplatUIX11.cs: set hwnd.zombie to true before calling
1051         SendMessage (WM_DESTROY).  this keeps us from marking the new
1052         window a zombie, and also keeps us from calling sendmessage at
1053         all.
1054
1055 2006-10-13  Jackson Harper  <jackson@ximian.com>
1056
1057         * TextControl.cs: Do not show the caret and selection at the same
1058         time.  Reduces ugliness by 35%.
1059
1060 2006-10-13  Chris Toshok  <toshok@ximian.com>
1061
1062         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
1063         zombie after we do the recursive call, so we actually do call
1064         SendMessage on the children controls.
1065         (GetMessage): if we find a pending paint event for a zombie hwnd,
1066         remove the hwnd from the paint queue, or else it will always be
1067         there (and we'll effectively loop infinitely)
1068
1069 2006-10-13  Mike Kestner  <mkestner@novell.com>
1070
1071         * MenuItem.cs : add Selected format under keynav too.
1072         Fixes #79528.
1073
1074 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
1075
1076         * PropertyGrid.cs: Fixed some NRE's and small difference between our
1077         implementation and that of MS.
1078
1079 2006-10-13  Chris Toshok  <toshok@ximian.com>
1080
1081         * Control.cs (OnInvalidated) only futz with the invalid_region if
1082         the control is double buffered.  this fixes the apparent hang in
1083         the ListView unit tests.  Someone needs to make the
1084         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
1085
1086 2006-10-13  Chris Toshok  <toshok@ximian.com>
1087
1088         * PropertyGridView.cs:
1089
1090         - do a little refactoring so that only one place calls
1091         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
1092         else call that.  Also make it Refresh, since there are redraw bugs
1093         otherwise (we should take a look at that...)
1094
1095         - do a little more refactoring work to share the body of code
1096         involved with the drop down.  it was duplicated in the code
1097         dealing with the listbox handling and in the code dealing with the
1098         UITypeEditors.
1099
1100         - add a Capture to the dropdown form's control once it's
1101         displayed, and add a MouseDown handler that checks to make sure
1102         the position is inside the control.  If it's not, close the
1103         dropdown.  This fixes #78190.
1104
1105         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
1106         if the value is different than the initial value.
1107         
1108 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
1109
1110         * Control.cs: see #78650
1111         - Fixed GetNextControl for several cases:
1112                 - Changed FindFlatForward to return 
1113                 correct sibling control when more than one
1114                 control has same TabIndex as the currently 
1115                 focused one.
1116                 - Changed FindFlatBackward to loop children
1117                 from last to first and apply same logic as in
1118                 FindFlatForward
1119                 - Changed FindControlForward to search for
1120                 children when control is not a container
1121                 but has children, or search for siblings if
1122                 control is a container...
1123                 - Changed FindControlBackward   to continue
1124                 searching for child controls when hitting 
1125                 Panel-like parents
1126                 
1127         - Fixed Focus method to update ActiveControl
1128         (FocusTest.FocusSetsActive failure)
1129         
1130         * TabControl.cs:
1131         - Focus rectangle now refreshes when gaining
1132         or losing focus
1133         - Removed grab for Tab key on IsInputKey that 
1134         was keeping tab navigation from working (#78650)
1135
1136 2006-10-13  Chris Toshok  <toshok@ximian.com>
1137
1138         * PropertyGridView.cs:
1139         - Rewrite SetPropertyValue to loop over SelectedGridItem's
1140         SelectedObjects.
1141
1142         - Deal with GridItem.Value == null a few places.
1143
1144         * PropertyGrid.cs: 
1145         - replace the PopulateGridItemCollection with a pair of methods
1146         which compute the intersection of all the properties in the
1147         SelectedObjects array.  Fixes #79615.
1148
1149         - Throw ArgumentException from set_SelectedObjects if there's a
1150         null in the array.
1151
1152         - Add GetTarget method which can be used to traverse up the
1153         GridItem.Parent chain.  It depends on the assumption that
1154         selected_objects for different GridEntries are always in the same
1155         order (a safe assumption).  Use this method and loop over all the
1156         selected objects in the entry when calling RemoveValueChanged and
1157         AddValueChanged.
1158         
1159         * GridEntry.cs: Make this handle multiple selected objects.
1160         .Value returns null if not all the selected objects share the same
1161         value.
1162
1163 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
1164         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
1165           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
1166           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
1167           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
1168           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
1169         add additional functionality.
1170
1171 2006-10-12  Mike Kestner  <mkestner@novell.com>
1172
1173         * ErrorProvider.cs : new ToolTipWindow ctor sig.
1174         * HelpProvider.cs : new ToolTipWindow ctor sig.
1175         * ToolTip.cs : remove ToolTip param from Window sig since it is
1176         not used.
1177         * ToolBar.cs : add tooltip support.  Fixes #79565.
1178
1179 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
1180
1181         * ComboBox.cs: move the events in set_SelectedIndex to 
1182         after the call to HighlightIndex in order to avoid 
1183         possible recursion and subsequent problems with the call
1184         to HighlightIndex and include a range check in 
1185         set_HighlightIndex. Fixes #79588
1186         
1187 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
1188
1189         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
1190         to ui thread's settings instead of sunday. 
1191         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
1192
1193 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
1194
1195         * DateTimePicker.cs
1196         * MonthCalendar.cs
1197         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
1198         and implement missing functionality (selecting different parts 
1199         of the date and edit them individually with the keyboard).
1200         
1201 2006-10-11  Chris Toshok  <toshok@ximian.com>
1202
1203         * Control.cs (OnInvalidated): fix NRE relating to last change.
1204
1205 2006-10-11  Chris Toshok  <toshok@ximian.com>
1206
1207         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
1208         atoms in _NET_WM_STATE here if the window is maximized.  We need
1209         to do this because we're *replacing* the existing _NET_WM_STATE
1210         property, so those atoms will be lost otherwise, and any further
1211         call to GetWindowState will return Normal for a window which is
1212         actually maximized.  Fixes #79338.
1213
1214 2006-10-11  Jackson Harper  <jackson@ximian.com>
1215
1216         * TextControl.cs: Special case for setting selection end to
1217         selection start, we basically kill the anchor.
1218         - some todo comments.
1219
1220 2006-10-11  Chris Toshok  <toshok@ximian.com>
1221
1222         * Control.cs: switch to using an "invalid_region" to track which
1223         parts of the image buffer need updating.  This is more code than
1224         the simple fix from r66532.  That version just attempted to always
1225         fill the entire buffer on redraw, which turns out to be
1226         inefficient when invalidating small rectangles.  This version
1227         simply adds the invalid rectangle to the invalid region.  When we
1228         get any WM_PAINT message we see if it can be filled using the
1229         image buffer, and if it can't (if the paint event's clip rectangle
1230         is visible in the invalid region) we first fill the image buffer.
1231         So, the image buffer is still a cache, we just fill it lazily.
1232
1233         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
1234         need it any longer.
1235
1236 2006-10-11  Chris Toshok  <toshok@ximian.com>
1237
1238         * XplatUIX11.cs (SetWindowPos): we need to update both position as
1239         well as size after calling XMoveResizeWindow.  This keeps us from
1240         ignoring future SetWindowPos calls.  Fixes the disappearing
1241         DateTimePicker in the ToolBarDockExample from bug #72499.
1242
1243 2006-10-11  Chris Toshok  <toshok@ximian.com>
1244
1245         * TextBoxBase.cs: reorder things a bit when it comes to
1246         resizing-causing-recalculation.  we were recalculating the
1247         document when our position was changed, which shouldn't happen.
1248         We only care about size changes.  Clear up some more redundant
1249         recalculation calls while I'm at it.  This makes the toolbar dock
1250         example snappy when you're just dragging toolbars around (since it
1251         causes a relayout whenever you move one.)
1252
1253 2006-10-11  Chris Toshok  <toshok@ximian.com>
1254
1255         * ToolBarButton.cs (get_Rectangle): this only returns
1256         Rectangle.Empty if Visible == false, or Parent == null.
1257         Parent.Visible doesn't matter.
1258
1259 2006-10-10  Chris Toshok  <toshok@ximian.com>
1260
1261         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
1262         by .net 1.1, so switch to an internal method instead.
1263
1264 2006-10-10  Chris Toshok  <toshok@ximian.com>
1265
1266         * Control.cs (WM_PAINT): when a control is double buffered we draw
1267         initially to the ImageBuffer and then copy from there.  But when a
1268         parent control which has child controls is double buffered, the
1269         initial drawing doesn't encompass the entire ClientRectangle of
1270         the parent control, so we end up with uninitialized bits (this is
1271         easily seen by dragging the top toolbar in
1272         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
1273         manually set the ClipRectangle of the paint_event (only the one we
1274         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
1275         of the nastiness in bug #72499.
1276
1277         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
1278         which we use in Control.cs's WM_PAINT handling.
1279
1280 2006-10-10  Jackson Harper  <jackson@ximian.com>
1281
1282         * TextBoxBase.cs: Finish off the autoscrolling stuff.
1283
1284 2006-10-10  Chris Toshok  <toshok@ximian.com>
1285
1286         * Cursor.cs: Apply a slightly different patch to the one suggested
1287         in #79609.
1288
1289 2006-10-10  Jackson Harper  <jackson@ximian.com>
1290
1291         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
1292         not the parent form.
1293         * TextControl.cs: use difference in old line count vs new count to
1294         calculate how many lines were added, this takes into account soft
1295         line breaks properly.
1296
1297 2006-10-10  Chris Toshok  <toshok@ximian.com>
1298
1299         * LinkLabel.cs: don't call MeasureCharacterRanges against a
1300         rectangle located at 0,0 and the size of the text.  Use
1301         ClientRectangle instead.  This fixes rendering of non-left aligned
1302         link labels.
1303
1304 2006-10-10  Jackson Harper  <jackson@ximian.com>
1305
1306         * TextBoxBase.cs: When we set the selection start position the
1307         caret.
1308         * TextControl.cs: Need to update the caret when we decrement it to
1309         zero.
1310         - Make sure that the selection_visible flag gets reset to false if
1311         the selection isn't visible.  Before this you could get it set to
1312         visible by changing the selection start, then changing the end to
1313         equal the start.
1314
1315 2006-10-09  Jackson Harper  <jackson@ximian.com>
1316
1317         * TreeView.cs: Don't update scrollbars when we aren't visible.
1318         * TreeNodeCollection.cs: Only need to update scrollbars if being
1319         added to an expanded visible node or the root node.
1320
1321 2006-10-09  Chris Toshok  <toshok@ximian.com>
1322
1323         * XplatUIX11.cs (SendMessage): fix NRE.
1324
1325 2006-10-09  Jackson Harper  <jackson@ximian.com>
1326
1327         * TextBoxBase.cs: Implement horizontal autoscrolling.
1328         * TextControl.cs: Add a movement types that allows moving forward
1329         and backwards without wrapping.
1330
1331 2006-10-09  Mike Kestner  <mkestner@novell.com>
1332
1333         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
1334         with focus "expansion" of labels.  Fixes #79532 and then some.
1335         * ThemeWin32Classic.cs : add LineLimit to ListView label format
1336         when wrapping.
1337
1338 2006-10-09  Jackson Harper  <jackson@ximian.com>
1339
1340         * TextBoxBase.cs: Set the default max values to MaxValue since
1341         we use the scrollbar for autoscrolling and the default value is
1342         100.  If we don't do this the caret won't keep up with typing
1343         after about 18 characters.
1344         * TextControl.cs: Make sure the selection is offset by the
1345         viewport x.  This fixes selection when using auto scrolling.
1346
1347 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
1348         
1349         * Form.cs: The active control should be selected after the 
1350         OnLoad so that any child control initialization that affects
1351         the selection is done. Fixes #79406
1352
1353 2006-10-06  Chris Toshok  <toshok@ximian.com>
1354
1355         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
1356         to have no evil effects.
1357
1358         - Stop selecting StructureNotifyMask on non-toplevel windows.
1359
1360           The only way children should be resized is by using the SWF api,
1361           and we already send WM_WINDOWPOSCHANGED messages in those cases.
1362           Toplevel windows can be interacted with via the window manager,
1363           and so we keep the input mask there.
1364
1365           The other event StructureNotifyMask gives us (that we care
1366           about) is DestroyNotify.  The code is already structured such
1367           that it assumes we won't be getting a DestroyNotify event for
1368           the window we pass to XDestroyWindow (which is what
1369           StructureNotifyMask is supposed to guarantee.)  So, that code
1370           shouldn't be affected by this either.
1371
1372         - Stop selecting VisibilityChangeMask altogether.
1373
1374           We weren't doing anything with the resulting events anyway.
1375         
1376         This vastly reduces the number of X requests and events we see
1377         when resizing/laying out a large ui.
1378
1379 2006-10-06  Chris Toshok  <toshok@ximian.com>
1380
1381         * ScrollableControl.cs (DisplayRectangle): we need to take into
1382         account the DockPadding regardless of whether or not auto_scroll
1383         == true.  rework this slightly to this effect, and fix bug #79606,
1384         and part of #72499 (you can now see the drag handles and drag
1385         toolbars around).
1386
1387 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
1388
1389         * ListViewItem.cs: Collections of selected and checked items are now
1390         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
1391         we mark the collection "dirty".
1392         * ListView.cs: Marked collections readonly. Modified UpdateSelection
1393         to only clear SelectedItems when a new item is selected and MultiSelect
1394         is enabled. CheckedItems and SelectedItems now subscribe to Changed
1395         event of ListViewItemCollection, and mark its list dirty whenever
1396         that event is fire. This allows us to return selected/checked items 
1397         in the same order as they are in the Items collection. This matches
1398         the MS behavior.
1399
1400 2006-10-06  Chris Toshok  <toshok@ximian.com>
1401
1402         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
1403         right mouse clicks.  Fixes bug #79593.
1404
1405 2006-10-06  Chris Toshok  <toshok@ximian.com>
1406
1407         * Splitter.cs: doh, fix splitters that don't want to cancel the
1408         movement when you drag them.  Also, impose the limits on the
1409         values we send to the SplitterMovingEvent.  Fixes #79598.
1410
1411 2006-10-06  Jackson Harper  <jackson@ximian.com>
1412
1413         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
1414         since we use this for auto scrolling also.
1415
1416 2006-10-05  Chris Toshok  <toshok@ximian.com>
1417
1418         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
1419         beginning to think that most datagrid column types don't need this
1420         method.  Fixes bug #79392.
1421
1422 2006-10-05  Chris Toshok  <toshok@ximian.com>
1423
1424         * DataGrid.cs: move back to a more lazy scheme for creating the
1425         CurrencyManager, so we aren't updating it every time you set
1426         either DataSource or DataMember.  Also, don't call
1427         RecreateDataGridRows if the currency manager hasn't changed.
1428
1429 2006-10-05  Chris Toshok  <toshok@ximian.com>
1430
1431         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
1432         emitted, SelectedIndex should already be updated.  Fixes bug
1433         #78929.
1434
1435 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
1436
1437         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
1438           ToolStripTextBox.cs: Initial commit.
1439         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
1440
1441 2006-10-05  Jackson Harper  <jackson@ximian.com>
1442
1443         * TabControl.cs: We need to invalidate the tab control area when
1444         new ones are added (duh).
1445
1446 2006-10-03  Chris Toshok  <toshok@ximian.com>
1447
1448         * Form.cs (ProcessDialogKey): if the focused control is in this
1449         form and is a button, call its PerformClick method here.  Fixes
1450         #79534.
1451
1452 2006-10-04  Jackson Harper  <jackson@ximian.com>
1453
1454         * TabPage.cs: Ignore setting of Visible, and add an internal
1455         method for setting the controls visibility.  TabPage's Visible
1456         property is a little strange on MS, this seems to make us
1457         compatible, and fixes cases where people set all the tab pages to
1458         visible.
1459         * TabControl.cs: Use the new internal setting on tab pages
1460         visibility.
1461
1462 2006-10-03  Mike Kestner  <mkestner@novell.com>
1463
1464         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
1465
1466 2006-10-03  Mike Kestner  <mkestner@novell.com>
1467
1468         * ListView.cs : use is_visible instead of Visible to check if 
1469         scrollbars should be placed/sized.  Also some max_wrap_width
1470         love for LargeIcon view.  [Fixes #79533]
1471
1472 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
1473
1474         * TextControl.cs :
1475           Make set_TextAlign() do actually update the align. Fixed #78403.
1476
1477 2006-10-03  Chris Toshok  <toshok@ximian.com>
1478
1479         * DataGrid.cs: fix a crash when switching datasources if the
1480         vertical scrollbar is at someplace other than Value = 0.  Also,
1481         reduce the number of recalculation passes we do in SetDataSource
1482         from 2 to 1.
1483
1484 2006-10-03  Jackson Harper  <jackson@ximian.com>
1485
1486         * TextBoxBase.cs: Move the if value the same bail check up, we
1487         don't want to empty the document if it is already empty, this
1488         seems to severly mess up the caret.  TODO: I should probably fix
1489         the empty statement to update teh caret somehow.
1490
1491 2006-10-03  Chris Toshok  <toshok@ximian.com>
1492
1493         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
1494         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
1495         reflection, an internal row type, properties on said type, etc.)
1496         will work with our datagrid.  Fixes #79531.
1497
1498 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
1499
1500         * FileDialog.cs: Don't crash if a path is not accessible
1501           (System.UnauthorizedAccessException). Fixes #79569.
1502         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
1503           a ':' too. Return unknown icon for those paths/files.
1504
1505 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
1506
1507         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
1508         GetContainerControl returns null.
1509
1510 2006-10-02  Chris Toshok  <toshok@ximian.com>
1511
1512         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
1513         call to XGetWindowAttributes instead of "handle".  fixes an X
1514         error using notifyicon after the NotifyIconWindow to Form base
1515         class switch.
1516
1517 2006-10-02  Chris Toshok  <toshok@ximian.com>
1518
1519         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
1520         server grab and looping we need to do to get down to the most
1521         deeply nested child window.
1522         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
1523         QueryPointer again after the WarpPointer so we can generate a
1524         proper (fake) MotionNotify event to be enqueued in the destination
1525         window's queue.
1526         (GetCursorPos): call QueryPointer.
1527
1528         Fixes #79556.
1529
1530 2006-10-02  Jackson Harper  <jackson@ximian.com>
1531
1532         * NotifyIcon.cs: Derive the notify icon from a form, so things
1533         like FindForm work on it.
1534         - Swallow the WM_CONTEXTMENU message, since that is generated on
1535         mouse down, and context menu is a mouse up kinda guy.  I believe
1536         the correct fix here is probably to make the notify icon entirely
1537         NC area, but this seems to work fine for anyone not manipulating
1538         WndProc.
1539
1540 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
1541
1542         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
1543           ToolStripItemCollection.cs, ToolStripLabel.cs,
1544           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
1545           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
1546           Initial implementation.
1547         * TextRenderer.cs: Provide padding to MeasureText.
1548
1549 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
1550
1551         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
1552         of ButtonBaseAccessibleObject. Fix bug #79552.
1553
1554 2006-10-02  Jackson Harper  <jackson@ximian.com>
1555
1556         * MdiWindowManager.cs: When maximizing use the containers client
1557         rect, not it's bounds, so nc area is accounted correctly.
1558         - Use the parent form's size for the menu position, since the
1559         client isn't always the full form size.
1560
1561 2006-10-01  Chris Toshok  <toshok@ximian.com>
1562
1563         * ScrollableControl.cs: make sure neither right_edge or
1564         bottom_edge are < 0, since they're used as LargeChange for the
1565         horiz/vert scrollbars respectively.  Fixes #79539.
1566
1567 2006-10-01  Chris Toshok  <toshok@ximian.com>
1568
1569         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
1570         the xplatuix11 code can cause us to destroy/recreate our handle.
1571
1572         * XplatUIX11.cs
1573         (SystrayAdd):
1574         - this code can be invoked many times for the same Hwnd.  Make
1575           sure we only destroy the client window once (the first time this
1576           method is called).  This fixes bug #79544.
1577         - Remove the call to the improperly bound XSync.  why we had two
1578           bindings to this, I will never know, but this call resulted in
1579           events being discarded from the queue(!).
1580         - correct a misunderstanding of _XEMBED_INFO - the second atom is
1581           not our current state but the state we wish to be in.  So, 0 if
1582           we don't want to be mapped.  Change it to 1.
1583         (SystrayRemove): The XEMBED spec makes mention of the fact that
1584         gtk doesn't support the reparent of client windows away from the
1585         embedder.  Looking at gtksocket-x11.c seems to agree with this.
1586         The only avenue we have for removing systray icons is to destroy
1587         them.  We don't want the handle to go away for good, though, so
1588         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
1589         #79545.
1590         
1591 2006-10-01  Chris Toshok  <toshok@ximian.com>
1592
1593         * Form.cs (WndProc): inline the native_enabled variable usage into
1594         the cases in which it's used.  Fixes #79536.
1595
1596 2006-09-29  Mike Kestner  <mkestner@novell.com>
1597
1598         * ListView.cs : toggle the selection state for ctrl clicks in 
1599         multiselect mode. [Fixes #79417]
1600
1601 2006-09-29  Mike Kestner  <mkestner@novell.com>
1602
1603         * ListView.cs : kill CanMultiSelect and refactor the selection
1604         code to support multiselection in the absence of mod keys. Steal
1605         arrow/home/end keys by overriding InternalPreProcessMessage to
1606         restore regressed keynav behavior.
1607         [Fixes #79416]
1608
1609 2006-09-29  Jackson Harper  <jackson@ximian.com>
1610
1611         * MdiClient.cs: Repaint the titlebars when the active window is
1612         changed.
1613
1614 2006-09-29  Chris Toshok  <toshok@ximian.com>
1615
1616         * Application.cs: when entering a runloop with a modal, make sure
1617         the hwnd is enabled.  Fixes #79480.
1618
1619 2006-09-29  Chris Toshok  <toshok@ximian.com>
1620
1621         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
1622         when ListManager.CanAddRows == false, bump us back one.
1623
1624         * DataGridColumnStyle.cs (ParentReadOnly): remove the
1625         listmanager.CanAddRows check.  This makes ArrayLists uneditable
1626         using a datagrid, which is not right.
1627         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
1628         is an IEditable, but call property_descriptor.SetValue regardless.
1629         fixes #79435.
1630
1631 2006-09-29  Chris Toshok  <toshok@ximian.com>
1632
1633         * DataGridBoolColumn.cs: we need to test equality in the face of
1634         possible null values (as is the case with the default NullValue).
1635         This patch keeps us from crashing in that case.
1636
1637 2006-09-29  Jackson Harper  <jackson@ximian.com>
1638
1639         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
1640         here, since it will get called for every node collection in the
1641         tree. This is now done in the treeview once the sorting is
1642         finished.
1643         * TreeView.cs: Recalculate the visible order, and update the
1644         scrollbars after sorting, set the top nope to the root so that the
1645         recalc actually works.
1646
1647 2006-09-29  Chris Toshok  <toshok@ximian.com>
1648
1649         * LinkLabel.cs: more handling of the default link collection in
1650         the face of LinkArea manipulation.  The default link collection
1651         contains 1 element (start=0,length=-1).  If the user sets LinkArea
1652         to anything and the links collection is the default, clear it.
1653         Then only add the link if its nonempty.  Fixes #79518.
1654
1655 2006-09-29  Chris Toshok  <toshok@ximian.com>
1656
1657         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
1658         piece correctly when we hit a '\n'.  Fixes #79517.
1659
1660 2006-09-29  Chris Toshok  <toshok@ximian.com>
1661
1662         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
1663         change the binding of gdk_init_check to take two IntPtr's, and
1664         pass IntPtr.Zero for both of them.  Fixes #79520.
1665
1666 2006-09-29  Mike Kestner  <mkestner@novell.com>
1667
1668         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
1669         [Fixes #78779]
1670
1671 2006-09-28  Jackson Harper  <jackson@ximian.com>
1672
1673         * XplatUIX11.cs: When translating NC messages make sure we go from
1674         whole window to screen, not client window to screen.
1675         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
1676         method doesn't exist
1677         - Skip over controls that aren't forms when arranging.
1678
1679 2006-09-28  Jackson Harper  <jackson@ximian.com>
1680
1681         * XplatUIWin32.cs: Clip the rect to the parent window.
1682         * XplatUIStructs.cs: Add clipping modes struct.
1683         * InternalWindowManager.cs: New private method that factors title
1684         bar heights in when calculating the pos of an NC mouse message.
1685         - Use SendMessage to force a paint when the form's size is changed
1686         instead of painting the decorations immediately.
1687         - Don't let the NC button click messages get to DefWndProc,
1688         because they will attempt to handle windowing themself, and this
1689         messes up z-order (it will put them in front of the scrollbars).
1690         * XplatUIX11.cs: Make sure that we don't reset window managers if
1691         we already have one (ie the window is an MDI window).
1692
1693 2006-09-28  Chris Toshok  <toshok@ximian.com>
1694
1695         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
1696         menu code really needs going over.
1697
1698 2006-09-27  Chris Toshok  <toshok@ximian.com>
1699
1700         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
1701         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
1702         window is maximizable.  So, we need to make sure that even if we
1703         clear the border/wm frame of those functions, they're still
1704         available (basically, we remove the decoration without removing
1705         the function).  Half the fix for #79338.
1706
1707 2006-09-27  Chris Toshok  <toshok@ximian.com>
1708
1709         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
1710         Fixes bug #79515.
1711
1712 2006-09-27  Chris Toshok  <toshok@ximian.com>
1713
1714         * Splitter.cs: reorder things a bit so that we don't actually
1715         draw/move the splitter until after calling OnSplitterMoving.  This
1716         lets users cancel/disallow the movement by explicitly setting
1717         event.SplitX/SplitY.  Fixes #79372.
1718
1719 2006-09-27  Jackson Harper  <jackson@ximian.com>
1720
1721         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
1722         because it is most likely on a window being destroyed, and that
1723         will give us an X11 error.
1724
1725 2006-09-27  Chris Toshok  <toshok@ximian.com>
1726
1727         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
1728         the dropdown button now toggles between showing and hiding the
1729         dropdown.  Also, get rid of dropdown_form_showing and just use
1730         dropdown_form.Visible.  We still don't do a grab, but I'll leave
1731         that part to someone who has handled Capture-fu before.
1732
1733 2006-09-27  Chris Toshok  <toshok@ximian.com>
1734
1735         * DataGrid.cs: return false if alt isn't pressed when '0' is
1736         pressed.  this keeps the '0' key from being swallowed, and fixes
1737         bug #79350.
1738
1739 2006-09-27  Chris Toshok  <toshok@ximian.com>
1740
1741         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
1742         Calling Refresh (in response to a scrollbar event) screws up the
1743         scrollbar painting.  Fixes bug #78923.
1744
1745 2006-09-27  Chris Toshok  <toshok@ximian.com>
1746
1747         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
1748         then insert into hashtable" blocks threadsafe.
1749
1750 2006-09-27  Chris Toshok  <toshok@ximian.com>
1751
1752         * MessageBox.cs (CreateParams): the styles should be |'ed with our
1753         baseclass's, since otherwise the
1754         ControlBox/MinimizeBox/MaximizeBox assignments above have no
1755         effect.  This gets the close button back in messageboxes.
1756
1757 2006-09-27  Chris Toshok  <toshok@ximian.com>
1758
1759         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
1760         flag, not just != 0.  this makes flags that are actually multiple
1761         bits (like WS_CAPTION) work.  fixes bug #79508.
1762
1763 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
1764
1765         * PageSetupDialog.cs: add support for getting and settings the 
1766         paper size, source and orientation.
1767
1768 2006-09-26  Chris Toshok  <toshok@ximian.com>
1769
1770         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
1771         and caption == "", we need to remove the resize handles as well as
1772         the title bar.
1773
1774         * Control.cs (set_Text): turns out that setting Text on a form
1775         should change the WM styles on the window, since if ControlBox ==
1776         false, the only way to get a window border is to have a non-""
1777         Text property.  check winforms/forms/text.cs for an example.  so,
1778         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
1779         update both window styles and title.  This fixes a lot of dialogs
1780         (including the preferences dialog in MonoCalendar.)
1781
1782 2006-09-26  Chris Toshok  <toshok@ximian.com>
1783
1784         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
1785         control isn't a Form), call Win32ShowWindow to hide the window,
1786         but don't update the control Visible property.  When we reparent
1787         back to a parent control, call SetVisible in order for the
1788         window's visibility to be reinstated.
1789
1790         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
1791         the FosterParent.
1792
1793         * Control.cs (ControlCollection.Remove): remove that value.Hide()
1794         call for good, since it breaks MonoCalendar (and other things I'm
1795         sure.) Also, set all_controls to null *after* the owner calls,
1796         which end up regenerating it.
1797         (ChangeParent): allow new_parent to be == null, passing
1798         IntPtr.Zero down to XplatUI.
1799
1800         this fixes #79294 the right way.
1801
1802 2006-09-26  Mike Kestner  <mkestner@novell.com>
1803
1804         * GridEntry.cs : internal SetParent method.
1805         * PropertyGrid.cs : attach to property changed on the proper
1806         target if we have a hierarchical grid with subobjects. Setup
1807         GridItem.Parent for hierarchical items.
1808         * PropertyGridView.cs : Set value on the correct target for
1809         hierarchical grids. [Fixes #78903]
1810
1811 2006-09-26  Chris Toshok  <toshok@ximian.com>
1812
1813         * Control.cs (ChildNeedsRecreating): this should return true if
1814         either we're being recreated and the child is in our list, or our
1815         parent is waiting for our recreation.
1816
1817 2006-09-26  Chris Toshok  <toshok@ximian.com>
1818
1819         * Control.cs (ControlCollection.Remove): reinstate the
1820         value.Hide() call as suggested in bug #79294.
1821
1822 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
1823
1824         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
1825         coordinates (versus a relative move).
1826
1827 2006-09-26  Chris Toshok  <toshok@ximian.com>
1828
1829         * Control.cs: rework child recreation a little bit.  It turns out
1830         that we race between the DestroyNotify the WM_DESTROY message.  If
1831         the parent gets its DestroyNotify before the child gets the
1832         WM_DESTROY message, the child ends up not recreating (since the
1833         parent finishes its recreation on DestroyNotify, and the child
1834         checks ParentIsRecreating.)
1835
1836         So, instead we store off a list of all the child controls which
1837         need to be recreated when the parent control starts to recreate
1838         itself.  Then, when child controls get their WM_DESTROY message we
1839         check to see if they're in the parent's pending recreation list,
1840         and if so, we recreate.  This removes all dependency on ordering
1841         from the code and fixes the initial MonoCalendar upgrade dialog.
1842         
1843 2006-09-26  Jackson Harper  <jackson@ximian.com>
1844
1845         * TextControl.cs: Use the Line to get the length of the line,
1846         since soft line breaks can change the end line.
1847
1848 2006-09-26  Chris Toshok  <toshok@ximian.com>
1849
1850         * Control.cs (ControlCollection.AddImplicit): don't add the
1851         control again if it's already in one of our lists.  This keeps us
1852         from adding controls over and over again for comboboxes when their
1853         handle gets recreated (as the combobox adds implicit controls in
1854         OnHandleCreated).  Fixes the X11 errors in bug #79480.
1855
1856 2006-09-26  Jackson Harper  <jackson@ximian.com>
1857
1858         * TextControl.cs: When deleting characters make sure that any
1859         orphaned zero lengthed tags get deleted.
1860         - Fix ToString for zero lengthed tags.
1861
1862 2006-09-25  Jackson Harper  <jackson@ximian.com>
1863
1864         * TextControl.cs: When getting a tag at the location there can be
1865         multiple tags at the same spot, these are 0-lengthed tags that
1866         appear when extra formatting has been stuck in a location.  We
1867         need to pull out the last of these 0 lengthed tags.
1868
1869 2006-09-25  Jackson Harper  <jackson@ximian.com>
1870
1871         * TextControl.cs: Fix print out in debug method.
1872         * TextBoxBase.cs: When text is set bail if we are setting to the
1873         previous value.
1874         
1875 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
1876
1877         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
1878           It is now possible to change the selected index in a FontXXXListBox
1879           with the up and down arrow keys from the FontXXXTextBoxes.
1880           Also, send the FontXXXTextBox mouse wheel event to the corresponding
1881           FontXXXListBoxes to match ms.
1882
1883 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
1884
1885         * SystemInformation.cs: Return a clone of the theme's MenuFont because
1886         anyone can dispose it, anytime. All other properties returns enums, 
1887         structs or basic types so they don't need such tricks.
1888
1889 2006-09-22  Jackson Harper  <jackson@ximian.com>
1890
1891         * XplatUI.cs:
1892         * XplatUIWin32.cs:
1893         * Clipboard.cs:
1894         * DataFormats.cs:
1895         * XplatUIOSX.cs:
1896         * XplatUIDriver.cs: Update interface to add a primary selection
1897         flag, so the driver can use the primary selection buffer if
1898         needed.
1899         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
1900
1901         * RichTextBox.cs: We need to supply the data object to paste now
1902         (so we can choose to supply CLIPBOARD or PRIMARY).
1903         * TextBoxBase.cs: Supply data object to paste (see above).
1904         - Middle click uses the primary selection data object.
1905         
1906 2006-09-21  Chris Toshok  <toshok@ximian.com>
1907
1908         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
1909         of SetWMStyles.  It's still a rat's nest and is largely
1910         order-dependent which I dislike immensely.  This also fixes the X
1911         button disappearing from toplevel forms.
1912
1913 2006-09-21  Mike Kestner <mkestner@novell.com>
1914
1915         * ListBox.cs: move Jordi's click/dblclick raising code to the
1916         mouse up handler.
1917
1918 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
1919
1920         * ListBox.cs: Fixes 79450
1921
1922 2006-09-21  Mike Kestner <mkestner@novell.com>
1923
1924         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
1925         to deal with people updating the TreeNodeCollection after the tree
1926         is disposed.  "Fixes" 79330.
1927
1928 2006-09-20  Jackson Harper <jackson@ximian.com>
1929
1930         * TextControl.cs: Push the cursor record onto the undo stack
1931         before the delete action. This fixes 78651.
1932
1933 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
1934
1935         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
1936         CreateParams. Fixes 79329.
1937
1938 2006-09-19  Chris Toshok  <toshok@ximian.com>
1939
1940         * XplatUIX11.cs: a couple of blanket code massage passes to clean
1941         things up a bit.  First, get rid of the NetAtoms array (and the NA
1942         enum), and just embed the atoms as static fields.  Also, add a
1943         couple of functions (StyleSet and ExStyleSet) to clean up all the
1944         bitmask testing of styles.
1945
1946         * X11Structs.cs: remove the NA enum, not needed anymore.
1947         
1948 2006-09-19  Chris Toshok  <toshok@ximian.com>
1949
1950         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
1951         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
1952         added cleanup to get MessageBox titles appearing again, which were
1953         broken by my earlier fix for caption-less/ControlBox-less windows.
1954
1955 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
1956
1957         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
1958           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
1959           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
1960           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
1961           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
1962           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
1963           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
1964           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
1965           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
1966           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
1967           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
1968             Inital import.
1969         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
1970           ToolStripButton.cs: Stubs needed for above.
1971         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
1972
1973 2006-09-15  Chris Toshok  <toshok@ximian.com>
1974
1975         * XplatUIX11.cs:
1976         - make the MessageQueues hashtable Synchronized.
1977         
1978         - SendMessage: if the Hwnd is owned by a different thread, use the
1979         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
1980         thread.  Fixes bug #79201.
1981
1982 2006-09-15  Chris Toshok  <toshok@ximian.com>
1983
1984         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
1985         ControlBox == false, we disallow maximize/minimize/close.  If the
1986         form Caption is "" we also disallow move (and get rid of the Title
1987         decoration).  Unfortunately, regardless of how things are set,
1988         we're stuck with the Title and WM menu.
1989
1990 2006-09-15  Chris Toshok  <toshok@ximian.com>
1991
1992         * Application.cs: add locking around the static message_filters
1993         ArrayList, part of #79196.
1994
1995 2006-09-15  Chris Toshok  <toshok@ximian.com>
1996
1997         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
1998         Form.ControlBox == false, the window has no titlebar nor resize
1999         handles.  fixes bug #79368.
2000
2001 2006-09-15  Chris Toshok  <toshok@ximian.com>
2002
2003         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
2004         >= 0.  Fixes bug #79370.
2005
2006 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
2007         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
2008         * Control.cs:
2009             Add properties: LayoutEngine, Margin, DefaultMargin.
2010             Add method: GetPreferredSize.
2011             Move layout logic from PerformLayout to layout engines. 
2012
2013 2006-09-13  Chris Toshok  <toshok@ximian.com>
2014
2015         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
2016         fix for #79326 broke #78718, so this change addresses that.
2017
2018         - in SendWMDestroyMessages remove the call to
2019         CleanupCachedWindows, since we might be recreating the control and
2020         need to maintain the references to right Hwnd handles.  Also, set
2021         the zombie flag to true for each of the children in the hierarchy
2022         instead of calling hwnd.Dispose.  This will cause GetMessage to
2023         ignore all events for the window except for DestroyNotify.
2024
2025         - In GetMessage, ignore messages except for DestroyNotify for
2026         zombie hwnds.
2027         
2028         * Control.cs: revert the is_recreating fix from the last
2029         ChangeLog.  It's definitely "right", but it breaks switching from
2030         an MDI form to a non-MDI form.  Will need to revisit that.
2031
2032         * Hwnd.cs: add a zombie flag, which means "the
2033         client_window/whole_window handles are invalid, but we're waiting
2034         for the DestroyNotify event to come in for them".  Set the flag to
2035         false explicitly if setting WholeWindow/ClientWindow, and also
2036         when Disposing.
2037         
2038 2006-09-13  Chris Toshok  <toshok@ximian.com>
2039
2040         * XplatUIX11.cs: rework window destruction slightly.
2041
2042         - when destroying the windows associated with a control, we don't
2043         need 2 separate XDestroyWindow calls.  Just the one for the
2044         whole_window (or for client_window if whole_window is somehow
2045         IntPtr.Zero -- can this happen?) is enough.
2046
2047         - reworked SendWMDestroyMessages slightly, so we always dispose
2048         the child control hwnd's after sending the messages.
2049         
2050         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
2051         the two places it was used (one was even using hwnd.Handle and the
2052         other hwnd.client_window.  ugh), adding another call in
2053         SendWMDestroyMessages.  We need this new call because now the
2054         DestroyNotify events in the queue will be ignored for the child
2055         controls (as their hwnd's were disposed, and the window id's
2056         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
2057
2058         - this fixes bug #79326.
2059
2060 2006-09-13  Chris Toshok  <toshok@ximian.com>
2061
2062         * Control.cs: don't always set is_recreating to false at the end
2063         of RecreateHandle, since sometimes we're not done (and won't be
2064         until WndProc handles the WM_DESTROY message).  Also, set
2065         is_recreating to false in the WM_DESTROY handling code.  Part of
2066         the fix for bug #79326.
2067
2068 2006-09-13  Miguel de Icaza  <miguel@novell.com>
2069
2070         * X11DesktopColors.cs: Start the droppage of debugging messages.
2071
2072         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
2073
2074 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
2075
2076         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
2077
2078 2006-09-12  Chris Toshok  <toshok@ximian.com>
2079
2080         * DataGrid.cs (get_ListManager): if the list_manager is null, try
2081         to create it using SetDataSource.  Fixes bug #79151.
2082
2083 2006-09-11  Chris Toshok  <toshok@ximian.com>
2084
2085         * XEventQueue.cs: add a DispatchIdle property.
2086
2087         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
2088         either the queue is null, or the queue has DispatchIdle set to
2089         true.
2090         (DoEvents): set queue.DispatchIdle to false around the
2091         peek/translate/dispatch message loop in this method.  This keeps
2092         Application.Doevents from emitting idle events.  Part of the fix
2093         for #78823.
2094
2095 2006-09-11  Chris Toshok  <toshok@ximian.com>
2096
2097         * DataGrid.cs (set_DataSource): make this work for both the
2098         winforms/datagrid test and ReportBuilder.  It seems as though when
2099         we've created a ListManager (or maybe it's if we have a
2100         BindingContext?), when we set the DataSource it clears the
2101         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
2102         #79333.
2103
2104 2006-09-11  Chris Toshok  <toshok@ximian.com>
2105
2106         * XplatUIX11.cs: deal with queue being null, which happens in all
2107         the Clipboard functions.  Fixes one of the two problems mentioned
2108         in #78612.
2109
2110 2006-09-11  Chris Toshok  <toshok@ximian.com>
2111
2112         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
2113         button on various spots (including outside the menu) works closer
2114         to MS, and doesn't crash.  Fixes #79343.
2115
2116 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
2117
2118         * ListView.cs: Do not initialize item_sorter in init. To match MS,
2119         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
2120         and the internal comparer is set. When a new ListViewItemSorter is set,
2121         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
2122         was specified. No further processing is necessary if SortOrder is set
2123         to it's current value. If Sorting is modified to None, and View is
2124         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
2125         (either custom or our internal ItemComparer) to null, on 1.0 profile
2126         only set item_sorter to null if its our internal IComparer. If Sorting
2127         is modified to Ascending or Descending, then use our internal IComparer
2128         if none is set, and if the current IComparer is our internal one then:
2129         on 2.0 profile always replace it with one for new Sorting, and on 1.0
2130         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
2131         Enum.IsDefined to verify whether a valid View value is specified in
2132         its setter. Automatically sort listview items when listview is
2133         created. In Sort, do nothing if ListView is not yet created, or if
2134         no item_sorter is set (no Sorting was set, Sorting was explicitly set
2135         to None or ListViewItemSorter was set to null). Added Sort overload
2136         taking a bool to indicate whether the ListView should be redrawn when
2137         items are sorted (we use this in ListViewItemCollection to avoid double
2138         redraws). Modified our internal IComparer to take the sort order into
2139         account. In Add and AddRange methods of ListViewItemCollection, also
2140         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
2141         view), but use overload with noredraw option to avoid double redraw.
2142         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
2143         true when View is Tile, and do the same when attempting to set View to
2144         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
2145         for selected/checked indices, as it involves overhead when sorting is
2146         done while these collections are not used all that often. Instead
2147         we'll build the indices on demand. Modified IList implementation of
2148         CheckedIndexCollection to use public methods if object is int.
2149         Modified CheckedListViewItemCollection to hide checked items if
2150         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
2151         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
2152         IList implementation in SelectedIndexCollection to use public methods
2153         if object is int. Modified SelectedListViewItemCollection to hide
2154         selected items if listview is not yet created.
2155         * ListViewItem.cs: CheckedIndices list no longer needs to be
2156         maintained separately (see ListView changes). Also clone font, fixes
2157         test failure.
2158
2159 2006-09-11  Mike Kestner  <mkestner@novell.com>
2160
2161         * ComboBox.cs: if we are updating the contents of the currently
2162         selected index, refresh the control or the textbox selection.
2163         [Fixes #79066]
2164
2165 2006-09-11  Mike Kestner  <mkestner@novell.com>
2166
2167         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
2168         the 'specified' logic has been moved there.  This seems like a bug 
2169         in Control.cs, since our current SetBoundsCore completely ignores 
2170         the specified parameter.  Peter's commit seems to indicate that is 
2171         the way the MS control implementation works.  [Fixes #79325]
2172
2173 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
2174
2175         * XplatUI.cs: Set default_class_name to be composed
2176         of current domain id. This allows MWF to be loaded in multiple
2177         domains on Win32.
2178
2179 2006-09-09  Miguel de Icaza  <miguel@novell.com>
2180
2181         * X11Keyboard.cs: If we are unable to obtain the input method, do
2182         not call CreateXic to create the input context.   Should fix
2183         #78944/79276.
2184
2185 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
2186
2187         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
2188           Simplified gnome support by adding more pinvokes to get the
2189           icon for a file or mime type.
2190
2191 2006-09-08  Jackson Harper  <jackson@ximian.com>
2192
2193         * MenuAPI.cs: Deslect popup context menu items before closing the
2194         window, so that you don't see the previously selected item
2195         selected when you reopen the menu.
2196         * TextControl.cs: Update the cursor position even if we don't have
2197         focus.  This fixes typing in things like the ComboBox.  I'm not
2198         totally sure we should always set the visibility if we don't have
2199         focus, but couldn't find any corner cases where the cursor showed
2200         up when it shouldn't.
2201
2202 2006-09-08  Chris Toshok  <toshok@ximian.com>
2203
2204         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
2205         our arrays are length 256.  & 0xff before indexing.  Fixes the
2206         crash in bug #78077.
2207         
2208 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2209
2210         * ThemeWin32Classic.cs: 
2211         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
2212         is true. Handle that check box too.
2213
2214 2006-09-07  Chris Toshok  <toshok@ximian.com>
2215
2216         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
2217         79244.
2218
2219 2006-09-07  Chris Toshok  <toshok@ximian.com>
2220
2221         * Control.cs: in set_BackColor only do the work if
2222         background_color != value.
2223
2224         * XplatUIX11.cs: move the clearing of invalid areas (both client
2225         and nc) to the same block of code where we set (nc_)expose_pending
2226         to false.  That is, move it from PaintEventEnd to PaintEventStart,
2227         so things that cause invalidates from within OnPaint will trigger
2228         another call to OnPaint.  Fixes bug #79262.
2229
2230 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
2231
2232         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
2233         * FileDialog.cs: Fix typo
2234
2235 2006-09-07  Jackson Harper  <jackson@ximian.com>
2236
2237         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
2238         for tab pages if they have any.
2239
2240 2006-09-06  Mike Kestner  <mkestner@novell.com>
2241
2242         * Splitter.cs: use the "current" rect when finishing drag handle
2243         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
2244
2245 2006-09-06  Mike Kestner  <mkestner@novell.com>
2246
2247         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
2248         support offset splitters. [Fixes #79298]
2249
2250 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
2251
2252         * Mime.cs: Fixed a bug that could override the global mime type
2253           result.
2254
2255 2006-09-05  Jackson Harper  <jackson@ximian.com>
2256
2257         * TabControl.cs: Better calculation method for setting the slider
2258         pos. Prevents crashes on really wide tabs.
2259         - Draw Image on tab pages if an image list is used.
2260
2261 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2262
2263         * MonthCalendar.cs: When Font changes, the Size should be
2264         updated to fit the new font's space requirements.
2265
2266 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
2267
2268         * ListBox.cs: If the items are cleared with Items.Clear set
2269           top_index to 0.
2270
2271 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2272
2273         * MonthCalendar.cs: Handle arrow keys as input keys. Also
2274         fire DateChanged event instead of DateSelected event when
2275         the date was changed by keyboard interaction.
2276
2277 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2278
2279         * DateTimePicker.cs: Handle DateChanged for the associated
2280         month_calendar control, and set month_calendar.Font from 
2281         OnFontChanged method, as well as resize the height of the
2282         control when needed. Make PreferredHeight proportional.
2283
2284 2006-09-01  Chris Toshok  <toshok@ximian.com>
2285
2286         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
2287         properties.
2288
2289         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
2290
2291 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
2292
2293         * FileDialog.cs: Set ClientSize instead of window size, to allow space
2294           for decorations (Fixes #79219)
2295
2296 2006-09-01  Mike Kestner  <mkestner@novell.com>
2297
2298         * ComboBox.cs: first stab at sorting plus some selection handling
2299         fixes to bring us more in line with MS behavior.  Also switches back
2300         to index based selection.  Alternative patches for index-based 
2301         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
2302         and latency@gmx.de on bug 78848.  I assume they were similar to this
2303         code I've had simmering in my tree forever.
2304         [Fixes #78848]
2305
2306 2006-09-01  Chris Toshok  <toshok@ximian.com>
2307
2308         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
2309         when setting list position guard against ending up with a -1 index
2310         (the other part of the fix for #78812).  Should probably make sure
2311         we don't need the analogous fix in the ItemDeleted case.
2312
2313         * DataGrid.cs:
2314         - in SetDataSource, work around the fact that the way
2315         OnBindingContextChanged is invoked will cause us to re-enter this
2316         method.  I'll remove the hack once I investigate
2317         OnBindingContextChanged.
2318
2319         - fix the logic in set_DataSource and set_DataMember (basically
2320         what to do if the other of the two is null.)
2321         
2322         - in OnListManagerItemChanged, we need to take into account the
2323         edit row when deciding whether or not to call RecreateDataGridRows
2324         (part of the fix for #78812).
2325
2326 2006-09-01  Jackson Harper  <jackson@ximian.com>
2327
2328         * Splitter.cs: Don't do anything if there is no control to affect
2329         (prevents us from crashing in weird tet cases).
2330         * TreeView.cs: Bounding box for the mouse movement reverting
2331         focus/selection back to previously selected node.  This matches
2332         MS, and makes the tree a lot more useable.
2333         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
2334         use clipping so they are not drawn.  This fixes when the control
2335         is set to have a transparent background, or if it was over an
2336         image.
2337
2338 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
2339
2340         * MimeIcon.cs: Improved handling for reading default icons when
2341           using gnome (2.16 made it necessary). Check and read svg icons
2342           first, then 48x48 and then 32x32 icons.
2343
2344 2006-08-31  Chris Toshok  <toshok@ximian.com>
2345
2346         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
2347         visible.
2348
2349         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
2350         ProcessKeyPreview.  Fixes part of #77806.
2351
2352         * DataGrid.cs: big patch.
2353
2354         - revert the queueing up of DataSource/DataMember if inside
2355         BeginInit/EndInit calls.  That's not the way the datagrid achieves
2356         its delayed databinding.  Instead, call SetDataSource in
2357         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
2358         #78811.
2359
2360         - Also, it wasn't mentioned in #78811, but the test case exhibits
2361         behavior that was lacking in our datagrid implementation - Columns
2362         that have mapping names that don't exist in the datasource's
2363         properties aren't shown.  Yuck.  To fix this I added the bound
2364         field to the column style, and basically any calculation to figure
2365         out anything about columns uses a loop to find the bound columns.
2366         still need to investigate if I can cache an array of the bound
2367         columns or if the indices must be the same.
2368
2369         - When setting CurrentCell, we no longer abort if the cell being
2370         edited was in the add row.  This fixes the other part of #77806.
2371
2372         - The new code also fixes #78807.
2373         
2374         * ThemeWin32Classic.cs: perpetrate the same disgusting
2375         column.bound field hack, and only render bound fields.
2376
2377 2006-08-31  Chris Toshok  <toshok@ximian.com>
2378
2379         * DataGridColumnStyle.cs: add bound field.  this field is true if
2380         the datasource has a property corresponding to the mapping name.
2381
2382         * DataGridTableStyle.cs: set the bound field on the column styles
2383         depending on whether or not we have a column for that property.
2384
2385 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
2386
2387         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
2388           splitter control (fixes #79228)
2389
2390 2006-08-31  Chris Toshok  <toshok@ximian.com>
2391
2392         * DataGridColumnStyle.cs: we need to delay the assignment of
2393         property descriptor until the last possible moment due to the lazy
2394         databinding stuff in the datagrid.  Also, fix the exceptions
2395         thrown by CheckValidDataSource to match MS.
2396
2397 2006-08-31  Jackson Harper  <jackson@ximian.com>
2398
2399         * Form.cs: When activated select the active control, if there is
2400         no active control, we select the first control.
2401         * XplatUIX11.cs: If there is no focus control when we get a
2402         FocusIn event, find the toplevel form and activate it.  This
2403         occurs when you popup a window, it becomes the focus window, then
2404         you close that window, giving focus back to the main window.
2405
2406 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2407
2408         * MonthCalendar.cs: 
2409         * ThemeWin32Classic.cs: Cache Font in bold style, as well
2410         as StringFormat with Center alignments in MonthCalendar,
2411         instead of creating new ones when drawing the control. 
2412         Also, draw the month name in bold style.
2413
2414 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
2415
2416         * Control.cs:
2417           - PerformLayout(): It would seem MS performs the fill even if the 
2418             control is not visible (part of #79218 fix)
2419           - ResetBackColor(): Use the setter to reset the color, to allow
2420             overriders to catch the change.
2421         * Form.cs:
2422           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
2423           - CreateHandle(): dito (part of $79218 fix)
2424           - Don't set an icon if we have a dialog
2425         * ScrollableControl.cs:
2426           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
2427           - ScrollIntoView(): No need to scroll if control is already visible
2428             (resolves fixme and fixes #79218)
2429
2430 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2431
2432         * MonthCalendar.cs: Change proportions in SingleMonthSize
2433         to match the aspect of the original control.
2434
2435 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
2436
2437         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
2438           get updated when they get maximized.
2439
2440 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
2441
2442         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
2443
2444 2006-08-29  Chris Toshok  <toshok@ximian.com>
2445
2446         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
2447
2448 2006-08-29  Jackson Harper  <jackson@ximian.com>
2449
2450         * TreeView.cs: Need to track selected node and highlighted node,
2451         they aren't always the same thing, when the mouse is down on a
2452         node it is hilighted, but not selected yet.
2453         - Do the HideSelection stuff right
2454         - Need to focus on rbutton mouse down. And redraw selection when
2455         right click is mouse upped.
2456
2457 2006-08-29  Mike Kestner  <mkestner@novell.com>
2458
2459         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
2460         when SubItems.Count < Columns.Count.  [Fixes #79167]
2461
2462 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
2463
2464         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
2465
2466 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
2467
2468         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
2469           from X. Only send based on ConfigureNotify if we don't have the
2470           correct location in hwnd (if the window manager moved us)
2471
2472 2006-08-28  Mike Kestner  <mkestner@novell.com>
2473
2474         * ListView.cs: remove a TODO. 
2475         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
2476         [Fixes ListView part of #79166]
2477
2478 2006-08-28  Mike Kestner  <mkestner@novell.com>
2479
2480         * ListView.cs: move wheel handler to parent since it is focused
2481         instead of the item_control now.  [Fixes #79177]
2482
2483 2006-08-28  Mike Kestner  <mkestner@novell.com>
2484
2485         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
2486         when the control is focused. [Fixes #79171]
2487
2488 2006-08-28  Mike Kestner  <mkestner@novell.com>
2489
2490         * ListView.cs: size the item and header controls for empty and
2491         unscrollable views.
2492         * ThemeWin32Classic.cs: draw disabled backgrounds.
2493         [Fixes #79187]
2494
2495 2006-08-28  Chris Toshok  <toshok@ximian.com>
2496
2497         * Form.cs: remove unused "active_form" static field.
2498
2499         * Hwnd.cs: lock around accesses to static windows collection.
2500
2501         * Application.cs: lock threads in Exit ().
2502
2503 2006-08-28  Chris Toshok  <toshok@ximian.com>
2504
2505         * NativeWindow.cs: lock around accesses to window_collection.
2506         
2507 2006-08-28  Chris Toshok  <toshok@ximian.com>
2508
2509         * Control.cs: err, fix this the right way, by locking on controls
2510         when using it.  not by making it synchronized.
2511
2512 2006-08-28  Chris Toshok  <toshok@ximian.com>
2513
2514         * Control.cs: make the static "controls" field synchronized, as it
2515         gets updated from multiple threads.
2516
2517 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
2518
2519         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
2520           Prevent other threads from exiting when calling thread sets quit state.
2521         * XEventQueue.cs: Added PostQuitState property
2522
2523 2006-08-27  Chris Toshok  <toshok@ximian.com>
2524
2525         * AsyncMethodData.cs: add a slot for the window handle.
2526
2527         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
2528         window (the destination control's window, not the foster window).
2529
2530         * Control.cs (BeginInvokeInternal): store the window's handle in
2531         the AsyncMethodData.
2532         
2533
2534 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
2535
2536         * XplatUIX11.cs:
2537           - PostQuitMessage: Removed resetting S.D display handle, we might have
2538             another loop started after calling PostQuitMessage (Fixes #79119)
2539           - Created destructor to reset S.D handle
2540
2541 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
2542
2543         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
2544
2545 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
2546
2547         * TextControl.cs (Insert): Update the caret position even if we don't
2548           have a handle yet, just don't call the driver in that case.
2549         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
2550           to the end of the new selection text (Fixes #79184)
2551
2552 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
2553
2554         * Form.cs (Activate): Only activate if the handle is created)
2555         * Control.c:
2556           - Mark window as invisible when it's disposed
2557           - Check if window handle is created when setting window visible, 
2558             instead of relying just on the is_created variable
2559           - Check if object is disposed when creating the control (Fixes #79155)
2560
2561 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
2562
2563         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
2564           when allowing layout again. Otherwise we re-generate the anchoring 
2565           distance to the border again and actually alter what the user wanted
2566           This is ugly, it'd be better if we used DisplayRectangle instead of
2567           ClientRectangle for Control.UpdateDistances, but that causes us to
2568           have other problems (initial anchoring positons would be wrong)
2569           (Fixes #78835)
2570
2571 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
2572
2573         * Control.cs:
2574           - The size and location setters shouldn't go directly to 
2575             SetBoundsCore, but to SetBounds, which triggers layout on the
2576             parent, then calls SetBoundsCore. (Related to fix for #78835)
2577           - SetBounds: Moved actual location update code into this function
2578             from SetBoundsCore, to match MS. Added call to PerformLayout if
2579             we have a parent (to trigger resizing of anchored parents if the 
2580             child size has changed (see testcase for #78835) 
2581         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
2582           new control code
2583         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
2584
2585 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
2586
2587         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
2588           System.Drawing when a toplevel window gets closed; there might
2589           be other toplevel windows belonging to the same app (Fixes #78052)
2590
2591 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
2592
2593         * FileDialog.cs: After reading FileDialog settings from mwf_config
2594           use Desktop prefix only if a real folder doesn't exist anymore.
2595         * FontDialog.cs: Added char sets.
2596           It is now possible to select the font, size or style with the
2597           textboxes.
2598
2599 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
2600
2601         * PrintPreviewDialog.cs: Use assembly name constants.
2602
2603 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
2604
2605         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
2606           scrollbar from whacking it's buttons)
2607
2608 2006-08-24  Chris Toshok  <toshok@ximian.com>
2609
2610         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
2611         in this patch (aggregating setting Left/Top/Width/Height to
2612         setting Bounds on the scrollbars), but the crux of the fix is in
2613         Recalculate, where we scroll by the remaining scroll_position if
2614         we're hiding a scrollbar.  The 2*$5 reward in the comment is
2615         serious.
2616
2617 2006-08-24  Jackson Harper  <jackson@ximian.com>
2618
2619         * MdiClient.cs:
2620         * MdiWindowManager.cs: If the form is made a non-mdi window we
2621         need to remove the form closed event so that closing forms works
2622         correctly.
2623
2624 2006-08-24  Jackson Harper  <jackson@ximian.com>
2625
2626         * Control.cs: Make IsRecreating internal so that the driver can
2627         check it
2628         - Temporarily remove the Hide when controls are removed, its
2629         making a whole bunch of things not work because visibility isn't
2630         getting reset elsewhere correctly
2631         * Form.cs: Need to do a full handle recreation when the mdi parent
2632         is set.
2633         * XplatUIX11.cs: If we are recreating handles don't dispose the
2634         HWNDs.  What was happening is the handles were being recreated in
2635         SendWMDestroyMessages, but then flow continued on in that method
2636         and destroyed the new handles.
2637
2638 2006-08-23  Jackson Harper  <jackson@ximian.com>
2639
2640         * Form.cs: MdiClient is always at the back of the bus
2641         * Control.cs: When the order of items in the collection is changed
2642         we need to reset the all_controls array
2643         - do the same sorta setup thats done when adding a control when a
2644         control is set on the collection.
2645
2646 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
2647
2648         * TextBoxBase.cs (get_Text): Return an empty array if our document
2649           is empty (fixes #79052)
2650
2651 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
2652
2653         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
2654           on WM_SYSCHAR messages (fixes #79053)
2655
2656 2006-08-23  Chris Toshok  <toshok@ximian.com>
2657
2658         * DataGrid.cs: fix flickering when scrolling vertically.
2659
2660 2006-08-23  Chris Toshok  <toshok@ximian.com>
2661
2662         * DataGrid.cs (EndEdit): only invalidate the row header when we
2663         need to.
2664
2665 2006-08-23  Chris Toshok  <toshok@ximian.com>
2666
2667         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
2668         methods.  fixes the flicker when scrolling around.
2669
2670 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
2671
2672         * FileDialog.cs: Making sure the control is created before we get a 
2673           chance to use it with BeginInvoke (Fixes #79096)
2674
2675 2006-08-23  Chris Toshok  <toshok@ximian.com>
2676
2677         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
2678         width to use when painting the rows.
2679
2680 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
2681
2682         * TextBoxBase.cs:
2683           - Throw ArgumentException if a negative value is passed to SelectionLength
2684           - Update the selection end if start is moved. end needs to be always
2685             after start. (Fixes #79095)
2686           - Track selection length; MS keeps the selection length even if start
2687             is changed; reset on all other operations affection selection
2688
2689 2006-08-22  Jackson Harper  <jackson@ximian.com>
2690
2691         * TreeView.cs: Make sure both scrollbars get displayed and sized
2692         correctly when the other bar is visible.
2693         - Use the original clip rectangle for checking if the area between
2694         the two scrollbars is visible, not the viewport adjusted clipping
2695         rectangle.
2696
2697 2006-08-22  Jackson Harper  <jackson@ximian.com>
2698
2699         * Binding.cs: We don't use IsBinding because it requires the
2700         control to be created, which really shouldn't be necessary just to
2701         set a property on the control.
2702
2703 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2704
2705         * ComboBox.cs: Some CB.ObjectCollection methods must throw
2706         ArgumentNullReferenceException when the argument is null.
2707
2708 2006-08-21  Jackson Harper  <jackson@ximian.com>
2709
2710         * Timer.cs: Track the thread that the timer is started in (NOT
2711         CREATED), this way messages for it will only be triggered on its
2712         queue.
2713         * XEventQueue.cs: Track the timers here, this makes timers per
2714         thread, like MS.
2715         * XplatUIX11.cs: The timers are moved to the XEventQueue.
2716
2717 2006-08-19  Chris Toshok  <toshok@ximian.com>
2718
2719         * XplatUIX11.cs: after further communication with pdb, we get the
2720         best of both worlds.  SetZOrder working for un-Mapped windows, and
2721         no X errors for un-mapped windows.
2722
2723 2006-08-19  Chris Toshok  <toshok@ximian.com>
2724
2725         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
2726         as it was causing pdn toolbars to not have the correct stacking.
2727
2728 2006-08-18  Mike Kestner  <mkestner@novell.com> 
2729
2730         * ListView.cs : guard against negative ClientArea.Width in scrollbar
2731         calculation.  Not sure why control should ever be setting a negative
2732         width though.  Fixes #78931.
2733
2734 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2735
2736         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
2737         null items in ObjectCollection class.
2738         * ListBox.cs.: Likewise.
2739
2740 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
2741
2742         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
2743           as the base method in ThemeWin32Classic should work fine.
2744           Fixed bug #78607.
2745
2746 2006-08-18  Jackson Harper  <jackson@ximian.com>
2747
2748         * Binding.cs: When validating if the value entered doesn't convert
2749         properly reset to the old value.
2750         * RadioButton.cs: Don't fire click when we get focus.
2751
2752 2006-08-18  Jackson Harper  <jackson@ximian.com>
2753
2754         * FileDialog.cs: Paint the selection on the directory combobox the
2755         same way as on MS. 
2756
2757 2006-08-17  Jackson Harper  <jackson@ximian.com>
2758
2759         * ErrorProvider.cs: Don't allow the error control to be selected.
2760         * Control.cs: Don't send the SetFocus messages, the control
2761         activation will do this, and if we do it blindly here validation
2762         does not work.
2763
2764 2006-08-17  Jackson Harper  <jackson@ximian.com>
2765
2766         * Control.cs:
2767         * ContainerControl.cs: Make validation events fire in the correct
2768         order.  TODO: For some reason the first validation event is not
2769         getting fired.
2770
2771 2006-08-17  Mike Kestner  <mkestner@novell.com> 
2772
2773         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
2774
2775 2006-08-17  Mike Kestner  <mkestner@novell.com> 
2776
2777         * ComboBox.cs : implement scroll wheel support for popped-down
2778         state. Fixes #78945. 
2779
2780 2006-08-17  Jackson Harper  <jackson@ximian.com>
2781
2782         * TreeView.cs: Specify treeview actions (old patch that didn't get
2783         committed for some reason).
2784         - Don't let the mouse wheel scroll us too far.  Just want to make
2785         the bottom node visible, not scroll it all the ways to the top.
2786
2787 2006-08-17  Jackson Harper  <jackson@ximian.com>
2788
2789         * XplatUIX11.cs: Mouse wheel events go to the focused window.
2790
2791 2006-08-17  Mike Kestner  <mkestner@novell.com> 
2792
2793         * ComboBox.cs : don't do mouseover selection in simple mode.
2794
2795 2006-08-16  Jackson Harper  <jackson@ximian.com>
2796
2797         * Form.cs: Fire the closing events for all the mdi child windows
2798         when a window is closed.  If the cancel args are set to true, the
2799         main window still gets the event fired, but it doesn't not close.
2800         * MdiWindowManager.cs: Do this closing cleanup in a Closed
2801         handler, instead of when the button is clicked, so cancelling the
2802         close works correctly.
2803         * ComboBox.cs: Send the mouse down to the scrollbar.
2804
2805 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2806
2807         * ListBox.cs: When passing 'null' to SelectedItem,
2808         set SelectedIndex to -1, to unselect items. This is the
2809         observed behaviour in .Net.
2810
2811 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
2812
2813         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
2814           MS flags saying there won't be any. (fixes #78800)
2815         * Control.cs (HandleClick): Made virtual
2816
2817 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
2818
2819         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
2820           cultures. Fixed bug #78399.
2821
2822 2006-08-16  Jackson Harper  <jackson@ximian.com>
2823
2824         * Form.cs: Use the MdiClients MdiChildren property to access
2825         MdiChildren instead of creating the array from the child controls.
2826         * MdiClient.cs: Maintain a separate array of the mdi children, so
2827         that insertion order is maintained when the Z-order is changed.
2828
2829 2006-08-16  Mike Kestner  <mkestner@novell.com> 
2830
2831         * ListView.cs : add an ItemComparer and default to it for sorting.
2832         Fixes #79076, but sorting needs a complete overhaul to be compat with
2833         MS.
2834
2835 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
2836
2837         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
2838
2839 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
2840
2841         * Hwnd.cs (Mapped): Properly traverse the tree
2842
2843 2006-08-15  Chris Toshok  <toshok@ximian.com>
2844
2845         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
2846         pass manager.Current.GetType() to ParseData.  It has to be the
2847         property type.  So, hold off doing the ParseData until we're in
2848         SetPropertyValue where we know the type.  This fixes the crash in
2849         #78821 but the textbox is still empty.
2850
2851 2006-08-15  Chris Toshok  <toshok@ximian.com>
2852
2853         * DataGrid.cs:
2854         - when we're scrolling, only call Edit() again if the
2855         current cell is still unobscured. Fixes bug #78927.
2856         - when handling mousedown on a cell, ensure the cell is visible
2857         before calling Edit.
2858         - remove the properties from DataGridRow, and remove the
2859         DataGridParentRow class altogether.
2860         
2861
2862 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
2863
2864         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
2865           fire OnTextChanged by ourselves. There's no point calling base,
2866           we don't set the base value anywhere else. Fixes #78773.
2867
2868 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2869
2870         * ListBox.cs: Call CollectionChanged when modifying
2871         an item from Items indexer, to update the actual items
2872         in the list box.
2873
2874 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2875
2876         * PrintDialog.cs: Small fixes for focus and a pair of checks,
2877         to match .Net behaviour.
2878
2879 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
2880
2881         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
2882
2883 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
2884
2885         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
2886
2887 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
2888
2889         * MessageBox.cs: Prevent potential NRE exception.
2890         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
2891
2892 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
2893
2894         * MessageBox.cs: Calculate the owner of a messagebox, also make
2895           it topmost. Fixes #78753
2896
2897 2006-08-14  Chris Toshok  <toshok@ximian.com>
2898
2899         * XplatUIX11.cs: A couple of fixes so that metacity will let us
2900         programmatically move windows.  first, set the PPosition hint as
2901         well as the USPosition hint.  Second include some code from pdb
2902         that sets the window type to NORMAL when we set the transient for
2903         hint.  This is because, in the absence of a window type, metacity
2904         thinks any window with TransientFor set is a dialog, and refuses
2905         to let us move it programmatically.  fascists.
2906
2907 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
2908
2909         * XplatUIX11.cs: When setting normal hints, take into consideration
2910           an different hints previously set so we don't delete them (fixes #78866)
2911
2912 2006-08-12  Chris Toshok  <toshok@ximian.com>
2913
2914         * ToolBarButton.cs: make Layout return a boolean, if something to
2915         do with the button's layout changed.
2916
2917         * ToolBar.cs:
2918         - add another parameter to Redraw, @force, which all existing
2919           calls set to true.
2920         - make the Layout function return a boolean which is true if the
2921           layout has actually changed.  Redraw now uses this (and @force)
2922           to determine when to invalidate.  At present the only place
2923           where @force can be false is the call from OnResize, when
2924           background_image == null.  So, resizing a toolbar when the
2925           layout doesn't change results in no drawing.
2926
2927 2006-08-12  Chris Toshok  <toshok@ximian.com>
2928
2929         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
2930         the VScrollBar and HScrollbar reversed.  oops.
2931
2932         * DataGrid.cs: fix the logic that assigns sizes to the implicit
2933         scrollbars.  we were assigning them twice (once in
2934         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
2935         therefore causing two scrollbar resizes (and redraws?) to happen
2936         per grid resize.
2937
2938 2006-08-12  Chris Toshok  <toshok@ximian.com>
2939
2940         * ToolBarButton.cs: redraw the entire button if the theme tells us
2941         to.
2942
2943         * Theme.cs: add ToolBarInvalidateEntireButton.
2944
2945         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
2946         buttons, just the border.
2947
2948         * ThemeNice.cs: redraw the entire toolbar button since we need to
2949         draw the highlight image.
2950
2951         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
2952         we need to redraw the entire button (not just the border).
2953
2954 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
2955
2956         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
2957           for vertical bars. Fixes the mismatches shown by #78513
2958
2959 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
2960
2961         * FileDialog.cs: If a saved/remembered path doesn't exist
2962           anymore, fall back to "Desktop".
2963
2964 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
2965
2966         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
2967           parent. It's apparently legal to not have one
2968         * XplatUIX11.cs:
2969           - SetZOrder: Don't try to set Z-Order on an unmapped window
2970           - CreateWindow: 0,0 are legal coordinates for a window. don't move
2971             it unless the coordinates are negative
2972
2973 2006-08-10  Mike Kestner  <mkestner@novell.com>
2974
2975         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
2976         when setting to null per msdn docs.  Fixes #78854.
2977
2978 2006-08-10  Chris Toshok  <toshok@ximian.com>
2979
2980         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
2981         flickering by setting a clip rectangle on the Graphics when we
2982         need to redraw just a particular menuitem.  Also, rename "OnClick"
2983         to "OnMouseDown" to reflect what it actually is.
2984         
2985         * Form.cs: track the OnMouseDown change.
2986
2987 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
2988
2989         * CommonDialog.cs: Properly inherit the CreateParams from the form
2990           and only change what we need. Fixes #78865
2991
2992 2006-08-10  Chris Toshok  <toshok@ximian.com>
2993
2994         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
2995         flickering in flat mode (and most of the flickering in general) by
2996         only invalidating the button border (and not the entire rectangle)
2997         when the state changes.  A couple of cases still flicker:
2998         ToggleButtons, and the dropdown arrow case when the user mouse
2999         ups.
3000
3001 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
3002
3003         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
3004           for german keyboards. Numlock state shouldn't affect the behaviour
3005           of the Del key. Fixes bug #78291.
3006
3007 2006-08-10  Chris Toshok  <toshok@ximian.com>
3008
3009         * ListControl.cs: remove the items.Clear line from BindDataItems,
3010         as this is the first thing done by both subclasses in their
3011         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
3012         passed -1, refresh the list.  This gets databinding working when
3013         the datasource is set on the list before the datasource is
3014         populated (as in wf-apps/ReportBuilder.)
3015
3016         * ComboBox.cs: remove the argument to BindDataItems.  This call
3017         should really go away, and be initiated by the ListControl code.
3018
3019         * ListBox.cs: same.
3020
3021 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
3022
3023         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
3024           if no data is in the document when the control is displayed
3025
3026 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
3027
3028         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
3029           yes (fixes #78806)
3030         * TextControl.cs: 
3031           - PositionCaret: Allow positioning of caret but don't call methods 
3032             requiring a handle if the window isn't created yet
3033           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
3034           - owner_HandleCreated: Don't position the caret, just update it's 
3035             location. User might have already set a different position
3036
3037 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
3038
3039         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
3040           windows. Screws up the returned coordinates for child windows. 
3041           Fixes #78825. I'm hoping this doesn't break something, since the
3042           code was explicitly put in 8 months ago, but no bug was attached.
3043           Menus still seem to work properly.
3044
3045 2006-08-08  Chris Toshok  <toshok@ximian.com>
3046
3047         * DataGrid.cs: make BeginInit/EndInit actually do what they're
3048         supposed to do - delay data binding until the EndInit call.  Also,
3049         make the table style collection's CollectionChangeAction.Refresh
3050         work properly.
3051
3052         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
3053         (with action = Refresh) when a consituent table's MappingName is
3054         changed.
3055
3056 2006-08-08  Chris Toshok  <toshok@ximian.com>
3057
3058         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
3059         Invalidate, since changing the text can change the size of the all
3060         toolbar buttons.
3061
3062 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
3063
3064         * Form.cs (AddOwnedForm): Still need to add the form to our listif
3065           we don't have it yet
3066
3067 2006-08-08  Chris Toshok  <toshok@ximian.com>
3068
3069         * PrintControllerWithStatusDialog.cs: don't .Close() the status
3070         dialog, as this causes X errors later on, since we actually
3071         destroy the window.  Instead, .Hide() it.
3072
3073 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
3074
3075         * ComboBox.cs: Added focus reflection for popup window
3076         * XplatUIX11.cs: 
3077           - Removed transient setting for non-app windows for now, not sure it
3078             was needed
3079           - Fixed logic checking if we have captions when deciding 
3080             override_redirect, WS_CAPTION is two bits and a 0 check was not
3081             sufficient
3082           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
3083             complicated
3084         * Form.cs: 
3085           - AddOwnedForm: Don't just add the form to the list, call the property
3086             to ensure the driver is informed about the ownership as well
3087           - CreateHandle: Set the TopMost status in the driver if we have an owner
3088         * XplatUI.cs: Fixed debug statement
3089
3090 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
3091         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
3092           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
3093           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
3094           TrackBarRenderer.cs: Make constructor private.
3095         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
3096         * ProfessionalColorTable.cs: Make properties virtual.
3097
3098 2006-08-06  Duncan Mak  <duncan@novell.com>
3099
3100         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
3101         is not changing.
3102
3103 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
3104         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
3105           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
3106           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
3107           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
3108           Initial import of new 2.0 classes.
3109
3110 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
3111         * Application.cs: Add 2.0 VisualStyles properties.
3112
3113 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
3114         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
3115           XplatUIX11.cs: Create property to allow access to existing private
3116           variable "themes_enabled"
3117
3118 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3119
3120         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
3121         file size, as otherwise our class libraries fail using windows. Fixes
3122         bug #78759.
3123
3124 2006-08-04  Jackson Harper  <jackson@ximian.com>
3125
3126         * Form.cs:
3127         * XplatUIX11.cs: Move the toolwindow window manager creation into
3128         the X11 driver, this way on win32 we can let windows create/handle
3129         the toolwindows.
3130
3131 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3132
3133         * PrintDialog.cs: Remove some redundant checks, add some others,
3134         clean some code, and move the focus to the text boxes when the
3135         values are incorrect.
3136
3137 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
3138
3139         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
3140
3141 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
3142
3143         * NumericUpDown.cs: Setting the Minimum and Maximum is now
3144           handled correctly. Fixes bug #79001.
3145
3146 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3147
3148         * PrintDialog.cs: The "Copies" numeric up down must have
3149         set the Minimum property to 1; only if the value is bigger
3150         than 1, activate "Collate" check box. This is the behaviour of .Net.
3151         Also modify the Document elements only if it is not null.
3152
3153 2006-08-03  Jackson Harper  <jackson@ximian.com>
3154
3155         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
3156         length. (We have a larger array then actual node count).
3157                 
3158 2006-08-03  Jackson Harper  <jackson@ximian.com>
3159
3160         * ComboBox.cs: Don't show selection by default.
3161         - The SelectAll isn't needed here, since the focus code should do
3162         that
3163         - DDL style lists to manual selection drawing, so when they
3164         get/lose focus they have to invalidate.
3165
3166 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
3167
3168         * TextBoxBase.cs: Don't always show all selections by default.
3169
3170 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
3171         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
3172           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
3173           Fixed various typos.
3174
3175 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
3176
3177         * Control.cs: Removing the controls in a ControlCollection with
3178           Clear now hides the controls as expected. Fixes bug #78804. 
3179
3180 2006-08-03  Jackson Harper  <jackson@ximian.com>
3181
3182         * Control.cs: Revert previous focus patch, it breaks reflector.
3183
3184 2006-08-03  Jackson Harper  <jackson@ximian.com>
3185
3186         * ComboBox.cs: Cleanup selection and focus with the combobox.
3187         This also eliminates some duplicated keyboard code, since now
3188         everything is handled by the main class.
3189         - Make list selection work on mouse up instead of down, to match
3190         MS.
3191
3192 2006-08-02  Jackson Harper  <jackson@ximian.com>
3193
3194         * Control.cs: Setting focus needs to go through the whole
3195         selection mechanism.
3196
3197 2006-08-02  Chris Toshok  <toshok@ximian.com>
3198
3199         * PrintPreviewDialog.cs: change MinimumSize to use
3200         base.MinimumSize so it works.
3201
3202 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
3203
3204         * TextControl.cs:
3205           - UpdateCaret: Added sanity check in case caret isn't defined yet
3206           - Line.Delete: Now updating selection and caret markers if we're
3207             transfering a node (Properly fixes #78323)
3208           - SetSelectionEnd: Added sanity check
3209         * TextBoxBase.cs: Removed broken attempt to fix #78323
3210
3211 2006-08-01  Chris Toshok  <toshok@ximian.com>
3212
3213         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
3214         Close() call is handled in Form, not here.
3215
3216 2006-08-01  Chris Toshok  <toshok@ximian.com>
3217
3218         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
3219         layout/rendering.
3220
3221         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
3222         for sizes < 100% zoom.  The code now aggressively attempts to keep
3223         from calling document.Print (), and tries not to use the scaling
3224         g.DrawImage whenever possible (it still does if you scale to >
3225         100%, since usually that involves huge images).
3226
3227         * PrintPreviewControl.cs: hook up the close button.
3228
3229 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
3230         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
3231           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
3232           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
3233           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
3234           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
3235           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
3236           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
3237           Removed [Serializable] for 2.0 Event Handlers.
3238
3239 2006-07-31  Jackson Harper  <jackson@ximian.com>
3240
3241         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
3242         * TextControl.cs: Uncomment out the body of this method.
3243
3244 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
3245
3246         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
3247           standard cursors.
3248
3249 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
3250
3251         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
3252           that embed TextBox and need selections visible even if textbox is not
3253           focused to enforce that behaviour.
3254         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
3255           selection drawing
3256
3257 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
3258
3259         * TextControl.cs:
3260           - Added new SetSelectionStart/SetSelectionEnd overloads
3261           - Fixed viewport width assignment to be accurate
3262           - Adjusted alignment line shift calculations to allow cursor on right
3263             aligned lines to be always visible at the right border (like MS)
3264         * TextBoxBase.cs:
3265           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
3266           - TextBoxBase_SizeChanged: recalculating canvas on size changes
3267           - CalculateScrollBars: Use ViewPort size instead of window size, to
3268             properly consider space occupied by the border and scrollbars 
3269             (Fixes #78661)
3270           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
3271             calculations; no longer leaves artifacts
3272           - CaretMoved: Adjusted window scrolling to match MS and fixed several
3273             calculation bugs (Still missing right/center align calculations)
3274
3275 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
3276
3277         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
3278           use of both scroll rect and clip rect, as they do the same.
3279
3280 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
3281
3282         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
3283           in the event handler (fixes #78912)
3284
3285 2006-07-31  Chris Toshok  <toshok@ximian.com>
3286
3287         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
3288         grid.ListManager.Count, since grid.ListManager might be null.
3289         This of course begs the question "why are we drawing rows for a
3290         grid with no list manager (and therefor no rows)?"  Fixes the
3291         crash in bug #78929.
3292
3293 2006-07-31  Chris Toshok  <toshok@ximian.com>
3294
3295         * RelatedPropertyManager.cs: Don't always chain up to the parent
3296         ctor.  instead, call SetDataSource if the parent's position is !=
3297         -1.  Fixes the crash in #78822.
3298
3299 2006-07-31  Chris Toshok  <toshok@ximian.com>
3300
3301         * DataGrid.cs (get_ListManager): use field instead of property
3302         accessors for datasource and datamember.
3303         (RowsCount): make internal again.
3304         (OnMouseDown): end edits before resizing columns/rows.
3305         (OnMouseUp): restart edits after resizing columns/rows.
3306
3307 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
3308
3309         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
3310           This fixes the situation where the last set cursor is displayed
3311           whenever the mouse is over scrollbars.
3312
3313 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3314
3315         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
3316         Document properties, as well as initial values.
3317
3318 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
3319
3320         * XplatUIWin32.cs (SetBorderStyle): Setting both border
3321           and ClientEdge results in a 3-pixel border, which is
3322           wrong.
3323
3324 2006-07-28  Jackson Harper  <jackson@ximian.com>
3325
3326         * TreeNodeCollection.cs: Fix the clear method.
3327         - Fix the Shrink also
3328
3329 2006-07-27  Jackson Harper  <jackson@ximian.com>
3330
3331         * TreeView.cs: Make sure the visible order is computed when we
3332         attempt to size the scrollbars (for trees that mess with the
3333         scrolling when they shouldn't.
3334         - Make sure to give the scrollbars valid values.
3335
3336 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
3337
3338         * XplatUIX11.cs: Move motion compression code to where it
3339           has less performance impact
3340
3341 2006-07-26  Jackson Harper  <jackson@ximian.com>
3342
3343         * UpDownBase.cs: When the control is selected make the child
3344         controls non selectable, so that a click on them won't do a
3345         focus/unfocus cycle.
3346         - Don't give focus to the text box when the spinner is selected.
3347         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
3348
3349 2006-07-26  Chris Toshok  <toshok@ximian.com>
3350
3351         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
3352         satisfied with this solution.  If the bitmaps are small, we should
3353         just cache them in the PrintPreviewDialog and draw them here.
3354         Also, the layout is broken for the 2-up and 3-up cases.
3355
3356         * Theme.cs: add PrintPReviewControlPaint.
3357
3358         * PrintPreviewDialog.cs: first pass implementation.
3359
3360         * PrintPreviewControl.cs: first pass implementation.  No
3361         scrollbars yet.
3362
3363         * PrintDialog.cs: only validate fields if that particular portion
3364         of the UI is enabled.  Also, set the document's controller to a
3365         PrintControllerWithStatusDialog wrapping the document's print
3366         controller.
3367
3368         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
3369         bring up a SaveFileDialog (i hope we don't want to match the
3370         behavior of the crappy windows file entry) and set the
3371         PrinterSettings.PrintFileName accordingly.
3372
3373 2006-07-26  Jackson Harper  <jackson@ximian.com>
3374
3375         * ContainerControl.cs: Add a field that disables auto selecting
3376         the next control in a container when the container is activated.
3377         * UpDownBase.cs: Don't select the text box when the up down is
3378         selected.
3379
3380 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
3381
3382         * XEventQueue.cs: Added methods for peeking (used for compression
3383           of successive events)
3384         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
3385           mouse move events (fixes #78732)
3386
3387 2006-07-25  Jackson Harper  <jackson@ximian.com>
3388
3389         * UpDownBase.cs: Use an internal class for the textbox so that we
3390         can control focus.  the updown control should always have focus,
3391         if either the text area or the buttons are clicked.
3392         - Send the key messages to the textbox, since it never actually
3393         has focus
3394         - Activate and decativate the textbox caret.
3395
3396 2006-07-24  Jackson Harper  <jackson@ximian.com>
3397
3398         * Control.cs: Use the directed select when selecting a control,
3399         this way the container controls override will get called and the
3400         whole ActiveControl chain will get triggered.  TODO: probably need
3401         to make sure this gets done everywhere instead of the old
3402         Select(Control).
3403         * ContainerControl.cs: Implement the directed Select method to
3404         find and activate the correct child control.    
3405         
3406 2006-07-22  Mike Kestner  <mkestner@novell.com>
3407
3408         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
3409         menu handling code so that clicks without a grab work too.
3410         [Fixes #78914]
3411
3412 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
3413
3414         * FileDialog.cs: Enable the BackButton when dirstack has one element.
3415           Added some small optimizations.
3416
3417 2006-07-21  Matt Hargett  <matt@use.net>
3418
3419         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
3420
3421 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
3422
3423         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
3424           tests pass and match MS in some strange border cases.
3425
3426 2006-07-21  Chris Toshok  <toshok@ximian.com>
3427
3428         * ThemeWin32Classic.cs: handle drawing of the relation links and
3429         parent row buttons.
3430
3431         * Theme.cs: change args to DataGridPaintParentRow.
3432
3433         * DataGrid.cs: Don't use controls for the relation links and
3434         parent buttons, so we have to handle all their interactions in
3435         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
3436         when we're navigating through child tables, so we can reinstate
3437         selection, expanded state, current cell, etc.
3438
3439 2006-07-20  Chris Toshok  <toshok@ximian.com>
3440
3441         * ToolBar.cs: When we redraw a button, for whatever reason,
3442         there's no reason to redraw the entire toolbar.  Also, don't call
3443         Control.Refresh from within Redraw, as it's much heavier than
3444         Invalidate (which is really what we want).
3445
3446 2006-07-20  Chris Toshok  <toshok@ximian.com>
3447
3448         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
3449         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
3450         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
3451         traces from within a debug IBindingList datasource
3452         (in mono/winforms/datagrid) for *days*, I've finally gotten things
3453         to work in a similar fashion.
3454
3455 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3456
3457         * ListBox.cs: Don't call Sort () when setting 
3458         the Sorted property to false (avoid an unnecessary sort).
3459
3460 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3461
3462         * ListControl.cs: DataSource should throw an ArgumentException
3463         instead of a normal exception when the argument is not of the 
3464         correct type.
3465
3466 2006-07-20  Mike Kestner  <mkestner@novell.com>
3467
3468         * Control.cs: add InternalPreProcessMessage to allow us to steal
3469         key events before MWF gets its paws on them.  Adapted from a
3470         suggestion by eno.
3471         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
3472         up/down/left/right navigation. Override the new internal control
3473         method to steal the events since they never make it to WndProc.
3474         * ToolBarButton.cs: don't worry about pushed when setting hilight
3475         since the drawing code prefers pushed to hilight. Invalidate on 
3476         Hilight changes. Fixes #78547 and #78525.
3477
3478 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
3479
3480         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
3481           the canvas size. Fixes #78868
3482
3483 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
3484
3485         * Splitter.cs: Track requested split position until first layout
3486           is performed. Fixes #78871
3487
3488 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
3489
3490         * Application.cs: Removed code that forces 1.x for the version
3491           number if the version started with 0. Not sure why that code was
3492           there and I couldn't find any bugs that indicated we needed it.
3493           Fixes #78869
3494
3495 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
3496
3497         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
3498           ResetDefaults(), just write some output to the console until it's
3499           implemented. Fixes bug #78907 for now. Eliminated two warnings.
3500
3501 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
3502
3503         * PropertyGridView.cs: set StartPosition of drop down forms
3504         so they appear in correct initial spot.  Fixes #78190.
3505
3506 2006-07-19  Mike Kestner  <mkestner@novell.com>
3507
3508         * ThemeWin32Classic.cs: use parent background color when drawing
3509         flat toolbars.  Restructure the conditionals to make sure non-flat
3510         non-Divider toolbars are filled too.  Fixes #78837.
3511
3512 2006-07-19  Mike Kestner  <mkestner@novell.com>
3513
3514         * ListBox.cs: Sort on collection changes even if the handle
3515         isn't created yet.  Fixes #78813.
3516
3517 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3518
3519         * ListControl.cs: DisplayMember should never be null,
3520         and now we assign String.Empty when null is passed to it (this
3521         is the .Net way).
3522
3523 2006-07-17  Mike Kestner  <mkestner@novell.com>
3524
3525         * ListViewItem.cs: restructure Font and subitem Font handling 
3526         to hold a specific font and refer back to owner on null.
3527         Fixes #78761.
3528
3529 2006-07-17  Mike Kestner  <mkestner@novell.com>
3530
3531         * ToolBar.cs: bandaid for side-effect of previous patch which was
3532         discarding explicit heights for non-AutoSize toolbars.  Need to
3533         extend my format tester to deal with AutoSize=false. Fixes #78864.
3534
3535 2006-07-15  Jackson Harper  <jackson@ximian.com>
3536
3537         * LabelEditTextBox.cs:
3538         * TreeView.cs: Use a new LabelEdit class for node editing, this
3539         class automatically 'closes' itself when it gets the enter key or
3540         loses focus.
3541         - Use the client rectangle when setting the trees scrollbars, so
3542         border style is taken into account.
3543         
3544 2006-07-14  Jackson Harper  <jackson@ximian.com>
3545
3546         * TreeNode.cs:
3547         * TreeView.cs: Make the editing work similar to MSs, firing the
3548         events correctly and ending edits correctly.
3549
3550 2006-07-14  Mike Kestner  <mkestner@novell.com>
3551
3552         * ToolBarButton.cs:
3553         * ToolBar.cs: layout restructuring and redraw enhancements to support
3554         formatting changes gracefully, like setting TextAlign, ImageList, 
3555         ButtonSize, and Appearance.  Handles explicit button sizing quirks
3556         of the MS controls.  Things like flat toolbars ignoring button size
3557         but becoming constant sized at the largest button's size.  Normal
3558         toolbars with an image set cannot be shrunk smaller than the image,
3559         but text can be clipped/ignored.
3560         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
3561         is zero.  Seems like DrawString should be smart enough to not put
3562         anything on screen though. Also trim labels and ellipsize at the char
3563         boundary, not word.
3564         Fixes #78711 and #78483.
3565
3566 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
3567
3568         * FolderBrowserDialog.cs: Disable "New Folder" button and
3569           "New Folder" contextmenu menuitem if a folder like "My Computer"
3570           is selected.
3571
3572 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
3573
3574         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
3575         * FolderBrowserDialog.cs:
3576           - Use MWFConfig to store and read size and position settings
3577           - Added code to create a new folder (button or context menu).
3578             Use TreeView labeledit to change the name of the new folder.
3579
3580 2006-07-14  Jackson Harper  <jackson@ximian.com>
3581
3582         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
3583         when the tree is scrolled we end editing.
3584
3585 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
3586
3587         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
3588           Down arrows
3589
3590 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
3591
3592         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
3593         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
3594         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
3595         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
3596         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
3597         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
3598         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
3599         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
3600         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
3601         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
3602         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
3603         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
3604         ListViewItemSelectionChangedEventHandler.cs,
3605         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
3606         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
3607         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
3608         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
3609         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
3610         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
3611         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
3612         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
3613         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
3614         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
3615         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
3616         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
3617         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
3618         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
3619         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
3620         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
3621         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
3622         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
3623         WebBrowserNavigatingEventHandler.cs, 
3624         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
3625
3626 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
3627
3628         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
3629         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
3630         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
3631         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
3632         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
3633         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
3634         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
3635         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
3636         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
3637         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
3638         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
3639         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
3640         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
3641         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
3642         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
3643         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
3644         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
3645         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
3646         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
3647         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
3648         ListViewItemStates.cs, MaskFormat.cs: Added
3649
3650 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
3651
3652         * PropertyGridView.cs: Fix keyboard navigation of drop down.
3653         Patch from eno for bug 78558.
3654         
3655 2006-07-13  Jackson Harper  <jackson@ximian.com>
3656
3657         * TreeView.cs: When an edit is finished make sure that the
3658         selected node is visible.
3659         - When setting the top/bottom use the scrollbars is_visible, so
3660         everything will be set correctly even if the tree isn't visible
3661         yet.
3662
3663 2006-07-13  Jackson Harper  <jackson@ximian.com>
3664
3665         * ComboBox.cs: Revert the item->index part of my previous patch.
3666         * TreeView.cs: Use LostFocus instead of Leave for detecting when
3667         the edit box has lost focus (duh).
3668         - Just make the edit box not visible when we get return, that will
3669         take the focus, which will call EndEdit
3670         * TreeNode.cs When we start editing, notify the treeview.
3671
3672 2006-07-12  Jackson Harper  <jackson@ximian.com>
3673
3674         * ComboBox.cs: Clear out old items before setting the item list.
3675         This prevents databound controls from having their items added
3676         twice.
3677         - Switch the combobox to use indices whereever possible instead of
3678         using Item's.  This allows usto navigate through lists that have
3679         more then one item with the same string value (ie a, b, b, a).
3680         - Scroll the listboxes scrollbar when a non visible item is
3681         highlighted
3682         - Allow keypress to cycle through all the possible values. For
3683         example if you have b1, b2, b3 and hold down the B key all the
3684         values will be cycled through.
3685         
3686 2006-07-12  Jackson Harper  <jackson@ximian.com>
3687
3688         * TextBoxBase.cs:
3689         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
3690         this using the internal methods.
3691         * Control.cs: Add OnGotFocusInternal.  A new method that allows
3692         controls to "override" OnGotFocus and change focus behavior if
3693         needed.
3694         - Same thing for LostFocus
3695         * ComboBox.cs: Pass off focus to the text control properly.
3696
3697 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
3698
3699         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
3700         * FolderBrowserDialog.cs: Almost a complete rewrite.
3701           - Better support for Environment.Specialfolders
3702           - Added support for MWFVFS
3703           - Made setting SelectedPath work
3704
3705 2006-07-12  Jackson Harper  <jackson@ximian.com>
3706
3707         * Control.cs: Optimze getting all the controls.
3708
3709 2006-07-11  Jackson Harper  <jackson@ximian.com>
3710
3711         * ContainerControl.cs: Override SETFOCUS in the container control,
3712         so that it is not selected on mouse click.
3713
3714 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
3715
3716         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
3717           Hopefully we will have a better way once all of focus is complete.
3718
3719 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
3720
3721         * ThemeWin32Classic.cs: Commented out some debug code and fixed
3722           a compile error with csc.
3723
3724 2006-07-11  Jackson Harper  <jackson@ximian.com>
3725
3726         * Control.cs: When hiding a control only select the next control
3727         if the current control was focused.
3728         - Don't handle enter/leave when setting/killing focus, this is
3729         done by the container control.
3730         - Remove is_selected, it's not needed anymore.
3731         - Add utility methods for selecting a child control, and for
3732         firing the Enter/Leave events.
3733         * ContainerControl.cs: When a control is activated fire the
3734         enter/leave events.
3735         - Don't wrap when processing the tab key, so that focus can be
3736         moved outside of the container.
3737         - Use the correct active control
3738
3739 2006-07-11  Jackson Harper  <jackson@ximian.com>
3740
3741         * ComboBox.cs: Remove some debug code that was blinding me.
3742         * UpDownBase.cs: These controls actually aren't implicit, they are
3743         visible to the user.
3744
3745 2006-07-10  Chris Toshok  <toshok@ximian.com>
3746
3747         * DataGrid.cs: move back to the is_adding boolean field.  god i
3748         hate this is_editing/is_adding/is_changing stuff.
3749
3750 2006-07-10  Chris Toshok  <toshok@ximian.com>
3751
3752         * DataGridTableStyle.cs: just check if the property type is bool.
3753         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
3754         Don't use CanRenderType.
3755
3756         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
3757         if our text == NullText.  Remove CanRenderType.
3758
3759         * DataGridBoolColumn.cs: nuke CanRenderType.
3760
3761         * DataGrid.cs: reenable some code to end the current edit inside
3762         of set_CurrentCell.  This fixes the other 1.1.16 regression.
3763         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
3764         Also, remove the visible_row_count arg from CalcRowHeaders, since
3765         we don't need to worry about the actual height of the area.
3766
3767 2006-07-10  Chris Toshok  <toshok@ximian.com>
3768
3769         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
3770         mode, just return.
3771
3772         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
3773         the real sense of the IsInEditOrNavigateMode property (true =
3774         navigate, false = edit).  Also, update OnKeyPress to reflect this.
3775
3776         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
3777         column style exists, we still need to set its property descriptor
3778         to match up with our list manager.
3779
3780 2006-07-10  Chris Toshok  <toshok@ximian.com>
3781
3782         * ThemeWin32Classic.cs: implement the new row/header painting
3783         approach.  The parent row painting will likely go away and
3784         replaced with label controls, but the rest seems to work ok (and
3785         efficiently).
3786
3787         * Theme.cs: change the way we draw datagrid rows.  we don't draw
3788         the row headers as a block now.  Instead we draw them in the
3789         normal draw-row loop.  Add some calls for drawing parent rows and
3790         relation rows.
3791
3792         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
3793         a default table style.  Set the defaults from ThemeEngine.Current,
3794         not SystemColors.  Fix lots of misc issues with property setters.
3795
3796         * DataGrid.cs: move loads of style information out of this class
3797         as it's being duplicated with DataGridTableStyle.  keep track of a
3798         special DataGridTableStyle for the properties we used to mirror
3799         here.  Switch all the style properties to access this table style
3800         instead of instance fields of this class.  Also add a internal
3801         class to represent parent rows (more needs to be stored here, like
3802         the selection state from the parent table, as well as the
3803         expansion state.)  Also, for datasources with relations, do the
3804         right thing for collapse/expand, and add support for the
3805         navigation/parent row buttons.
3806
3807         Lastly, fix the crash in the 1.1.16 build.
3808
3809         * GridTableStylesCollection.cs: make the explicit interface
3810         implementations call the class's methods as opposed to duplicating
3811         them.
3812
3813         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
3814         0 so the text doesn't jump around when we move the cursor.
3815
3816 2006-07-10  Jackson Harper  <jackson@ximian.com>
3817
3818         * TextBoxBase.cs:
3819         * ListBox.cs: Match MS's ToString (this makes debugging focus
3820         stuff infinitely easier).
3821
3822 2006-07-10  Jackson Harper  <jackson@ximian.com>
3823
3824         * Control.cs (SelectNextControl): When checking the control's
3825         parent use this instead of ctrl.parent so that null can be passed
3826         to SelectNextControl. (I have unit tests for this).
3827         - Remove unused var.
3828
3829 2006-07-10  Chris Toshok  <toshok@ximian.com>
3830
3831         * CurrencyManager.cs: correct one regression, the removal of the
3832         finalType field.  Also, add a MonoTODO on CanAddRows, implement
3833         Refresh() correctly, and fix some event emission in
3834         ListChangedHandler.
3835
3836 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
3837
3838         * FileDialog.cs: Don't use brackets for new folders if they exist
3839           under *nix. Instead use -(number of existing folders +1).
3840
3841 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
3842
3843         * FileDialog.cs:
3844           - Fixed really nasty bug #78771
3845           - Don't block the whole GUI when reading directories with a lot of
3846             entries. Use an other thread instead and call BeginInvoke to
3847             update the ListView in MWFFileView
3848
3849 2006-07-07  Chris Toshok  <toshok@ximian.com>
3850
3851         * Control.cs (Dispose): release any Capture when disposing.
3852
3853 2006-07-07  Chris Toshok  <toshok@ximian.com>
3854
3855         * LinkLabel.cs (Select): if we chain up to the parent, set
3856         focused_index to -1 so we'll search for the first available link
3857         the next time the user tabs into us.  Also, if the direction is
3858         backward and focused_index == -1, start the search from the last
3859         element.
3860
3861 2006-07-07  Chris Toshok  <toshok@ximian.com>
3862
3863         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
3864         is beyond the end of the text, don't do anything.
3865         (CreateLinkPieces): set our ControlStyles.Selectable based on
3866         whether or not we have any links.
3867         (Link.Invalidate): use a loop instead of foreach.
3868         (Link.set_Start): null out owner.sorted_links so it'll be
3869         recreated by CreateLinkPieces.
3870
3871 2006-07-06  Chris Toshok  <toshok@ximian.com>
3872
3873         * LinkLabel.cs: revert the SetStyle change.
3874
3875 2006-07-06  Chris Toshok  <toshok@ximian.com>
3876
3877         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
3878         (OnEnableChanged): s/Refresh/Invalidate
3879         (OnGotFocus): if we have a focused index already, refocus it (so
3880         if we mouse out/in to the window it'll focus the right link).
3881         (OnKeyDown): move the tab handling out of here.
3882         (OnLostFocus): don't set focused_index to -1, so we can refocus it
3883         when we lose focus.
3884         (OnMouseDown): don't Capture here - Control handles it.  Also,
3885         focus the active link.
3886         (OnMouseUp): don't deal with Capture.
3887         (OnPaintBackgroundInternal): remove.
3888         (OnTextAlignChanged): CreateLinkPieces before calling the
3889         superclass's method.
3890         (OnTextChanged): call CreateLinkPieces before calling superclass's
3891         method.
3892         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
3893         move around.
3894         (Select): implement this, moving the selection between different
3895         links, and call parent.SelectNextControl if we don't have another
3896         link to focus in the given direction.
3897         (CreateLinkPieces): call Invalidate instead of Refresh.
3898         
3899 2006-07-06  Chris Toshok  <toshok@ximian.com>
3900
3901         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
3902         new LinkLabel internals.
3903
3904         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
3905         over pieces looking for active/focused/etc links.  also, deal with
3906         runs of text (and links) with embedded \n's in them, and use
3907         MeasureCharacterRanges instead of MeasureString to figure out the
3908         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
3909         two-step.
3910
3911 2006-07-04  Jackson Harper  <jackson@ximian.com>
3912
3913         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
3914         XKB or key auto repeat, do it manually.  Without key auto repeat,
3915         when a key is held down we get key press, key release, key press,
3916         key release, ... with auto repeat we get key press, key press, key
3917         press ..., and then a release when the key is actually released.
3918
3919 2006-07-03  Jackson Harper  <jackson@ximian.com>
3920
3921         * TabControl.cs:
3922         * ThemeWin32Classic.cs: Tabs do not obey normal background color
3923         rules, they are always control color regardless of the background
3924         color.
3925
3926 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
3927
3928         * FileDialog.cs: Added internal class MWFConfig.
3929           Removed Registry support and replaced it with support for the new
3930           MWFConfig class. See MWFConfig comments for more information.
3931
3932 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
3933
3934         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
3935           rectangle. Added some patches from eno from bug #78490 and fixed
3936           the arrow position for small up and down CPDrawScrollButtons.
3937
3938 2006-06-30  Jackson Harper  <jackson@ximian.com>
3939
3940         * InternalWindowManager.cs: Remove some debug code.
3941         * Form.cs: When an MdiParent is set to null, the window is
3942         "detatched" and becomes a normal window.
3943         * MdiClient.cs: Don't bring the new child form to the front until
3944         it is activated (setting it as active does this), this makes the
3945         previously active forms titlebar get redrawn as inactive.
3946
3947 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
3948
3949         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
3950           with later controls
3951
3952 2006-06-29  Mike Kestner  <mkestner@novell.com>
3953
3954         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
3955         arrow in keynav state.  Fixes #78682.
3956
3957 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
3958
3959         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
3960           order (fixes #78393)
3961
3962 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
3963
3964         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
3965           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
3966           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
3967           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
3968           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
3969           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
3970           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
3971           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
3972           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
3973           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
3974           enumerations (FlagsAttribute, SerializableAttribute, added/removed
3975           values)
3976
3977 2006-06-28  Mike Kestner  <mkestner@novell.com>
3978
3979         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
3980
3981 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
3982
3983         * PropertyGrid.cs,
3984           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
3985           item lines from other area (It also makes BackColor consistent and
3986           compatible with .NET). Fixed bug #78564.
3987
3988 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
3989
3990         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
3991         Patch from Eno for #78555.
3992
3993 2006-06-27  Chris Toshok  <toshok@ximian.com>
3994
3995         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
3996
3997         * DataGridColumnStyle.cs: same.
3998
3999         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
4000         
4001         * DataGridDrawingLogic.cs: nuke.
4002
4003 2006-06-27  Chris Toshok  <toshok@ximian.com>
4004
4005         * DataGridTableStyle.cs: clean up the constructors, and build the
4006         list of child relations for this table.  I have no idea if this is
4007         where we should be doing it (it probably isn't), but since we're
4008         already iterating over the properties..
4009
4010         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
4011         struct and array for keeping track of row information, similar to
4012         what's shown in a hack on
4013         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
4014
4015         * Theme.cs: be consistent about the naming of DataGrid methods,
4016         prefering ColumnWidths and RowHeights over columnsWidths and
4017         RowsHeights.
4018
4019         * ThemeWin32Classic.cs: same, and also add support for variable
4020         sized rows (and the +/- expansion icons for related rows).
4021
4022 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
4023
4024         * TextBoxBase.cs: Applied Eno's patch from #78660
4025
4026 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
4027
4028         * Form.cs (ScaleCore): We don't want to scale our form if it's
4029           state is minimized or maximized, but we still need to scale our
4030           child windows. Also, added try/finally block to ensure layout
4031           gets reset (Fixes #78697)
4032
4033 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
4034
4035         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
4036
4037 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
4038
4039         * Form.cs: Fixed c+p error and added check to resize form if minimum
4040           size is bigger than current size (Fixes #78709)
4041
4042 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
4043
4044         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
4045
4046 2006-06-26  Mike Kestner  <mkestner@novell.com>
4047
4048         * ComboBox.cs: only do Keypress handling in the combo when there  
4049         are items in the collection. Fixes #78710.
4050
4051 2006-06-26  Chris Toshok  <toshok@ximian.com>
4052
4053         * Binding.cs: make this work bi-directionally.  also, clear up
4054         other mixups between Push/Pull Data (e.g. we're supposed to pull
4055         data when validating).
4056
4057         * BindingManagerBase.cs: trim some fully qualified collection
4058         types.
4059
4060         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
4061
4062 2006-06-23  Chris Toshok  <toshok@ximian.com>
4063
4064         * PropertyManager.cs: It appears (according to the unit tests)
4065         that PropertyManager doesn't use
4066         PropertyDescriptor.AddValueChanged to track propery value changes
4067         in its datasource, but uses the same scheme as Binding, where it
4068         looks for a <Property>Changed event and binds to it.
4069
4070         Also, according to the docs, IsSuspended always returns false for
4071         a property manager with a non-null datasource.
4072
4073 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
4074
4075         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
4076           need to update the actual DialogResult. (Fixes #78613)
4077
4078 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
4079
4080         * Form.cs (ShowDialog): Release any captures before running the
4081           new message pump (fixes #78680)
4082
4083 2006-06-22  Mike Kestner  <mkestner@novell.com>
4084
4085         * ListView.cs: Layout column widths properly in details mode even 
4086         if HeaderStyle.None is set.  Fixes #78691.
4087
4088 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
4089
4090         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
4091
4092 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
4093
4094         * Control.cs (ContainsFocus): Using new driver method to get focused
4095           window, instead of trying to use internal tracking var, which can
4096           recursion issues (Fixes #78685)
4097         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
4098           XplatUIWin32.cs: Added GetFocus method to return focused window
4099
4100 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4101
4102         * ColorDialog.cs: when the mouse button is pressed inside the color
4103         matrix, don't let the cursor move out of it until the button is
4104         released, which is the behavior on windows. Changed 'colours' by
4105         'colors' to use the same word consistently.
4106
4107 2006-06-21  Chris Toshok  <toshok@ximian.com>
4108
4109         * DataGrid.cs: add in some basic navigation stuff (navigating to a
4110         child relation and back, using a stack).  Also, remove
4111         GetDataSource and the code that calls it - it's not needed.  Also,
4112         track CurrencyManager.ListName's removal.
4113
4114 2006-06-21  Chris Toshok  <toshok@ximian.com>
4115
4116         * CurrencyManager.cs: push some of the original type checking from
4117         BindingContext.CreateBindingManager to here, and remove some of
4118         the finalType stuff.  Need more tests to make sure I've got the
4119         ListName part right, and we might need more in SetDataSource.
4120
4121         * PropertyManager.cs: add a ctor that takes just the datasource,
4122         and no property name.  Make SetDataSource work with a null
4123         property_name, and make Current return the data_source if the
4124         property descriptor is null.  this makes 'string foo = "hi";
4125         BindingContext[foo].Current' return "hi" as it should.
4126
4127         * RelatedCurrencyManager.cs: make this code more generic - there's
4128         no reason the parent manager has to be CurrencyManager, and
4129         there's no reason to pass the DataRelation.  It suffices to use a
4130         BindingManagerBase and PropetyDescriptor.
4131
4132         * RelatedPropertyManager.cs: make a similar change here.
4133         
4134         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
4135         flower I knew it could be.
4136
4137 2006-06-20  Chris Toshok  <toshok@ximian.com>
4138
4139         * PropertyManager.cs: the PropertyChangedHandler is invoked when
4140         data in the source has changed and we need to update the control,
4141         so s/PullData/PushData.
4142
4143         * CurrencyManager.cs: Refresh is meant to update the control from
4144         data in the datasource.  So, s/PullData/PushData.
4145
4146         * BindingContext.cs: add more ugliness (we weren't handling the
4147         case where data_source = DataTable and data_member = column_name).
4148
4149         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
4150         from the perspective of the datasource.  PullData pulls from the
4151         control, PushData pushes to the control.
4152
4153 2006-06-20  Chris Toshok  <toshok@ximian.com>
4154
4155         * BindingContext.cs: rewrite the CreateBindingManager code to
4156         handle navigation paths more or less properly.  This could
4157         definitely stand some more work, in particular to push the
4158         recursion up to the toplevel.  But that relies on fixes in other
4159         places (System.Data comes to mind).
4160
4161         Also, move to a flat hashtable (and encode the twolevel nature of
4162         the dictionary into the hash key).  This lets us implement the
4163         IEnumerable.GetEnumerator method.
4164
4165         * RelatedCurrencyManager.cs: new class.  Update our view based on
4166         our relation and our parent CurrencyManager's position.
4167
4168         * CurrencyManager.cs: split out some logic from the ctor into
4169         SetView, so it can be called from the new RelatedCurrencyManager
4170         subclass.
4171
4172         * RelatedPropertyManager.cs: new class.  Update our datasource
4173         based on the position of our parent CurrencyManager.
4174
4175         * PropertyManager.cs: split out some logic from the ctor into
4176         SetDataSource, so it can be called from the new RelatedDataSource
4177         subclass.  Also, make the Current getter return the value
4178         of the PropertyDescriptor, not the data_source.
4179
4180         * Binding.cs: no need to duplicate the string splitting code here.
4181
4182 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
4183
4184         * Control.cs:
4185           - set_Enabled: OnEnabledChanged is not called if the inherited state 
4186             of the control is not altered, even though  we might be changing the
4187             internal state of the control (#78458)
4188           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
4189             OnEnabledChanged, to allow easy altering of any child window state
4190           - OnEnabledChanged: Added code to enable/disable driver window state
4191           - OnParentEnabledChanged: Instead of firing the event, call 
4192             OnEnabledChanged, which will fire the event and also a) set driver
4193             window state and pass the enabled state to any grandchildren (#78458)
4194
4195 2006-06-19  Jackson Harper  <jackson@ximian.com>
4196
4197         * InternalWindowManager.cs: We don't set the cursor explicitly
4198         thats done via the response to NCHITTESTs.
4199         - Don't need to adjust for titlebar heights anymore, the
4200         coordinates are coming in the correct coordinates now (see peters
4201         last patch).
4202
4203
4204 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
4205
4206         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
4207           being translated relative to whole window, instead of client window.
4208           That caused broken offsets on mouseclick (and caused gas for our
4209           InternalWindowManager)
4210
4211 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
4212
4213         * TextControl.cs:
4214           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
4215           - Undo(): Added replay of cursor move on DeleteChars action; added
4216             calling Undo() again if a recorded cursor move is invalid (to
4217             ensure that some action is performed on Undo)
4218         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
4219
4220 2006-06-16  Jackson Harper  <jackson@ximian.com>
4221
4222         * MdiClient.cs: Instead of just sizing maximized windows when
4223         there is a resize we also have to adjust the Y of minimized
4224         windows, so they stay pinned to the bottom of the mdi container.
4225         - Eliminate separate tracking of the active control, we can just
4226         get this from the controls collection.
4227         - Paint the decorations for the newly activated titlebar so we get
4228         a pretty blue bar.
4229         * InternalWindowManager.cs:
4230         * ThemeWin32Classic.cs: Minimized windows get all three buttons
4231         even if they are a tool window.
4232         
4233 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
4234
4235         * TextControl.cs (Undo): Handle non-existent cursor locations in the
4236           undo buffer, these can happen when text was deleted and the cursor
4237           was recorded first. Since we will also have a recorded cursor
4238           after the delete this is not an issue. (Fixes #78651)
4239
4240 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
4241
4242         * AccessibleObject.cs: Remove dependence on Control.is_selected;
4243           instead properly track control states internally (allows us to
4244           remove is_selected from Control)
4245
4246 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4247
4248         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
4249         whose width is not a multiple of 8.
4250
4251 2006-06-13  Jackson Harper  <jackson@ximian.com>
4252
4253         * MdiClient.cs:  Only maximize the next child if the current one
4254         is maximized.
4255
4256 2006-06-13  Chris Toshok  <toshok@ximian.com>
4257
4258         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
4259         modified.  Also, guard against grid or grid_drawing being null in
4260         Invalidate.
4261
4262         * DataGrid.cs: Reformat tons of getters/setters.  In the
4263         DataMember setter, just call SetNewDataSource instead of
4264         duplicating some of its functionality.  In SetNewDataSource, don't
4265         check ListManager for null, since the property getter creates the
4266         object if needed.
4267
4268         * DataGridTableStyle.cs: don't set TableStyle or call
4269         SetDataGridInternal on the column here, it's done in
4270         GridColumnStylesCollection.Add.
4271
4272         * GridColumnStylesCollection.cs: fix all the explicit interface
4273         implementations to just call our methods.  Nuke AddInternal() and
4274         move the body of it to Add().  Also, add a call to
4275         column.SetDataGridInternal to Add().
4276
4277         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
4278         base()+duplicate code.  Also, use the Format property instead of
4279         format to generate an Invalidate ala MS.  Lastly, create the
4280         textbox here, unconditionally.
4281         (set_Format): call Invalidate.
4282         (get_TextBox): no need to call EnsureTextBox.
4283         (Commit): remove the message box.
4284         (Edit) remove the call to EnsureTextBox.
4285         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
4286         (EnterNullValue): no need to check textbox for null.
4287         (HideEditBox): no need to check textbox for null.
4288         (SetDataGridInColumn): add the textbox to the grid's controls.
4289         (EnsureTextBox): nuke.
4290         
4291 2006-06-13  Jackson Harper  <jackson@ximian.com>
4292
4293         * MdiWindowManager.cs: Hook up to the maximized menus paint event
4294         and redraw the buttons when needed. Unhook when the window is
4295         unmaximized.
4296         * MainMenu.cs: Add an internal Paint event, the mdi window manager
4297         needs this so that it can redraw its buttons when the menu is
4298         repainted.
4299         * InternalWindowManager.cs:
4300         * Form.cs: The method order has changed for DrawMaximizedButtons,
4301         so that it can be a PaintEventHandler.
4302         
4303 2006-06-13  Jackson Harper  <jackson@ximian.com>
4304
4305         * MdiClient.cs: When we close a maximized mdi window, the next mdi
4306         window is activated and maximized, even if it wasn't before.
4307         - When  a new window is activated repaint the decorations of the
4308         old one, so that it no longer has the Active "look" (the blue
4309         titlebar).
4310         * InternalWindowManager.cs: Open up CreateButtons to base classes
4311         so they can recreate the buttons on state changes.
4312         - If a window is maximized give it all three buttons
4313         * MdiWindowManager.cs: Create the titlebar buttons when the state
4314         is changed, this is needed because a toolwindow will not have all
4315         three buttons until it is maximized.
4316
4317 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
4318
4319         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
4320           Fixed bug #78609.
4321
4322 2006-06-12  Jackson Harper  <jackson@ximian.com>
4323
4324         * KeysConverter.cs: Make sure we handle the Ctrl special case
4325         if its the only key.
4326         
4327 2006-06-12  Jackson Harper  <jackson@ximian.com>
4328
4329         * Theme.cs: Add a method to get the size of a managed window
4330         toolbar button.
4331         * InternalWindowManager.cs: Remove the ButtonSize property, this
4332         should be retrieved from the theme.
4333         * MdiWindowManager.cs: Get the button size from the theme
4334         * ThemeWin32Classic.cs: Make the method to get the managed window
4335         titlebar button size public.
4336         - Handle the different button sizes of maximized toolwindows
4337         (should match any maximized window).
4338         - Get the titlebar height from the theme, not the WM (which gets
4339         it from the theme).
4340
4341 2006-06-12  Jackson Harper  <jackson@ximian.com>
4342
4343         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
4344         event down to the mdi window manager.
4345         - Expose some extra stuff to base classes
4346         - Make sure to end the Capture on an NC Mouse up, so that we can
4347         get double clicks properly, and the sizing doens't stick.
4348         - When doing PointToClient contain it in the workable desktop
4349         area, this prevents windows from changing size when the cursor is
4350         pulled outside of the working area while sizing.
4351         * MdiWindowManager.cs: When we get a double click maximize the
4352         window.
4353         - Reset the cursor after handling mode changes.
4354
4355 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
4356
4357         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
4358           current desktop, instead of just assuming a 0, 0 origin. This
4359           is needed for our internal window manager, to know the top
4360           margin of the desktop
4361
4362 2006-06-12  Chris Toshok  <toshok@ximian.com>
4363
4364         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
4365         we need this to get rid of the selected background in the bool
4366         column.
4367         (CancelEditing): move the ConcedeFocus call to above the Abort
4368         call.  Also, set is_changing to false and invalidate the row
4369         header if we were changing before.
4370         (ProcessKeyPreviewInternal): remove, since noone outside this
4371         class calls it anymore.  Roll the code into ProcessKeyPreview.
4372         (EndEdit): remove the internal version.
4373         (InvalidateCurrentRowHeader): make private.
4374
4375         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
4376         Keys.Escape handling (and with it the last call to
4377         DataGrid.EndEdit from outside the class.)
4378
4379
4380 2006-06-12  Chris Toshok  <toshok@ximian.com>
4381
4382         * DataGridTextBox.cs (.ctor): isedit defaults to false.
4383         (OnKeyPress): set isedit to true.
4384         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
4385         already handled by the grid.
4386
4387         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
4388         right.  ugh.
4389         (set_DataSource): SetDataSource always returns true, so stop
4390         putting it in an if statement.
4391         (EndEdit): get rid of some {}'s
4392         (ProcessGridKey): return true in case Keys.Escape.
4393         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
4394         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
4395         PositionChanged, stopped connecting to CurrentChanged.
4396         (GetDataSource): simplify this a bunch.
4397         (SetDataSource): change return type from bool to void.
4398         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
4399         to this, and make sure we don't set ListManager.Position inside
4400         set_CurrentCell.
4401         (OnListManagerItemChanged): if we're passed an actual index,
4402         redraw that row.
4403
4404         * CurrencyManager.cs (set_Position): don't call PullData here.
4405
4406 2006-06-09  Jackson Harper  <jackson@ximian.com>
4407
4408         * TreeNode.cs:  Recalculate the visible order before doing the
4409         Expand/Collapse Below calls, because those calls generate an
4410         expose.
4411         - Reduce calls to the TreeView property, which is mildly expensive
4412         by using a local var.
4413         * Form.cs: Layout the MDI child windows when creating the parent
4414         form.
4415         - Don't use the internal constructor anymore
4416         * MdiClient.cs: use the parent form width/height (if available)
4417         when laying out the child windows, we do this because the
4418         mdiclient isn't docked yet when the initial layout is done.
4419         - Don't need an internal constructor anymore.
4420
4421 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4422
4423         * FileDialog.cs: handle access errors when trying to create a folder
4424         or changing to a directory. No need to initialize out parameters.
4425
4426 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
4427
4428         * FileDialog.cs: Append a number when creating a new folder if the
4429           folder already exists (use parenthesis instead of square brackets)
4430
4431 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
4432
4433         * FileDialog.cs:
4434           - Disabled registry support for windows and added better registry
4435             error checking for other systems (need to investigate why it
4436             works perfectly on my system)
4437           - If a folder already exist show an error MessageBox instead of
4438             trying to create an indexed name.
4439           - Fixed a non intentional typo.
4440
4441 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4442
4443         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
4444
4445 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
4446
4447         * FileDialog.cs: When creating a new folder don't crash if the
4448           folder already exists.
4449
4450 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
4451
4452         * FileDialog.cs: Allmost a complete rewrite.
4453           - added a "virtual" file system that handles the differences
4454             between unix and windows file systems (especially the directory
4455             structure). Moved most of the directory and file handling code
4456             into the vfs.
4457             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
4458             UnixFileSystem and FSEntry.
4459           - Recently used folder/directory, size, location and used file names
4460             (file name ComboBox) are now stored in the registry and get read
4461             before the dialog shows up (fixes part 6 of bug #78446).
4462           - Creation of new folders/directories is now possible (context menu
4463             or ToolBar). Added TextEntryDialog for this that fills in the gap
4464             until ListView.LabelEdit works.
4465           - Fixed cursor handling (bug #78527) and focus handling for
4466             PopupButtonPanel
4467           - Various "Search in" ComboBox enhancements. The content of the
4468             dropdown listbox now almost matches ms.
4469           - Changed the behaviour when the user switches to SpecialFolder
4470             Recent to show the ListView in View.Details.
4471           - Beside using the ToolBar to change the View property of the
4472             file ListView it is now possible to use the context menu too.
4473
4474 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
4475
4476         * ComboBox.cs: Don't create a new ObjectCollection when an item
4477           gets inserted. Just insert the item in the existing object_items
4478           ArrayList.
4479
4480 2006-06-08  Jackson Harper  <jackson@ximian.com>
4481
4482         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
4483         that the treeview and root node checks are done also, this fixes a
4484         regression i caused in the unit tests.
4485
4486 2006-06-07  Wade Berrier <wberrier@novell.com> 
4487
4488         * RichTextBox.cs: More ISO8859-1 -> unicode
4489
4490 2006-06-07  Mike Kestner  <mkestner@novell.com>
4491
4492         * ComboBox.cs : use items to hold highlight/selection so that
4493         collection insertions don't require synchronization.
4494
4495 2006-06-07  Jackson Harper  <jackson@ximian.com>
4496
4497         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
4498         routine.  We now always keep the sized edge at the cursor instead
4499         of computing movement and adjusting rects.  There is one buglet
4500         with this method though when the cursor is moved over area that
4501         the window can not expand too (such as the toolbars on the desktop).
4502
4503 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4504
4505         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
4506         here. Fixes crash on startup in AlbumSurfer.
4507
4508 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
4509
4510         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
4511           values
4512
4513 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4514
4515         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
4516         statement to avoid calling XNextEvent which will block if another thread
4517         took the event that we were expecting. Fixes bug #78605.
4518
4519 2006-06-07  Mike Kestner  <mkestner@novell.com>
4520
4521         * ListView.cs : isolated checkbox clicking from the selection logic.
4522         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
4523
4524 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4525
4526         * Form.cs: Check that the value passed to Form.DialogResult
4527         is a valid enum value.
4528
4529 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4530
4531         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
4532         Computer'. Clicking it in the network view goes to 'My Computer'.
4533         Added CIFS filesystem type. Display the mount point of filesystems.
4534         Avoid duplicate mount points (happens for me with CIFS);
4535
4536 2006-06-06  Jackson Harper  <jackson@ximian.com>
4537
4538         * InternalWindowManager.cs: Draw the maximized windows buttons
4539         when resizing.
4540
4541 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4542
4543         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
4544         all other dialogs. Fixes bug #78585.
4545
4546 2006-06-06  Mike Kestner  <mkestner@novell.com>
4547
4548         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
4549         Only invalidate checkbox on checkstate changes to avoid flicker.
4550         * ListBox.cs : avoid unselect/select when clicking selected item.
4551         avoid reselection flicker for already multiselected items.
4552         Fixes #78382.
4553
4554 2006-06-06  Jackson Harper  <jackson@ximian.com>
4555
4556         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
4557         the parent form so that the menu is removed if needed.
4558
4559 2006-06-06  Mike Kestner  <mkestner@novell.com>
4560
4561         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
4562         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
4563
4564 2006-06-06  Mike Kestner  <mkestner@novell.com>
4565
4566         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
4567
4568
4569 2006-06-06  Jackson Harper  <jackson@ximian.com>
4570
4571         * Control.cs: Use the property (instead of the field) to get the
4572         default cursor so it is instantiated correctly.
4573         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
4574         resizes so we need to manually repaint the window decorations here.
4575         - Set the titlebar button locations as soon as they are created,
4576         otherwise they are not set correctly on win32.
4577         
4578 2006-06-06  Chris Toshok  <toshok@ximian.com>
4579
4580         * CurrencyManager.cs (set_Position): call PullData before
4581         OnCurrentChanged.
4582         (AddNew): after calling IBindingList.AddNew, update our
4583         listposition, and call OnCurrentChanged/OnPositionChanged (without
4584         calling PullData).
4585         (OnCurrentChanged): remove the call to PullData from here.
4586         (OnItemChanged): remove the call to PushData from here.
4587         (OnPositionChanged): change the test from == null to != null to
4588         match the other methods.
4589         (ListChangedHandler): the grossest part of the patch.  Implement
4590         this such that it passes the unit tests in CurrencyManagerTest and
4591         the output more or less matches that of MS's implementation.
4592  
4593 2006-06-06  Mike Kestner  <mkestner@novell.com>
4594
4595         * ListView.cs : only update check state on single click.
4596         * ThemeWin32Classic.cs : fix focus drawing for details view without
4597         fullrowselect.  Fixes #78454.
4598         * XplatUIX11.cs : fix for double click emission.
4599
4600 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
4601
4602         * PropertyGridView.cs : Applied Atsushi's patch to fix
4603         font dialog bug  (#78197).
4604
4605 2006-06-05  Jackson Harper  <jackson@ximian.com>
4606
4607         * TreeNode.cs: Compute the next node for expanding/collapsing
4608         correctly. We now factor in nodes without a NextNode
4609         correctly. (Fixes somes cases in nunit-gui).
4610         * InternalWindowManager.cs: Set the bounds when updating the
4611         virtual position of a tool window.
4612         
4613 2006-06-05  Chris Toshok  <toshok@ximian.com>
4614
4615         * DataGrid.cs: rename cached_currencymgr to list_manager.
4616         (set_CurrentCell): move SetCurrentCell code here, and clean it up
4617         some.
4618         (CurrentRow, CurrentColumn): single accessors so we can make the
4619         cursor movement code a lot easier to understand.
4620         (CurrentRowIndex): implement this in terms of CurrentRow.
4621         (BeginEdit): clean this up a bit.
4622         (CancelEditing): sort out the is_editing/is_changing/is_adding
4623         stuff a little.
4624         (EndEdit): minor changes.
4625         (OnKeyDown): add a comment about a (most likely) unnecessary
4626         check.
4627         (OnMouseDown): cancel editing when we click on a row header.  And
4628         use the CurrentRow setter, not CurrentCell.
4629         (ProcessDialogKey): directly call ProcessGridKey.
4630         (UpdateSelectionAfterCursorMove): factor out this common block of
4631         code (it's used everywhere that we move the cursor by updating row
4632         or column).
4633         (ProcessGridKey): pretty substantial overhaul.  Use the
4634         CurrentRow/CurrentColumn properties to make the code a lot more
4635         readable.  Only use the CurrentCell property when we have to
4636         modify both row and column at once.  Tab behavior is still broken,
4637         and Delete is untested.
4638         (Select): if we have no selected rows, set selection_start to
4639         @row.
4640         (EditCurrentCell): rename EditCell this.  It was only ever invoked
4641         with CurrentCell as the arg, so drop the arg and rename it.
4642
4643         * DataGridColumnStyle.cs: clean up the constructors a little, and
4644         drop CommonConstructor().
4645
4646         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
4647         actually get notified when the user hits it.
4648         (ProcessKeyMessage): *substantially* simplify this method.
4649         There's no reason (that I can see) for the textbox to be making
4650         calls into the datagrid at all.  Remove all of them but the ones
4651         for Enter handling.  those will take some more work.
4652
4653         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
4654         calling HideEditBox.
4655         (HideEditBox): if we have an active textbox, render it invisible
4656         without causing a re-layout of the datagrid.
4657
4658 2006-06-05  Mike Kestner  <mkestner@novell.com>
4659
4660         * ListView.cs : fix NRE crasher when focuseditem is cleared by
4661         collection changes by resetting it to Items[0].  Fixes #78587.
4662
4663 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4664
4665         * MessageBox.cs: if the height of the text is larger than the icon_size,
4666         use that. Fixes bug #78575.
4667
4668 2006-06-05  Jackson Harper  <jackson@ximian.com>
4669
4670         * TreeView.cs: Fix line drawing when scrolling.  To do this each
4671         node is basically responsible for drawing its entire horizontal
4672         area.  When drawing a node it draws its parent node lines if
4673         needed.
4674         - Adjust the clip area to the viewport rectangle
4675         - Fix Left/Right key handling to match MS. (It expand/collapses
4676         and moves to parents/first child but does not move selection to
4677         sibling nodes).
4678         - Fix SetTop to work with new bound calculation code
4679         - When scrollbars are no longer needed we need to reset scrolling
4680         vars and recalculate the visible order so the redraw is correct
4681         * TreeNode.cs: We can't expand/collapse nodes with no children.
4682
4683 2006-06-03  John Luke  <john.luke@gmail.com> 
4684
4685         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
4686         so the colors work without dev packages
4687         
4688 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
4689
4690         * Control.cs 
4691           - Select: Implemented to just use activate. Seems to match MS 
4692             behaviour closest. Documented to only do actual control walking 
4693             based on it's parameters if in a container control so I moved 
4694             the code there.
4695           - Removed selection check logic from our internal Select() method
4696         * ContainerControl.cs:
4697           - Select: Moved selection logic from Control here, since MS documents
4698             that containers obey the bool arguments. No longer calling base
4699
4700 2006-06-02  Jackson Harper  <jackson@ximian.com>
4701
4702         * TreeView.cs: If the selected node isn't changed when we get
4703         focus update the previously selected node so that we see the
4704         selection box.
4705
4706 2006-06-02  Mike Kestner  <mkestner@novell.com>
4707
4708         * ComboBox.cs: restructure grab and general mouse event handling.
4709         Make the composite control raise mouse events like it was a single
4710         control for leaves/enters/motion/up/down events.  fix dropdown list
4711         coordinate mangling and refactor it into the scrollbar subclass to
4712         reduce code duplication.  Fixes #78282 #78361 and #78457.
4713
4714 2006-06-02  Mike Kestner  <mkestner@novell.com>
4715
4716         * ScrollBar.cs: remove Capture setting/clearing, as it happens
4717         automatically in the Control.WndProc.
4718
4719 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4720
4721         * FileDialog.cs: fix crash when running SharpChess, which sets the
4722         FilterIndex to 2 with only one Filter.
4723
4724 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4725
4726         * ToolBar.cs: add SizeSpecified property.
4727         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
4728         try to figure out our real size, otherwise fallback to what the
4729         container says.
4730
4731 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
4732
4733         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
4734         * Control.cs (WndProc): MS always calls the DefWndProc to pass
4735           up the event
4736
4737 2006-06-01  Mike Kestner  <mkestner@novell.com>
4738
4739         * ListView.cs: revamp the focus management in ListView.  It still
4740         causes churn of LostFocus/GotFocus emissions on clicks, but it's
4741         better than not handling focus at all.  Will revisit when pdb feels
4742         the general focus handling is solid.  Fixes #78526.
4743
4744 2006-06-01  Jackson Harper  <jackson@ximian.com>
4745
4746         * TreeView.cs: Set the default border style in the constructor.
4747         - Move painting to use OnPaintInternal instead of capturing
4748         WM_PAINT, this is the correct way of doing things
4749         - UpdateBelow shouldn't invalidate the scrollbar area
4750         - Cap the top on update below in case the node was above the top
4751         of the viewport rectangle.
4752         - ExpandBelow and Collapse below need to obey Begin/End Update.
4753         * TreeNode.cs: Make is_expanded internal so the treenode
4754         collection can change it without firing the whole event chain.
4755         * TreeNodeCollection.cs: When clearing all the child nodes make
4756         sure to recalc the visible order.
4757         - Improve algo for remove the top node
4758
4759 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
4760
4761         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
4762           SendMessage directly calling window procedures, which in turn might
4763           call SetFocus()
4764
4765 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
4766
4767         * Control.cs: Don't handle WM_SETFOCUS if the same window already
4768           has focus (works around X11 sending a FocusIn after our SetFocus)
4769         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
4770
4771 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
4772
4773         * Mime.cs: Fix for the NET_2_0 build.
4774           NameValueCollection needs StringComparer now.
4775
4776 2006-05-31  Chris Toshok  <toshok@ximian.com>
4777
4778         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
4779         return (via an out parameter) the starting X of the column.
4780         (UpdateVisibleColumn): track change to FromPixelToColumn.
4781         (HitTest): add a ColumnResize case here.
4782         (DrawResizeLine): new function, probably poorly named.
4783
4784         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
4785         only need to keep one reference.
4786         (set_ListManager): same.
4787         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
4788         Also, add support for HitTestType.ColumnResize.
4789         (OnMouseMove): add column resize behavior here, and change the
4790         cursor to the correct one as we move around the datagrid.
4791         (OnMouseUp): terminate the column resize if we're resizing.
4792         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
4793         for the current cell.
4794         (ConnectListManagerEvents): use cached_currencymgr.
4795         (DisconnectListManagerEvents): fill this in, using
4796         cached_currencymgr.
4797         (SetCurrentCell): remove cached_currencymgr_events handling.
4798         (SetDataMember): only call DisconnectListManagerEvents if
4799         cached_currencymgr is != null.
4800         (SetDataSource): same.
4801         (OnListManagerCurrentChanged): cached_currencymgr_events ->
4802         cached_currencymgr.
4803
4804 2006-05-31  Jackson Harper  <jackson@ximian.com>
4805
4806         * BindingManagerBase.cs: Remove somedebug code that creeped into
4807         SVN.
4808         * TreeNode.cs: We get the indent level dynamically right now, so
4809         don't track it as a member.
4810         * TreeNodeCollection.cs: Make sure all nodes added to the list
4811         have parents, treeviews/topnodes setup properly.
4812         - Don't attempt to track indent level.
4813
4814 2006-05-30  Jackson Harper  <jackson@ximian.com>
4815
4816         * BindingContext.cs: Create the currency manager tables here.
4817         This allows us to more easily create null tables (when bad data
4818         members are used), and more easily create related currency
4819         managers.
4820         * CurrencyManager.cs: All the table creation stuff is done by the
4821         binding context now.
4822         - Current should throw an exception if listposition is -1.
4823         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
4824         been bound yet.
4825
4826 2006-05-30  Mike Kestner  <mkestner@novell.com>
4827
4828         * ListView.cs: allow reexpansion of zero-width column headers.
4829         Fixes #78528.
4830
4831 2006-05-28  Chris Toshok  <toshok@ximian.com>
4832
4833         * CurrencyManager.cs (get_Current): after the late binding
4834         listposition = -1 fix, we need to guard against it here and return
4835         null, otherwise we raise an exception (which is swallowed
4836         elsewhere, and breaks datagrid databinding.)
4837
4838 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
4839
4840         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
4841           than WM_SYSKEY, don't throw if get something unexpected (#78507)
4842
4843 2006-05-26  Jackson Harper  <jackson@ximian.com>
4844
4845         * ControlPaint.cs:
4846         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
4847         values, it's faster and it's all we care about (we don't care if
4848         the names aren't equal).
4849         * KeyboardLayouts.cs: Eliminate some dead code.
4850         - Lazy init things
4851         * X11Keyboard.cs: Lazy init keyboard detection.
4852         - Cleanup access modifiers a little.
4853
4854 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
4855
4856         * XplatUIX11.cs: Once again, attempting to get layout just right.
4857
4858 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
4859
4860         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
4861           the sizes of each link section, that will result in sizes that
4862           match DrawString's layout (Fixes #78391)
4863
4864 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
4865
4866         * FileDialog.cs: If AddExtension property is true autocomplete the
4867           extensions in SaveFileDialog correctly. Fixes bug #78453.
4868           Set MyNetwork and MyComputer to "C:\" for windows. This should
4869           fix part 8 of bug #78446 for now.
4870
4871 2006-05-26  Chris Toshok  <toshok@ximian.com>
4872
4873         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
4874         invalidate the current row header if we need to, but presumably
4875         we'll invalidate the row corrsponding to the bounds or
4876         editingControl.
4877         (GridHScrolled): switch back to this method, as it's part of the
4878         public api.  *sigh*.
4879         (GridVScrolled): same.
4880         (OnMouseWheel): hack up something that more or less works.  Call
4881         GridHScrolled/GridVScrolled directly, instead of duplicating much
4882         of their code here.
4883         (EnsureCellVisibility): reinstate a bunch of this code, since we
4884         can't just set the scrollbar Value and expect to do all the work
4885         in the ValueChanged handler.  Also, Call Update() after scrolling
4886         in one direction so the other XplatX11.ScrollWindow call has the
4887         proper stuff in the proper places.
4888         (EditCell): set is_editing to true before calling .Edit.
4889
4890         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
4891         don't bother comparing first.
4892         (OnKeyPress): call grid.ColumnStartedEditing before calling
4893         base.OnKeyPress.  this will set is_changing and invalidate the row
4894         header if necessary.
4895         (ProcessKeyMessage): for WM_CHAR messages, call
4896         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
4897         and WM_KEYDOWN.
4898         
4899         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
4900         it's done in the DataGrid.
4901         (NextState): call grid.ColumnStartedEditing, which takes care of
4902         invalidating the row header (and setting is_changing).
4903
4904         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
4905         here.  it's done in the DataGrid.
4906
4907 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4908
4909         * Control.cs: allow changing the cursor when the mouse position is
4910         out of bounds but Capture is set.
4911         * LinkLabel.cs: handle the case when the mouse button is pressed on the
4912         linklabel but released somewhere else.
4913
4914 2006-05-25  Jackson Harper  <jackson@ximian.com>
4915
4916         * TreeView.cs: When we get focus if there is no selected node make
4917         it the top node
4918         - Remove some uneeded setup code from Draw.
4919         * TreeNodeCollection.cs: If the tree doesn't have a top node when
4920         a new node is inserted make the new node the top.
4921         * XplatUIX11.cs:
4922         * Timer.cs: Use Utc time so that no local time zone stuff needs to
4923         be used (should be faster).
4924         
4925 2006-05-25  Chris Toshok  <toshok@ximian.com>
4926
4927         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
4928         problem with the last commit.
4929
4930 2006-05-25  Chris Toshok  <toshok@ximian.com>
4931
4932         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
4933         need the invalidate call here, while scrolling right-to-left via
4934         the left arrow key (i.e. moving the editing cell while scrolling).
4935
4936         * DataGrid.cs (.ctor): remove the initialization of
4937         ctrl_pressed/shift_pressed.  We no longer track them using key
4938         up/down handlers, but by using Control.ModifierKeys.  Also, switch
4939         to using ValueChanged handlers on the scrollbars instead of
4940         Scrolled event handlers.  This simplifies a bunch of the scrolling
4941         code.
4942         (GridHValueChanged): rename from GridHScrolled, and change it to
4943         work with the new event args.
4944         (GridVValueChanged): same.
4945         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
4946         (OnMouseWheel): actually scroll the datagrid.  Don't change the
4947         selected cell.
4948         (ProcessGridKey): correct all the keyboard navigation stuff I
4949         could find.  Ctrl up/down/left/right/home/end work now.
4950         (EnsureCellVisibility): correct method name spelling.  Also,
4951         simplify this a touch by not explicitly calling the
4952         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
4953         scrollbar value.
4954         (OnKeyUpDG): no need for this method now.
4955         
4956 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4957
4958         * LinkLabel.cs: display the OverrideCursor when hovering the label.
4959         Fixes bug #78392.
4960
4961 2006-05-25  Chris Toshok  <toshok@ximian.com>
4962
4963         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
4964         r61019.
4965
4966 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
4967
4968         * Application.cs: Moved setting of is_modal and closing to before
4969           we create the control, to allow the event handlers called as a
4970           result of creation affect closing. Also removed Gonzalo's previous
4971           change to setting DialogResult, the behaviour has been moved to 
4972           Form.ShowDialog()
4973         * Form.cs: 
4974           - ShowDialog(): Removed explicit creation of the form, let RunLoop
4975             handle it instead
4976           - ShowDialog(): If no dialog result is set, we need to return Cancel
4977           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
4978             the close is cancelled
4979
4980 2006-05-25  Jackson Harper  <jackson@ximian.com>
4981
4982         * StatusBar.cs: We only need to update the sizes of the other
4983         panels when we have auto size contents.  Also we are only updating
4984         the contents of the panel, not the borders, so compensate for the
4985         border width (TODO: get this width from the theme somehow).
4986         * TreeView.cs: Scrollable is true by default
4987         - Use invalidate instead of refresh where needed
4988         - Factor the scrollable value into scrollbar updating
4989         - Update the scrollbars if the Scrollable property is altered
4990         - Update the selected node if its ImageIndex is changed
4991         - Handle null nodes in UpdateNode (mainly so we don't have to
4992         check if selected is null when updating it
4993         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
4994         are factored into the visible count
4995         - Use VisibleCount for clarity in the code
4996         - When the font is changed we need to recurse through all the
4997         nodes and invalidate their sizes
4998         
4999 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5000
5001         * Application.cs: set the DialogResult to fixed when the main form is
5002         hidden or destroyed while being modal.
5003
5004 2006-05-25  Miguel de Icaza  <miguel@novell.com>
5005
5006         * Theme.cs: Use Tangoified messagebox icons. 
5007
5008         (GetSizedResourceImage): Also cope with width = 0 and do not
5009         trigger a warning in that case (0 means "give me your icon from
5010         the resouce, no special size needed).
5011
5012 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
5013
5014         * Application.cs: Leave runloop if the the main modal form is 
5015           hidden (fixes #78484)
5016
5017 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
5018
5019         * BindingContext.cs : reject null datasource in Contains() and
5020           Item[].
5021         * CurrencyManager.cs : check data_member validity when data_source
5022           is dataset. When it is late binding, the initial position is -1.
5023
5024 2006-05-24  Jackson Harper  <jackson@ximian.com>
5025
5026         * TreeNodeCollection.cs: Dont't recalculate the visible order on
5027         inserted nodes that aren't visible.  This changes the
5028         max_visible_order which confuses scrollbar settings.
5029         - Use the enumerator to get the prev node instead of duplicating
5030         code.
5031         * TreeView.cs: Use new method for setting scrollbar values
5032         - Don't set the bounds every time the scrollbar is updated
5033         - When updating below the root node use an invalidate instead of a
5034         refresh to prevent the child controls (scrollbars) from being
5035         refreshed. (UpdateBelow still needs to be reworked anyways).
5036         - Reenable SetBottom now that visible orders are set correctly,
5037         added some debug code incase we ever get bad values there again.
5038         - Set the scrollbar max to 2 less then the max value, this
5039         compensates for the max value being one above the node count, and
5040         for scrollbars adding one extra "notch".
5041         - When drawing image nodes if there is an imagelist we draw the
5042         first image in the list if the supplied image index is out of the
5043         image list's bounds.
5044         
5045 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
5046
5047         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
5048           we receive a size change from the WM (Fixes #78503)
5049
5050 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
5051
5052         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
5053           rectangle (Fixes #78501)
5054
5055 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
5056
5057         * ButtonBase.cs: 
5058           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
5059             as a bitfield.
5060           - Fixed MouseMove to no longer switch pressed state unless the left
5061             mouse button is pressed. Atsushi provided the original patch (#78485)
5062           
5063 2006-05-24  Jackson Harper  <jackson@ximian.com>
5064
5065         * ScrollBar.cs: New internal methods that allow us to change a
5066         couple values on the scrollbar (the most common case is maximum
5067         and large change) without getting multiple invalidates.
5068
5069 2006-05-24  Chris Toshok  <toshok@ximian.com>
5070
5071         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
5072         (Edit): save off the original state in oldState, and set
5073         grid.is_editing to true.
5074         (OnKeyDown): abort editing if escape is pressed.  also, call
5075         NextState if space is pressed.
5076         (OnMouseDown): call NextState.
5077         (NextState): factor out shared code from OnKeyDown and OnMouseDown
5078         here.  Also, only invalidate the row header once (on the initial
5079         is_changing switch) to save on redraws.
5080
5081 2006-05-24  Chris Toshok  <toshok@ximian.com>
5082
5083         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
5084         if the value in the cell is different than it was before.  This
5085         keeps us from triggering a layout when we move around a datarid
5086         with a highlighted cell.
5087         (Edit): suspend layout when creating/positining the text box, and
5088         resume passing false so we don't ever actually re-layout.
5089         (ReleaseHostedControl): same.
5090         (EnsureTextBox): reformat slightly, and set WordWrap to false.
5091
5092         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
5093         control-key sequences should go to the datagrid - remove that
5094         lock.  Also, modify the conditions under which we move between
5095         cells when moving the cursor within a cell, and remove the "this"
5096         and "base" from field accesses.  We weren't even consistent, given
5097         they all were in the base class.
5098
5099 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
5100
5101         * Binding.cs : (.ctor)
5102           An obvious NRE fix for BindingTest.CtorNullTest().
5103
5104 2006-05-23  Chris Toshok  <toshok@ximian.com>
5105
5106         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
5107         them between lines.  This fixes some quirks editing cells in the
5108         datagrid.
5109
5110 2006-05-23  Jackson Harper  <jackson@ximian.com>
5111
5112         * TreeView.cs: Use begin/end update when doing expand/collapse all
5113         so that we don't get flicker on the scrollbar.
5114
5115 2006-05-23  Jackson Harper  <jackson@ximian.com>
5116
5117         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
5118         treenode calculations to be independant of the painting code. To
5119         do this nodes track a visible order which is calculated by the
5120         treeview.
5121         - Call new methods for expanding/collapsing nodes.  These methods
5122         use scrollwindow so we don't have to update everything below the
5123         node.
5124         * TreeView.cs: Refactored drawing and scrolling code.  We don't
5125         need to update nodes when drawing anymore or calculate scrollbar
5126         stuff.
5127         - Added new methods for expanding/collapsing nodes. These methods
5128         use ScrollWindow so as to not have to redraw all the nodes below.
5129         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
5130         we add/remove nodes or sort.
5131         - Handle removing the selected and the top node properly.
5132
5133 2006-05-23  Chris Toshok  <toshok@ximian.com>
5134
5135         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
5136         maybe this should actually happen in the datagrid code?
5137         (EndEdit): no need to invalidate anything, given that
5138         ReleaseHostedControl causes the datagrid to relayout, which
5139         invalidates everything anyway.
5140
5141         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
5142         in SetCurrentCell).
5143         (set_SelectionBackColor): call InvalidateSelection instead of
5144         Refresh.
5145         (set_SelectionForeColor): same.
5146         (BeginEdit): Flesh this out a bit.
5147         (CancelEditing): only do any of this if we're editing/adding.
5148         (EndEdit): same.
5149         (OnMouseDown): there's no need to cancel editing here, it's done
5150         in SetCurrentCell.
5151         (SetCurrentCell): only invalidate the current row header if it's a
5152         different row than the new one.
5153         (ShiftSelection): fix this to work like MS does.
5154         (ResetSelection): factor out the invalidation of selected_rows to
5155         InvalidateSelection.
5156         (SetDataSource): cancel any editing that's going on.
5157
5158         * DataGridColumnStyle.cs
5159         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
5160         call the non-interface version.
5161
5162         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
5163         header rectangle with the clip rectangle so we don't redraw the
5164         entire header for just a small area.  Gets rid of the last flicker
5165         when horizontally scrolling.
5166         (DataGridPaintRow): same.
5167
5168 2006-05-23  Mike Kestner  <mkestner@novell.com>
5169
5170         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
5171         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
5172         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
5173         Critical bug report.
5174
5175 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
5176
5177         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
5178           and this fixes #78493
5179
5180 2006-05-23  Miguel de Icaza  <miguel@novell.com>
5181
5182         * Theme.cs (GetSizedResourceImage): Scale images if the proper
5183         size is not found.  
5184         
5185         * FileDialog.cs: Do not change the background for the side bar as
5186         it wont work nicely with the theme, and also reduces the artifacts
5187         in rendering the icons (which I want to fix too).
5188
5189         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
5190         resources, not resgen resources. 
5191
5192         (PlatformDefaultHandler): Pull images using the new API.
5193
5194 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
5195
5196         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
5197           a reference to the hwnd and will not remove it unless there are
5198           no pending exposures (fixes #78341)
5199         * XplatUI.cs: Improved debug
5200
5201 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
5202
5203         * MenuAPI.cs : don't handle OnClick event when it was not the left
5204           button. Fixed bug #78487.
5205
5206 2006-05-23  Mike Kestner  <mkestner@novell.com>
5207
5208         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
5209         prefer submenus to the top menu for item lookup, to avoid popping down
5210         top-row items.
5211
5212 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
5213
5214         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
5215           Graphics.FillRectangle as the visual results are really bad (even
5216           on win). We now draw perfect arrows (and perfect shadows when the
5217           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
5218           Pen.DashPattern to draw the dots of each line.
5219
5220 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
5221
5222         * FileDialog.cs: Update the filename combobox when navigating through
5223           the ListView with the cursor keys. Fixes part 7 of bug #78446.
5224
5225 2006-05-22  Mike Kestner  <mkestner@novell.com>
5226
5227         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
5228         Fixes #78463.
5229
5230 2006-05-22  Mike Kestner  <mkestner@novell.com>
5231
5232         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
5233         requests. Fix a misspelled parameter and a copy paste exception error
5234         in Select.
5235
5236 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
5237
5238         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
5239           to get the same width/height (5/13) on X11 as the default font has on
5240           win32. This means that our DefaultFont emSize is smaller than the 
5241           the MS SWF equivalent (even thought the width/height stays the same)
5242
5243 2006-05-20  Jackson Harper  <jackson@ximian.com>
5244
5245         * MdiClient.cs:
5246         * MdiWindowManager.cs:
5247         * InternalWindowManager.cs: Make sure to use the border width from
5248         the theme.
5249
5250 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
5251
5252         * PrintDialog.cs: Implements printer details
5253
5254 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
5255
5256         * FileDialog.cs: Added focus handling for PopupButtonPanel.
5257           Fixes part 1 and 2 of bug #78446
5258
5259 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
5260
5261         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
5262           instead of sticking to the first ever calculated value
5263
5264 2006-05-19  Mike Kestner  <mkestner@novell.com>
5265
5266         * ComboBox.cs: fix mouse motion selection to use MousePosition and
5267         PointToClient, since Capture is set. Fixes #78344.
5268
5269 2006-05-19  Mike Kestner  <mkestner@novell.com>
5270
5271         * ListView.cs: match MS behavior in Details view where items are not
5272         drawn if Columns.Count == 0. 
5273         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
5274         Use a separate pen to draw the check, since changing the width affects
5275         the box as well.  Fixes #78454.
5276
5277 2006-05-18  Miguel de Icaza  <miguel@novell.com>
5278
5279         * ListView.cs: ArgumentOutOfRangeException, single versions of the
5280         exception should throw the name of the invalid argument.
5281
5282         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
5283         there are no files listed. 
5284
5285 2006-05-18  Jackson Harper  <jackson@ximian.com>
5286
5287         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
5288         up.
5289
5290 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
5291
5292         * Control.cs: Brought back our old UpdateZOrder method as a private
5293           function and switched our calls from UpdateZOrder to the new one.
5294           This fixes the Paint.Net canvas disappearing bug.
5295
5296 2006-05-18  Jackson Harper  <jackson@ximian.com>
5297
5298         * Theme.cs:
5299         * ThemeWin32Classic.cs:
5300         * InternalWindowManager.cs: Move the drawing into the theme,
5301         expose everything the theme should need from the window manager.
5302
5303 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
5304
5305         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
5306           from the call to NativeWindow to avoid walking up the parent chain
5307           further than needed (speeds up setting cursors and avoids setting
5308           the wrong cursor if a parent has another cursor defined)
5309         * Cursor.cs: When loading an icon as cursor, MS uses the center of
5310           the icon as hotspot, not what's contained as hotspot in the icon
5311           file. This fixes the perceived drawing offset seen with Paint.Net
5312         
5313 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
5314
5315         * XplatUIX11.cs: 
5316           - Store the calculated rectangle in Hwnd object and use it when 
5317             setting the client size
5318           - Force Toolwindows to always be type Dock, to ensure they're on top
5319
5320 2006-05-18  Mike Kestner  <mkestner@novell.com>
5321
5322         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
5323         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
5324         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
5325         Substantial refactoring to remove confusing nested classes. Coding
5326         standard and Get+Set->property refactorings.  Shift to index based
5327         highlighting in ComboListBox instead of constantly using IndexOf and
5328         Items[]. Add invalidations on resize for DropDownList to fix ugliness
5329         in FileDialog growth.  Draw borders manually since Simple mode needs
5330         to look like two independent controls.  Make listbox border
5331         conditional to DropDownStyle.  Improved OwnerDraw support.
5332
5333 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
5334
5335         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
5336         Don't set the disposed graphics to null, so we can throw the "right"
5337         exception if the graphics is reused later (added a flag to avoid 
5338         double disposing). Some behaviours are different under 2.0 and are
5339         filled under bug #78448.
5340
5341 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
5342
5343         * Control.cs: When double-buffering is enabled, we need to reset
5344           our graphics context between paint calls. Otherwise, any 
5345           transformations and other alterations on the context will 
5346           become cumulative (#77734)
5347
5348 2006-05-18  Mike Kestner  <mkestner@novell.com>
5349
5350         * ListView.cs: do focused item selection like MS on clicks. 
5351         Rework focus handling for ItemControl so LostFocus invalidates as
5352         well.
5353         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
5354         the ListView ItemControl has focus.
5355
5356 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
5357
5358         * XplatUIX11.cs: If client_window ends up being width or height zero
5359           due to border settings, move it off window inside whole_window (#78433)
5360
5361 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
5362
5363         * Mime.cs: Shrink the mime file cache correctly.
5364
5365 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
5366
5367         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
5368
5369 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
5370
5371         * XplatUIX11.cs (AddExpose): More sanity checks
5372
5373 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
5374
5375         * XplatUIX11.cs:
5376           - AddExpose: Don't add expose ranges outside the size of our
5377             window
5378           - Cast opacity values to Int32 to avoid crashes with certain
5379             values
5380           - Added disabled code paths that protect against illegal cross-
5381             thread painting (Developers.exe)
5382
5383 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
5384
5385         * ProgressBar.cs: Invalidate the control when it's resized
5386           since block size is based on control size. (#78388)
5387
5388 2006-05-16  Miguel de Icaza  <miguel@novell.com>
5389
5390         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
5391         of setting the incoming argument to the "reset" value, we set the
5392         this.datamember to string.empty (before we were invalidating the
5393         incoming data).   
5394
5395         Fixes 78420
5396
5397 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
5398
5399         * Form.cs: Only apply transparency settings after the form
5400           is created. (Fixes #77800)
5401
5402 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
5403
5404         * ApplicationContext.cs: Grab the HandleDestroyed event so
5405           we know when to fire OnMainFormClosed 
5406
5407 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
5408
5409         * Application.cs: Introduced sub-class to allow tracking of
5410           threads and centralized triggering of the event mess for
5411           ThreadExit, AppExit, etc..  (#76156)
5412
5413 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
5414
5415         * MimeIcon.cs:
5416           - Do not return a null icon index value for a mime subclass.
5417             Instead try the main mime type class too.
5418           - Seems that some newer distributions don't have a link to some
5419             gnome default icons anymore. So check the default gnome dir too.
5420           
5421
5422 2006-05-16  Jackson Harper  <jackson@ximian.com>
5423
5424         * MdiClient.cs: Don't paint the parent background image if we have
5425         our own background image.
5426
5427 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
5428
5429         * Control.cs:
5430           - PerformLayout: Do not shrink space filled by DockStyle.Fill
5431             controls, all filled controls are supposed to overlap (#78080)
5432           - UpdateZOrder is supposed to update the control's z-order in the
5433             parent's z-order chain. Fixed to behave like that
5434           - BringToFront: Removed obsolete code
5435           - SendToBack: Simplyfied
5436           - SetChildIndex: Trigger layout calculations when Z-order changes
5437             since layout is done by z-order
5438
5439 2006-05-16  Chris Toshok  <toshok@ximian.com>
5440
5441         [ fixes bug #78410 ]
5442         * DataGrid.cs (set_AlternatingBackColor): use
5443         grid_drawing.InvalidateCells instead of Refresh().
5444         (set_BackColor): call grid_drawing.InvalidateCells.
5445         (set_BackgroundColor): use Invalidate instead of Refresh.
5446
5447         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
5448         invalidate the cell area.
5449
5450 2006-05-15  Chris Toshok  <toshok@ximian.com>
5451
5452         [ fixes bug #78011 ]
5453         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
5454         on to DataGridPaintRow.
5455         (DataGridPaintRow): take a clip argument, and only draw the cells
5456         which intersect it.  same with the not_usedarea.
5457
5458         * Theme.cs (DataGridPaintRow) add @clip parameter.
5459
5460         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
5461         XplatUI.ScrollWindow.
5462         (ScrollToRow): same.
5463
5464         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
5465         with last column which was causing a gray swath to appear with the
5466         XplatUI.ScrollWindow code.
5467
5468 2006-05-15  Chris Toshok  <toshok@ximian.com>
5469
5470         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
5471         use XplatUI.ScrollWindow.
5472         (VerticalScrollEvent): use XplatUI.ScrollWindow.
5473
5474 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
5475
5476         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
5477
5478 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
5479
5480         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
5481           file since there are no equivalent X11 cursors
5482
5483 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
5484
5485         * MonthCalendar.cs : DateTimePicker should reflect selected date
5486           on mouse*up*, not mouse*down*. Fixed originally reported part of
5487           bug #76474.
5488
5489 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
5490
5491         * TabControl.cs : When argument index is equal or more than tab
5492           count, just ignore. Fixed bug #78395.
5493
5494 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
5495
5496         * Control.cs: Dispose all child controls when control is diposed (#78394)
5497
5498 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
5499
5500         * ColorDialog.cs: Finally it is possible to select the color with
5501           the text boxes
5502
5503 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
5504
5505         * PrintDialog.cs: Fix typo
5506
5507 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
5508
5509         * PrintDialog.cs: PrintDialog is not resizable
5510         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
5511           color. Made some ToolBar drawing methods protected virtual.
5512
5513 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
5514
5515         * PrintDialog.cs: Implementation of the PrintDialog
5516
5517 2006-05-12  Chris Toshok  <toshok@ximian.com>
5518
5519         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
5520         thumb, instead use MoveThumb.  This has the side effect of making
5521         most of the other thumb moving machinery use MoveThumb as well.
5522         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
5523         need to actually invalidate the rectangle where the new thumb will
5524         go.
5525         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
5526         We force an Update() after, so it's not as fast as it could be,
5527         but at least there's zero flicker and no droppings.
5528         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
5529         (UpdateThumbPos): add another argument (dirty), which says whether
5530         or not to calculate/add dirty regions which we later invalidate.
5531         For cases where we know we're going to use MoveThumb, we pass
5532         false for this.  Otherwise, pass true.
5533
5534 2006-05-12  Jackson Harper  <jackson@ximian.com>
5535
5536         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
5537         the status bar.
5538         
5539 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
5540
5541         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
5542           and GetClipRegion methods and UserClipWontExposeParent property.
5543         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
5544           overriding UserClipWontExposeParent property, setting to false, since
5545           Win32 handles the required expose messages to draw our clipped parent
5546           areas internally
5547         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
5548           PaintEventStart to set the user clip region if set.
5549         * Control.cs: 
5550           - Now internally tracking the Region for the control since we need to
5551             store it if the handle is not yet created and only set it when it
5552             becomes created. Before setting the region forced handle creation
5553           - Added code to draw the parents underneath a user-clipped region
5554         * Hwnd.cs: Added UserClip property
5555
5556 2006-05-12  Chris Toshok  <toshok@ximian.com>
5557
5558         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
5559         (set_Maximum): same.
5560         (set_Minimum): same.
5561         (set_SmallChange): same.
5562         (OnMouseUpSB): remove the call to refresh when releasing the
5563         thumb.  We shouldn't need it.
5564         
5565 2006-05-12  Miguel de Icaza  <miguel@novell.com>
5566
5567         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
5568         AutoSize set to None, we do not need to relayout everything, we
5569         just need to invalidate the current region.
5570
5571         (Draw): Do not draw the entire ClientArea, just redraw the
5572         clip area being passed.
5573
5574         * MdiClient.cs: Make MdiClient constructor with the Form argument
5575         internal. 
5576
5577 2006-05-12  Jackson Harper  <jackson@ximian.com>
5578
5579         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
5580         parents background image,  but strangely not their own.
5581         - (DrawStatusBarPanel): Take into account horizontal alignment
5582         when drawing the strings and icons.
5583
5584 2006-05-12  Mike Kestner  <mkestner@novell.com>
5585
5586         * ListBox.cs: avoid invalidations for focus when the collection is
5587         empty. 
5588
5589 2006-05-12  Chris Toshok  <toshok@ximian.com>
5590
5591         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
5592         invalidate the entire thumb area.  Call InvalidateDirty which
5593         limits the redraw to the thumb itself and surrounding pixels.
5594
5595         * XplatUIX11.cs (ScrollWindow): optimize copying.
5596         
5597 2006-05-12  Chris Toshok  <toshok@ximian.com>
5598
5599         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
5600         Figure out the positioning/layout in a single pass instead of
5601         multiple recursive invocations.  Speeds up the initial display of
5602         the data grid.  Also, make many things private that were
5603         originally public but unused outside this class.
5604
5605 2006-05-11  Jackson Harper  <jackson@ximian.com>
5606
5607         * MdiClient.cs: Improved layout code.
5608
5609 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
5610
5611         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
5612           not SelectedObject.
5613
5614 2006-05-11  Chris Toshok  <toshok@ximian.com>
5615
5616         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
5617         union of that will always be {0,0,width,height}.
5618
5619 2006-05-11  Jackson Harper  <jackson@ximian.com>
5620
5621         * Form.cs: Match MS's DefaultSize for forms (they must have
5622         changed the size in sp2).
5623
5624 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
5625
5626         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
5627
5628 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
5629
5630         * TextControl.cs : Fixed bug #78109. This incorrect position
5631           comparison caused crash on automatic line split.
5632         * TextBoxBase.cs : reduce duplicate code.
5633
5634 2006-05-10  Jackson Harper  <jackson@ximian.com>
5635
5636         * MdiClient.cs: Active form is only sent to the back when using
5637         the Next form functionality, when a form is clicked the current
5638         active shouldn't be sent to the back.
5639         - Layout the mdi windows when the container is first made visible.
5640         * Form.cs: Give the MdiClient a ref to the containing form when we
5641         create it.
5642         
5643 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
5644
5645         * LinkLabel.cs : link_font could be uninitialized, so populate one
5646           before actual use. Fixed bug #78340.
5647
5648 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
5649
5650         * XplatUIX11.cs : clipboard format native value is IntPtr.
5651           Fixed bug #78283.
5652
5653 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
5654
5655         * Control.cs: 
5656           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
5657             which is passed up the parent chain by DefWndProc
5658           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
5659             to DefWndProc (#77956)
5660         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
5661
5662 2006-05-10  Jackson Harper  <jackson@ximian.com>
5663
5664         * MdiClient.cs: We need to remove the controls from the mdi
5665         collection, when we close the window.
5666         * MdiWindowManager.cs: Special handling of closing mdi windows.
5667         * InternalWindowManager.cs: Make the close method virtual so the
5668         mdi window manager can handle it specially.
5669
5670 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
5671
5672         * DataGrid.cs:
5673           - Recalculate grid when the data source has changed
5674           - Matches styles provided by user from all data sources types
5675         * DataGridTableStyle.cs: For columns that provided by the user set the
5676         with the preferred value is there was unassigned.
5677         * CurrencyManager.cs: throw OnItemChanged event
5678
5679 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
5680
5681         * PictureBox.cs: Don't animate until handle is created. Start animation
5682           when handle is created.
5683
5684 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
5685
5686         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
5687           current codebase.
5688         * XEventQueue.cs: We don't need to provide the extra info
5689
5690 2006-05-10  Jackson Harper  <jackson@ximian.com>
5691
5692         * MdiClient.cs: If the mdi clients parent form has a background
5693         image set, we draw that background image for the mdi area's
5694         background.
5695
5696 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
5697
5698         * TextBoxBase.cs: Set IBeam cursor (#78347)
5699
5700 2006-05-10  Mike Kestner  <mkestner@novell.com>
5701
5702         * ToolBar.cs: fix some text padding issues with ButtonSize
5703         calculation. Update the default size to match MS documentation.
5704         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
5705         button size. Fixes #78296.
5706
5707 2006-05-10  Mike Kestner  <mkestner@novell.com>
5708
5709         * ListBox.cs: use is_visible for scrollbar positioning in case the
5710         control isn't on screen yet.  Fix off by one with Right vs Width
5711         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
5712         
5713 2006-05-10  Jackson Harper  <jackson@ximian.com>
5714
5715         * X11Dnd.cs: Drop to a control with another control on top of it.
5716         * ToolBar.cs: Work on a copy of the buttons list, so that it can
5717         be modified in click handlers. TODO: Look for similar problems in
5718         other controls.
5719
5720 2006-05-09  Jackson Harper  <jackson@ximian.com>
5721
5722         * Form.cs: Window managers need the old window state when setting
5723         window state now.
5724         * InternalWindowManager.cs: Allow the base mdi window manager to
5725         handle more of the MDI only stuff (like maximize buttons).
5726         * MdiWindowManager.cs: Fix some snafus in changing the window
5727         state.  Add all the menu functionality, for both popup and
5728         maximized menus.
5729         * MdiClient.cs: When a new form is selected the currently
5730         activated form is sent to the back, this matches MS.
5731         - Implement a new method to activate the next mdi child window.
5732
5733 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
5734
5735         * Control.cs: 
5736           - Added new InternalCapture method to allow controls to prevent
5737             the capture behaviour on the click handlers
5738           - Switched to use InternalCapture
5739         * ComboBox.cs:
5740           - Using InternalCapture to prevent mouse captures from being released
5741             on mouse button release (Fixes #78100)
5742         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
5743           returns Form borders if a caption is present. (Fixes #78310)
5744
5745 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
5746
5747         * TreeNode.cs: Changed serialization .ctor to not require every field
5748           to be present. (#78265)
5749         * OwnerDrawPropertyBag.cs: Added serialization .ctor
5750
5751 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
5752
5753         * MimeIcon.cs: for is faster than foreach for strings.
5754
5755 2006-05-05  Mike Kestner  <mkestner@novell.com>
5756
5757         * CheckedListBox.cs: update check handling code to not use selected.
5758         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
5759         behavior for visual feedback, motion response, shift/ctrl handling,
5760         and properly deal with all 4 selection modes. Updates to bounds
5761         handling logic.  Add scroll wheel support. [Fixes #77842]
5762
5763 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
5764
5765         * ListView.cs:
5766           - Moved adding of Implicit controls into .ctor. That way, subsequent
5767             creation of the controls will not cause them to think they are 
5768             toplevel windows (fixes #78200 header problem)
5769           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
5770           - Switched visibility setting of header control to use internal field
5771             to avoid triggering handle creation
5772           - Now checking if handle is created before causing a refresh when items
5773             are added (This makes us now match handle creation time with MS)
5774         * Splitter.cs: Removed loading of private splitter cursor, switched to
5775           Cursors version now that that is loading the right ones
5776         * Cursors.cs: Load proper splitter cursors from resources
5777         * Cursor.cs: Added second method of loading resource cursors for the 
5778           VS.Net users amongst us
5779
5780 2006-05-05  Mike Kestner  <mkestner@novell.com>
5781
5782         * ListView.cs: give header_control a minimum size based on the
5783         ListView size.
5784
5785 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
5786
5787         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
5788           window seems to do that with metacity, so set that type. (#78120)
5789
5790 2006-05-05  Mike Kestner  <mkestner@novell.com>
5791
5792         * ListViewItem.cs: fix Details mode checkbox layout bug.
5793         * ThemeWin32Classic.cs: draw a ListView column header for unused space
5794         at the end of the header, if it exists. [Fixes for #78200]
5795
5796 2006-05-04  Jackson Harper  <jackson@ximian.com>
5797
5798         * MdiClient.cs: Add a helper property to get the container form.
5799         * MdiWindowManager.cs: We have to make sure to use the menu origin
5800         when drawing the icons and buttons, this fixes maximized window
5801         icons/buttons on win32.
5802         * InternalWindowManager.cs: Reset the restore captions when a
5803         window goes from Maximized to Minimized and vice versa. Move the
5804         DrawMaximizedButtons into the MdiWindowManager source, tool
5805         windows can't be maximized. NOTE: This could use a little
5806         refactoring if time ever permits.
5807         
5808 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
5809
5810         * TextBox.cs: Add MWFCategoryAttributes
5811         * TextBoxBase.cs: Add MWFCategoryAttributes
5812         * Form.cs: Add MWFCategoryAttributes
5813
5814 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
5815
5816         * Control.cs: Add MWFCategoryAttributes
5817         * ScrollableControl.cs: Add MWFCategoryAttributes
5818
5819 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
5820
5821         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
5822           Divider is true. Fix a little glitch in PropertyToolBar
5823           drawing code
5824
5825 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
5826
5827         * Control.cs:
5828           - Dispose: Call base.Dispose, this causes the disposed event
5829             to be fired (and probably other, more important stuff)
5830           - SetVisibleCore: Set is_visible to true after creating the
5831             window so that the window still gets created invisible (if
5832             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
5833             to generate a WM_ACTIVE message
5834         * Form.cs: Call Dispose when we want to destroy the window, instead of
5835           just destroying the handle (Dispose will do that for us)
5836         * XplatUIX11.cs:
5837           - RootWindow also needs a queue, so we can properly process the
5838             property change events from RootWindow (like Activate)
5839           - Generatic synthetic WM_ACTIVE message when the active window is
5840             being destroyed
5841
5842 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
5843
5844         * LinkLabel.cs: Trigger a recalc of our label dimensions when
5845           bounds are changed
5846
5847 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
5848
5849         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
5850           for determining width and height (image might not be assigned if
5851           we're drawing an imagelist)
5852
5853 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
5854
5855         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
5856         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
5857           height from system
5858         * Theme.cs: No longer returns hardcoded menu height, instead calls
5859           new driver method
5860         * Form.cs (OnLoad): Scaling happens before triggering Load events 
5861           on MS (# 78257)
5862
5863 2006-05-01  Mike Kestner  <mkestner@novell.com>
5864
5865         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
5866
5867 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
5868
5869         * TextBoxBase.cs: Removed Fixme
5870         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
5871
5872 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
5873
5874         * XplatUIX11.cs:
5875           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
5876             the rectangle relative to the parent, considering borders. We
5877             don't really want that.
5878           - ScrollWindow: Fixed warning to be more understandable
5879         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
5880           scrollbars and scroll only the visible area
5881         * RichTextBox.cs: Removed debug output
5882
5883 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
5884
5885         * NumericUpDown.cs (Text): Just use base
5886         * UpDownBase.cs: Ensure txtView is created before using it
5887
5888 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
5889
5890         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
5891           casting to IntPtr to avoid 64bit overflow errors
5892
5893 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
5894
5895         * Control.cs:
5896           - AllowDrop: Don't force handle creation.
5897           - CreateHandle: Added call to tell driver if we're allowed to drop
5898
5899 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
5900
5901         * FileDialog.cs: Remember the last directory not only for the
5902           current instance but also for new FileDialog instances.
5903
5904 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
5905         
5906         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
5907           broke sending async messages
5908
5909 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
5910
5911         * XplatUIX11.cs:
5912           - ScrollWindow: Fixed method. We finally generate expose events again
5913             for scrolled areas. This was causing 'garbage' when scrolling
5914             textbox and other controls that used ScrollWindow
5915           - Switched from using the regular queue for paint events to the MS 
5916             model of 'generating' paint events when the queue is empty.
5917             We use the new XQueueEvent.Paint subclass to store which windows
5918             need painting.
5919           - AddExpose now takes the x/y/width/height of the exposed area
5920             and inserts the window into the paint queue if not already there
5921           - InvalidateWholeWindow: Switched to use new AddExpose method
5922           - UpdateMessageQueue: Added which queue to monitor for paint events
5923           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
5924             the unlikely case nothing above handles it. We reset the expose
5925             pending states to get them off the queue.
5926           - GetMessage: Now pulls a paint event if no other events are in the
5927             queue
5928           - Invalidate: Switched to new AddExpose method
5929           - PeekMessage: Updated to understand pending paint events
5930           - UpdateWindow: Fixed logic bug. We were only updating if the window
5931             didn't need updating. Also switched to sending WM_PAINT directly,
5932             like MS does.
5933         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
5934           and random access Remove(). The random access is needed to handle
5935           UpdateWindow() where a WM_PAINT is sent directly without accessing
5936           the queue.
5937         * ScrollBar.cs: Added Update() calls to cause immediate updates to
5938           allow for better feedback when scrolling. Scrollbars are small and
5939           the immediate update should make it 'feel' more responsive without
5940           slowing things down. ScrollBar still needs it's invaliate logic
5941           updated to not always invalidate the whole bar on certain changes.
5942
5943 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5944
5945         * Control.cs:
5946         (BackColor): if the control does not support a transparent background,
5947         return the default backcolor when the parent backcolor is transparent.
5948
5949 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
5950
5951         * Application.cs: Updated to new StartLoop/GetMessage API
5952         * RichTextBox.cs: Provide some output on RTF parsing errors
5953         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
5954           new queue_id argument to GetMessage and PeekMessage to allow faster
5955           handling of per-thread queues in drivers.
5956         * Hwnd.cs: Added Queue tracking and property
5957         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
5958         * XEventQueue.cs: Added thread trackingA
5959         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
5960         * XplatUIX11.cs:
5961           - Implemented new per-thread queue
5962           - GetMessage: Fixed return/break behaviour on several cases. We were
5963             returning stale messages in some cases, instead of just processing
5964             the next message
5965
5966 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
5967
5968         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
5969
5970 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
5971
5972         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
5973           fixed off-by-one comparisons between Width/Height and Right/Bottom.
5974
5975 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
5976
5977         * PropertyGridView.cs: Fix drop down width.
5978
5979 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
5980
5981         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
5982           a mess in DrawToolBar, so I removed one of them.
5983
5984 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
5985
5986         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
5987           needed (clip). Otherwise we get artifacts.
5988
5989 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
5990
5991         * FixedSizeTextBox.cs: Added constructor to allow specifying which
5992           dimension is fixed
5993         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
5994           and switched FixedSizeTextBox to only be fixed vertical (#78116)
5995         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
5996           if it matches the scale base font (avoids unneeded scaling)
5997
5998 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
5999
6000         * X11DesktopColors.cs: One gtk_init_check should be enough
6001
6002 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
6003
6004         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
6005           match MS behaviour
6006
6007 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
6008
6009         * TextBoxBase.cs: 
6010           - Generate OnTextChanged for Backspace even if we're only deleting
6011             the current selection
6012           - When setting the Text property, only select all text if the
6013             control does not have focus when it is being set. Otherwise
6014             just place the cursor at the beginning of the control
6015
6016 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
6017
6018         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
6019           Added a little helper to draw PropertyGrid ToolBar with a different
6020           border and a different BackColor.
6021         * PropertyGrid.cs: Some background parts didn't get painted with the
6022           correct background color. Added a class that helps us to draw the
6023           correct border for PropertyGridView and a class that helps us to
6024           draw ToolBars with a different backcolor
6025         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
6026
6027 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
6028
6029         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
6030         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
6031
6032 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
6033
6034         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
6035           into the palette entries. Also, since we're working on a copy
6036           we needed to copy the palette back onto the bitmap.
6037         * Cursor.cs: Same fix as XplatUIWin32.cs.
6038
6039 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
6040
6041         * ImageListStreamer.cs: Need to read the var (or we're off)
6042
6043 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
6044
6045         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
6046           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
6047           TextBoxBase.cs: Unused var fixes
6048         * AxHost.cs: Small 2.0 fix
6049         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
6050           as it seems that is what at least Metacity expects. This will make
6051           icons show up on 64bit platforms. We still have some 64bit size
6052           issues, though, since the startup app window size still won't match.
6053
6054 2006-04-25  Mike Kestner  <mkestner@novell.com>
6055
6056         * *.cs: cleanup newly reported exception var unused warnings.
6057
6058 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
6059
6060         * ThemeWin32Classic.cs: Button image alignment now matches exactly
6061           ms
6062
6063 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
6064
6065         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
6066           image. The image position is always the same, no matter if the
6067           button is pressed or not.
6068
6069 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
6070
6071         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
6072           selection and set the correct filename for SaveFileDialog.
6073           Patch by Emery Conrad.
6074
6075 2006-04-24  Mike Kestner  <mkestner@novell.com>
6076
6077         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
6078         check for item.X outside the ClientRect instead of item.Y. Fixes
6079         #78151.
6080
6081 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6082
6083         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
6084         trust that value blindly and do some sanity check. Fixes bug #77814.
6085
6086 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6087
6088         * ImageListStreamer.cs: save the mask as a 1bpp image.
6089
6090 2006-04-21  Mike Kestner  <mkestner@novell.com>
6091
6092         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
6093         pass Checked and Indeterminate to the Theme Engine. Improve
6094         encapsulation with ListBox.
6095         * ListBox.cs: Keep a StringFormat instead of calculating it every item
6096         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
6097         nested types.  Move all CheckState functionality to CheckedListBox.
6098         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
6099         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
6100         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
6101         single base list. Fix scrollbar sizing and placement to mirror MS.
6102         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
6103         used.
6104         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
6105         for CheckedListBox by using new DrawItemState info.  Center the
6106         checkboxes on the items. Use new StringFormat property.
6107
6108 2006-04-18  Jackson Harper  <jackson@ximian.com>
6109
6110         * Form.cs: MdiChildren don't do default locations the same way as
6111         regular forms.  This prevents a crash when trying to position the
6112         mdi windows.
6113
6114 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
6115
6116         * PropertyGridTextBox.cs: Formatting, copyright
6117         * PropertiesTab.cs: Formatting
6118         * PropertyGrid.cs: Formatting
6119         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
6120           click toggling of values
6121           
6122 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
6123
6124         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
6125         * Control.cs (.ctor): verify_thread_handle is static, don't reset
6126           every time a control is created
6127         * Application.cs: Removed obsolete EnableRTLMirroring method
6128
6129 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
6130
6131         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
6132         SelectedIndex to -1. Fixes bug #78121.
6133
6134 2006-04-17  Jackson Harper  <jackson@ximian.com>
6135
6136         * Binding.cs: Handle null values for Current and BindingContext.
6137         This occurs when binding is a little delayed.
6138         * CurrencyManager.cs: return null for Current when there are no
6139         items in the list.
6140         - Hookup to the listchanged event on the DataView and update
6141         bindings when the list is changed.  This fixes late binding of
6142         controls.
6143
6144 2006-04-17  Jackson Harper  <jackson@ximian.com>
6145
6146         * X11Dnd.cs:
6147         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
6148         Ringenbach.
6149
6150 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
6151
6152         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
6153           place
6154         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
6155           with the correct ButtonState
6156
6157 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
6158
6159         * XplatUIX11.cs: Improved distinguishing between window types to
6160           tell the WM a type closer to what the app wants (Fixes #78107)
6161
6162 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
6163
6164         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
6165           GrabHandle
6166
6167 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
6168
6169         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
6170           drawing code to reflect the size grip changes
6171
6172 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6173
6174         * ImageListStreamer.cs: fix handling of the mask that follows the main
6175         bitmap when deserializing and serialize it properly. The generated mask
6176         should better be a 1bpp image, but I'll do that later.
6177
6178 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
6179
6180         * FileDialog.cs: Show something in the DirComboBox on *nix if the
6181           path doesn't fit into some of our Current.Places
6182
6183 2006-04-13  Jackson Harper  <jackson@ximian.com>
6184
6185         * ComboBox.cs: Use borders instead of drawing our own decorations,
6186         try to obey correct rules for heights.
6187         * Theme.cs:
6188         * ThemeNice.cs:
6189         * ThemeClearLooks.cs:
6190         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
6191         this is now handled by borders.
6192         - Remove unused DrawListBoxDecorationSize method.
6193         
6194 2006-04-13  Mike Kestner  <mkestner@novell.com>
6195
6196         * MenuAPI.cs: null guarding for the disbled click check fixes crash
6197         reported by Alex.
6198
6199 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
6200
6201         * ThemeWin32Classic.cs: 
6202           - Fixed CPDrawStringDisabled
6203           - Corrected drawing of disabled menu items
6204           - Fixed drawing of disabled radio buttons (bug #78095)
6205           - Draw check in a disabled CheckBox with color ControlDark 
6206
6207 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
6208
6209         * Form.cs: Use the provided width when calculating the menu size;
6210           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
6211           and ClientSize.Width won't be updated yet
6212         * Application.cs: Use Visible instead of Show() to make form visible,
6213           this way we create the handle later and menusize is considered
6214
6215 2006-04-12  Mike Kestner  <mkestner@novell.com>
6216
6217         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
6218         reporting.
6219
6220 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
6221
6222         * TextBox.cs: Implemented context menu
6223
6224 2006-04-12  Mike Kestner  <mkestner@novell.com>
6225
6226         * ListView.cs: implement box selection. fixes #77838.
6227         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
6228
6229 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
6230
6231         * XplatUIX11.cs: Added setting of window type when transient window
6232           is created (metacity would move it otherwise)
6233         * X11Structs.cs: Added WINDOW_TYPE atoms
6234         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
6235           background (the control is Opaque but still wants transparent
6236           backgrounds)
6237
6238 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
6239
6240         * Control.cs: Added OnPaintBackgroundInternal to allow controls
6241           that set Opaque but don't mean it (like all ButtonBase-derived
6242           controls) to still draw their background
6243         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
6244           the background
6245
6246 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
6247
6248         * Control.cs (PaintControlBackground): Set the graphics object
6249           on our PaintEvent to null to prevent it from being disposed
6250           when the PaintEvent gets disposed
6251
6252 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
6253
6254         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
6255         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
6256
6257 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
6258
6259         * Control.cs: 
6260           - Added transparency check to BackColor property. Transparent
6261             backgrounds are only allowed if the control styles permit it
6262           - Added recursive painting of parent control background and
6263             foreground if a control with a transparent backcolor is drawn
6264             (Thanks to Tim Ringenback for providing his 'hack' as a base
6265              for this patch) Fixes #77985 and #78026.
6266           - Added Opaque style check before calling OnPaintBackground, no
6267             need to draw the background if the control is opaque
6268           - Removed ControlAccessibleObject owner variable (inherited from
6269             base, no need to define again)
6270           - Added some documentation links explaining the drawing events
6271             and styles
6272
6273 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
6274
6275         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
6276           that the affected control is the located at the left border of our
6277           parent (Fixes #77936)
6278
6279 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
6280
6281         * TextBoxBase.cs: When rendering disabled or readonly controls,
6282           draw the background with 'Control' instead of 'Window' color as
6283           long as the user hasn't specifically set a color
6284
6285 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
6286
6287         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
6288           since that won't be updated if the user types text (only if it's
6289           programatically set)
6290
6291 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
6292
6293         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
6294           layout changes do to app-triggered resizes will have the proper
6295           display rectangle for layout
6296
6297 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
6298
6299         * ThemeWin32Classic.cs:
6300           - Make use of the SystemBrushes and SystemPens wherever possible
6301           - Corrected some highlight colors
6302           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
6303             drawing
6304         * Theme.cs: Added Empty field to CPColor struct
6305
6306 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
6307
6308         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
6309           is displayed when calculating the display rectangle. Thanks to Mike
6310           for teaching me the err of my ways.
6311
6312 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
6313
6314         * ScrollableControl.cs:
6315           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
6316             (instead of 0,0) and we now return the real width/height instead of
6317             just the clientrectangle, adjusted for padding. The rectangle is
6318             now cached and created by the new CalculateDisplayRectangle method.
6319           - Created new CalculateDisplayRectange method, which basically does
6320             what get_DisplayRectangle() did originally, but now using the 
6321             right edge instead of DisplayRectangle to determine the size of
6322             our scrollbars
6323           - get_Canvas(): Fixed it to properly calculate canvas for 
6324             right/bottom controls which seem to be placed to the right/bottom
6325             of any controls that have a fixed location
6326           - Removed TODO that's taken care of
6327           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
6328             and SetDisplayRectLocation according to new MSDN2 docs
6329           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
6330             event when that is called, this is added for compatibility
6331           - ScrollControlIntoView(): Implemented.
6332           - Switched scrollbars to be implicit, they shouldn't be selectable
6333         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
6334           call it when the active control is set/changed
6335         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
6336         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
6337           implicit_control variable (used for native Win32 message generation)
6338         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
6339           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
6340         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
6341         * XplatUIStructs.cs: Added ScrollBarCommands enum
6342
6343 2006-04-10  Jackson Harper  <jackson@ximian.com>
6344
6345         * ButtonBase.cs:
6346         * CheckedListBox.cs:
6347         * ComboBox.cs:
6348         * DataGrid.cs:
6349         * DataGridView.cs:
6350         * Form.cs:
6351         * GroupBox.cs:
6352         * ListBox.cs:
6353         * PrintPreviewControl.cs:
6354         * ProgressBar.cs:
6355         * PropertyGrid.cs:
6356         * Splitter.cs:
6357         * StatusBar.cs:
6358         * TrackBar.cs:
6359         * UpDownBase.cs: Fixup base event overrides.
6360         
6361 2006-04-06  Mike Kestner  <mkestner@novell.com>
6362
6363         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
6364         all user-initiated value changes to min <= value <= max-thumbsz+1.
6365         (set_Value): check for vert/horiz when calculating new thumb position.
6366         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
6367         like MS does.
6368         (OnMouseMoveSB): refactor the thumb dragging code and refine
6369         invalidation logic to reduce flicker.
6370         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
6371         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
6372         (UpdateThumbPosition): small code readability cleanup
6373
6374 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
6375
6376         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
6377           different
6378
6379 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
6380
6381         * ThemeNice.cs: Use a better graphics effect when a button is pressed
6382
6383 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
6384
6385         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
6386         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
6387           This dramatically reduces the number of Pen.Dispose calls. 
6388           Where possible call ResPool methods only once instead of calling it
6389           over and over again (for example for the same color).
6390
6391 2006-04-06  Mike Kestner  <mkestner@novell.com>
6392
6393         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
6394         Also remove an unused private field on the collection. Fixes #77972.
6395
6396 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
6397
6398         * ThemeNice.cs: Added ToolBar drawing code
6399
6400 2006-04-06  Mike Kestner  <mkestner@novell.com>
6401
6402         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
6403         I'm assuming that means we need to look up the toplevel for the
6404         provided control. Fixes the crash trace in #77911 but exposes another
6405         crash in some strange reflection usage in NDocGui.
6406
6407 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
6408
6409         * ThemeNice.cs: Gave it a little silver touch and added Images
6410           method
6411         * FontDialog.cs: FontDialog is not resizable
6412         * FileDialg.cs: Added SizeGripStyle.Show
6413
6414 2006-04-05  Jackson Harper  <jackson@ximian.com>
6415
6416         * KeyboardLayouts.cs: Remove warning.
6417
6418 2006-04-05  Jackson Harper  <jackson@ximian.com>
6419
6420         * Control.cs: Enable OnPaintInternal so we can use it for drawing
6421         all of our controls instead of Paint +=.
6422         * ListBox.cs:
6423         * ListView.cs:
6424         * MenuAPI.cs:
6425         * MessageBox.cs:
6426         * NotifyIcon.cs:
6427         * ProgressBar.cs:
6428         * ScrollBar.cs:
6429         * Splitter.cs:
6430         * StatusBar.cs:
6431         * TabControl.cs:
6432         * TextBoxBase.cs:
6433         * ToolBar.cs:
6434         * TrackBar.cs:
6435         * UpDownBase.cs:
6436         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
6437         use OnPaintInternal. Remove Width/Height and Visible checks in
6438         paint handler, this is done at a higher level now.
6439         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
6440         * PaintEventArgs.cs: Add a handled flag so controls that don't
6441         want anymore painting after OnPaintInternal can make sure OnPaint
6442         isn't called.
6443
6444 2006-04-05  Mike Kestner  <mkestner@novell.com>
6445
6446         * Form.cs: fix the menu WndProc hacks to respect the native enabled
6447         state of the form, so that we don't process events when Modal dialogs
6448         are up. Fixes #77922.
6449
6450 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
6451
6452         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
6453           checking is done.
6454
6455 2006-04-05  Mike Kestner  <mkestner@novell.com>
6456
6457         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
6458
6459 2006-04-05  Mike Kestner  <mkestner@novell.com>
6460
6461         * ListView.cs (HeaderMouseMove): null guarding for the over column
6462         when setting up the drag_to_index.  Fixes #78015.
6463
6464 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
6465
6466         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
6467           in the taskbar. Transient windows seem to accomplish that.
6468
6469 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
6470
6471         * Form.cs:
6472           - Re-enabled CreateParams.X/Y code for FormStartPosition
6473           - Added code for manual placement when creating the Control
6474           - Incomplete patch to treat MDI forms differently when
6475             setting the ClientSizeCore. (Still need to figure out handling
6476             x/y coords there)
6477         * XplatUIX11.cs:
6478           - When we're explicitly setting the X/Y position of a non-Child
6479             window, let the WM know. Metacity really wants this.
6480
6481 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
6482
6483         * ThemeNice.cs: Added CPDrawButton
6484
6485 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
6486
6487         * ThemeNice.cs: Changed the color for focused buttons and activated
6488           the arrows for small scroll buttons.
6489
6490 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
6491
6492         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
6493           anymore. Changed some method modifiers to protected (virtual)
6494         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
6495           changes
6496         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
6497           Updated drawing of menus, buttons and progressbars; added
6498           CPDrawBorder3D 
6499
6500 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6501
6502         * ImageListStreamer.cs: implemented serialization/deserialization
6503         of the images.
6504
6505 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
6506
6507         * ThemeWin32Classic.cs:
6508           - Removed all the DrawFrameControl stuff; CPDrawButton,
6509             CPDrawCheckBox and CPDrawRadioButton are now handled directly
6510             inside the methods
6511           - Updated and corrected the drawing code of CPDrawButton,
6512             CPDrawCheckBox and CPDrawRadioButton to better match ms
6513           - Updated theme checkbox and radiobutton code to use the CP*
6514             methods
6515
6516 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
6517
6518         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
6519           bug is fixed
6520
6521 2006-03-31  Jackson Harper  <jackson@ximian.com>
6522
6523         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
6524         sometimes.
6525         * UpDownBase.cs: Don't CreateGraphics manually, use a
6526         Refresh. Ideally we would invalidate the correct areas here.
6527
6528 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
6529
6530         * XplatUIX11.cs: 
6531           - We now track the mapping state of windows. If a window (or 
6532             one of it's parents) is not mapped we no longer permit
6533             WM_PAINT messages to be generated since we'd otherwise get 
6534             lots of BadMatch X errors. Jackson did all the work figuring
6535             out the problem.
6536           - Destroying the caret if the window it's contained in is 
6537             destroyed. Can't use regular DestroyCaret method since it
6538             might fall into a drawing function (trying to remove the
6539             caret) and with that generate new BadMatch errors. Again,
6540             Jackson tracked this down.
6541           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
6542             make sure we send the messages to all windows. (The old code
6543             would send the WM_DESTROY to the window, and then all child
6544             windows would be 'gone' because the WM_DESTROY handle lookup
6545             would no longer find the destroyed window)
6546         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
6547         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
6548
6549 2006-03-31  Jackson Harper  <jackson@ximian.com>
6550
6551         * ScrollableControl.cs: Dont recalc if we are not visible.
6552
6553 2006-03-31  Mike Kestner  <mkestner@novell.com>
6554
6555         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
6556         the visibility branch.
6557
6558 2006-03-31  Jackson Harper  <jackson@ximian.com>
6559
6560         * ScrollBar.cs: Cap values when incrementing/decrementing.
6561
6562 2006-03-31  Mike Kestner  <mkestner@novell.com>
6563
6564         * MenuAPI.cs: setup menu.tracker for popup/context menus.
6565         * ToolTip.cs: guard against timer expirations with no active control.
6566         Not sure why it happened.
6567
6568 2006-03-31  Mike Kestner  <mkestner@novell.com>
6569
6570         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
6571         text.
6572         * ToolTip.cs: Position the tooltip based on where the cursor is at
6573         popup time, not at MouseEnter time.  Add a Down state so that we don't
6574         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
6575         positioning offset. Lookup DisplaySize at positioning time, since it
6576         can theoretically change during invocation.
6577         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
6578         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
6579
6580 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
6581
6582         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
6583           Fixes behaviour when the Text property of the box is String.Empty
6584
6585 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
6586
6587         * XplatUIX11.cs: Only send mouseleave for our client windows, not
6588           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
6589           a window)
6590
6591 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
6592
6593         * FileDialog.cs: Visual enhancement for the popup buttons in 
6594           PopupButtonPanel
6595
6596 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
6597
6598         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
6599           code
6600
6601 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
6602
6603         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
6604           highlighted menu items to match ms
6605
6606 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
6607
6608         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
6609
6610 2006-03-30  Mike Kestner  <mkestner@novell.com>
6611
6612         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
6613         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
6614         go active to account for HotLight to Selected transition.
6615         * MenuItem.cs: add internal Selected prop. Fill out the Status
6616         property by calculating it from item info. Add HotLight,
6617         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
6618
6619 2006-03-30  Mike Kestner  <mkestner@novell.com>
6620
6621         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
6622
6623 2006-03-29  Jackson Harper  <jackson@ximian.com>
6624
6625         * Form.cs: Implement TODO.
6626
6627 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
6628
6629         * PrintPreviewDialog.cs: Implemented missing methods and events; still
6630           missing proper dialog setup in the constructor
6631
6632 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
6633
6634         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
6635         * Control.cs:
6636           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
6637           - Fixed ResetBindings and removed TODO
6638           - Added check for cross-thread calls to get_Handle()
6639           - Added Marshaller attribute for set_Font to satisfy class status
6640         * FontDialog.cs: Removed TODOs that seemed implemented
6641         * UpDownBase.cs: Removed unneeded TODO and Fixme
6642         * MessageBox.cs: Implemented support for Default button and removed TODO
6643         * FileDialog.cs: Removed obsolete TODO
6644         * DomainUpDown.cs: Removed obsolete TODO
6645         * ButtonBase.cs: Removed obsolete TODO
6646         * XplatUIWin32.cs: Removed obsolete TODO
6647         * Form.cs:
6648           - Removed obsolete TODO
6649           - Calling CheckAcceptButton when the acceptbutton is changed to allow
6650             internal status updates
6651           - Making sure the active control is selected when the control is created
6652         * CurrencyManager.cs: Removed obsolete TODO
6653
6654 2006-03-29  Mike Kestner  <mkestner@novell.com>
6655
6656         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
6657         of PrintPreviewDialog and RichTextBox.
6658
6659 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
6660
6661         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
6662           DarkDark, Light and LightLight colors for a specific color
6663         * ThemeWin32Classic.cs:
6664           - Use Button drawing code to draw RadioButtons and CheckBoxes with
6665             Appearance = Button 
6666           - Make use of the new ResPool helper CPColor
6667           - Draw ProgressBar and StatusBar with correct 3D borders
6668
6669 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
6670
6671         * ColorDialog.cs: Return selected color. Fixes bug #77940.
6672
6673 2006-03-28  Mike Kestner  <mkestner@novell.com>
6674
6675         * ListView.cs: fix Icon layout to plan for scrollbar widths when
6676         calculating col/row counts.
6677
6678 2006-03-28  Mike Kestner  <mkestner@novell.com>
6679
6680         * ColumnHeader.cs:
6681         * ListView.cs:
6682         * ListViewItem.cs:
6683         * Menu.cs: 
6684         switch to explicit interface method implementation for some methods
6685         corcompare identifies as inconsistent with MS.
6686
6687 2006-03-28  Mike Kestner  <mkestner@novell.com>
6688
6689         * MainMenu.cs: 
6690         * Menu.cs:
6691         add a few missing methods from the class status output.
6692
6693 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
6694
6695         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
6696           correct.
6697
6698 2006-03-28  Mike Kestner  <mkestner@novell.com>
6699
6700         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
6701
6702 2006-03-27  Mike Kestner  <mkestner@novell.com>
6703
6704         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
6705         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
6706
6707 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
6708
6709         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
6710
6711 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
6712
6713         * ThemeWin32Classic.cs:
6714           - GroupBox: Inserted a little gap between the text and the lines
6715             on the right side
6716           - Made the code in CPDrawBorder3D more readable
6717           - Corrected the drawing location of the up and down arrows in 
6718             CPDrawScrollButton
6719
6720 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
6721
6722         * ControlPaint.cs: Corrected line widths in DrawBorder for
6723           ButtonBorderStyle Inset and Outset
6724
6725 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
6726
6727         * ThemeWin32Classic.cs:
6728           - Rewrote the totally broken CPDrawBorder3D method. That was
6729             one of the main problems for the terrific ThemeWin32Classic
6730             look
6731           - Updated and corrected Button drawing
6732           - Correct the dimensions of the SizeGrip to match ms ones
6733           - Removed a small drawing glitch in DrawComboBoxEditDecorations
6734         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
6735           Border3DStyle.Sunken to match ms.
6736
6737 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
6738
6739         * ThemeWin32Classic.cs: First small part of the "de-uglify
6740           ThemeWin32Classic" effort, SizeGrip
6741
6742 2006-03-24  Jackson Harper  <jackson@ximian.com>
6743
6744         * XplatUIX11.cs: Give a max idle time of one second, this matches
6745         MS and forces an Idle event every second when there are no other
6746         events in the queue.
6747
6748 2006-03-24  Mike Kestner  <mkestner@novell.com>
6749
6750         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
6751         * ListView.Item.cs: fix layout issues with null image lists and images
6752         smaller than checkbox size.
6753         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
6754         mode like MS does.  It's weird, but consistent.  ;-)
6755         Fixes #77890.
6756
6757 2006-03-24  Mike Kestner  <mkestner@novell.com>
6758
6759         * ListView.cs: Scroll wheel support for the item control.  Fixes
6760         #77839.
6761
6762 2006-03-23  Jackson Harper  <jackson@ximian.com>
6763
6764         * ScrollableControl.cs: Special case negative sized areas, not
6765         zero.
6766         * MonthCalendar.cs: Save the rect of the clicked date so we can
6767         use it for invalidation.
6768         - Try to cut down on the number of invalidates
6769         - Invalidate the rect the mouse is over and was over when moving
6770         the mouse, so we get the focus box following the cursor.
6771
6772 2006-03-23  Mike Kestner  <mkestner@novell.com>
6773
6774         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
6775         focus rectangle drawing. Fixes #77835.
6776
6777 2006-03-23  Mike Kestner  <mkestner@novell.com>
6778
6779         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
6780         the if and else if and reverting back to the original == check on the
6781         None conditional.
6782
6783 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
6784
6785         * FontDialog.cs: Update the example panel if the selected index of
6786           the fontListBox changes.
6787
6788 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
6789
6790         * FileDialog.cs: Make FileDialog remember which directory it was in
6791           last in the same execution.
6792
6793 2006-03-22  Mike Kestner  <mkestner@novell.com>
6794
6795         * FileDialog.cs: make the DropDownMenu on the toolbar display
6796         RadioChecks since they are mutually exclusive and that's what MS does.
6797
6798 2006-03-22  Mike Kestner  <mkestner@novell.com>
6799
6800         * Theme.cs: add Color param to CPDrawMenuGlyph.
6801         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
6802         checks and radio marks and arrows are visible on highlighted items.
6803         * ControlPaint.cs: update to use new Theme signature.
6804
6805 2006-03-22  Mike Kestner  <mkestner@novell.com>
6806
6807         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
6808         is active. Fixes #77870.
6809
6810 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
6811
6812         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
6813           to be focused/selected after startup
6814
6815 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
6816
6817         * ColorDialog.cs: 
6818           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
6819             CustomColors and ShowHelp properties
6820           - Some internal rewrites to get better results when using the
6821             ColorMatrix
6822
6823 2006-03-22  Mike Kestner  <mkestner@novell.com>
6824
6825         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
6826         HoverSelection.  Fixes #77836.
6827
6828 2006-03-22  Mike Kestner  <mkestner@novell.com>
6829
6830         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
6831         ToggleButtons.  (De)Sensitize the Back button around a stack count of
6832         1, not 0.  Update ButtonSize based on a pixel count of the win32
6833         control.  Adjust the toolbar size/location for new button size.
6834
6835 2006-03-22  Jackson Harper  <jackson@ximian.com>
6836
6837         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
6838         true.
6839         * ScrollBar.cs: When doing increments and decrements we need to
6840         set the Value property so that ValueChanged gets raised. A
6841         possible optimization here would be to make an internal SetValue
6842         that doesn't invalidate immediately.
6843         * ToolTip.cs: Tooltips get added to their container (when
6844         supplied) so they get disposed when the container is disposed.
6845         - Don't create tooltips for String.Empty. This prevents all these
6846         little 2-3 pixel windows from showing up when running nunit-gui
6847         and driving me mad.
6848         * Form.cs: Don't set topmost when setting the owner if the handles
6849         haven't been created yet.  The topmost set will happen when the
6850         handles are created.
6851
6852 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
6853
6854         * XplatUIX11.cs:
6855           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
6856           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
6857             visible (to allow them to recalculate their sizes)
6858
6859 2006-03-21  Mike Kestner  <mkestner@novell.com>
6860
6861         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
6862         methods. Removed a ton of redundant code.  Still not really happy with
6863         the border rendering, but I think that's mainly because of the
6864         ControlDarkDark being black instead of a dark grey. Depending on how 
6865         close we want to be, we might want to revisit those color choices.
6866         Among the new features added during the refactor were DropDownArrow
6867         pressed rendering, Disabled image rendering.  Proper flat appearance
6868         boundary rendering.  Removed the Divider and Wrapping dividers since I
6869         can't figure out any combination of themes and conditions to make the
6870         MS control draw a horizontal line on a toolbar despite what the
6871         Divider property docs indicate.
6872         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
6873         conditions and incorrect layout.  Updated to coding standard.
6874         * ToolBarButton.cs: refactored layout and positioning code from
6875         ToolBar to here.  Invalidate wherever possible instead of forcing
6876         redraws of the whole toolbar. 
6877         (Known remaining issues: explicit ButtonSize smaller than provided
6878         images.)
6879
6880 2006-03-21  Mike Kestner  <mkestner@novell.com>
6881
6882         * ContextMenu.cs (Show): use the position parameter instead of just
6883         showing at the MousePosition.
6884
6885 2006-03-21  Jackson Harper  <jackson@ximian.com>
6886
6887         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
6888         control handle this.
6889         * TreeNodeCollection.cs: If we are clearing the root node we need
6890         to reset top_node so calcs can still happen.
6891         * ThemeWin32Classic.cs: This is a Flags so we need to check
6892         properly.
6893         
6894 2006-03-21  Jackson Harper  <jackson@ximian.com>
6895
6896         * DataGrid.cs: Create columns when the binding context has been
6897         changed.
6898         * X11Structs.cs: Keysyms are uints.
6899         - Add size to fix build.
6900
6901 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
6902
6903         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
6904           XplatUIOSX.cs: 
6905           - Added ResetMouseHover method to allow controls to retrigger
6906             hovering if they need it more than once
6907           - Implemented MouseHoverTime and MouseHoverSize properties
6908         * Timer.cs: Start() must reset the interval
6909         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
6910           properties
6911
6912 2006-03-21  Jackson Harper  <jackson@ximian.com>
6913
6914         * X11Keyboard.cs: improved layout detection. Move the nonchar
6915         tables into this file.
6916         * KeyboardLayouts.cs: Move the tables into resource files.
6917
6918 2006-03-21  Mike Kestner  <mkestner@novell.com>
6919
6920         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
6921
6922 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
6923
6924         * Mime.cs: Various speed optimizations. Looking up mime types
6925           is now 2 times faster than before
6926
6927 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
6928
6929         * CreateParams.cs: Added internal menu field
6930         * Control.cs: 
6931           - Switched call order for UpdateBounds; now we always call
6932             the one that also takes ClientSize, and we're calculating the 
6933             client size via driver method in the others. The previous
6934             method of tracking client size by difference wasn't working
6935             for forms where even the starting client size wouldn't match
6936             the overall form size (due to borders) (Part of fix for #77729)
6937           - CreateParams(): Do not use parent.Handle unless the handle is
6938             already created. Causes havoc with Nexxia and throws off our
6939             creation of controls
6940         * XplatUIX11.cs:
6941           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
6942           - Switched handling of ConfigureNotify over to new PerformNCCalc 
6943             method (consolidates code)
6944           - Changed RequestNCRecalc to use new PerformNCCalc method
6945           - Added calls to RequestNCRecalc when menus and borders are changed
6946             to allow app to set NC size. (Part of fix for #77729) This matches
6947             when MS send a WM_NCRECALC on Win32 windows.
6948           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
6949             (Part of fix for #77729). This matches what MS does, they also
6950             send that message when the form is made visible.
6951           - XException.GetMessage: Improved usability of X errors by including
6952             a translation of the window into Hwnd and Control class
6953           - Improved debug info for window creation, reparenting and destruction
6954           - Created helper method WindowIsMapped() [Currently not used]
6955         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
6956         * Form.cs:
6957           - CreateParams: Now setting our menu on the new internal menu field
6958           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
6959             avoid calculating the same property twice
6960         * Hwnd.cs:
6961           - Improved usability of ToString() for debugging purposes
6962           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
6963             determine the height of the menu, instead of just the font. This
6964             required to also create a graphics context and to keep a bmp 
6965             around (for performance reasons)
6966
6967 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
6968
6969         * MenuAPI.cs: Added OnMouseUp method
6970         * Form.cs:
6971           - Now remembering the requested client size, avoids size errors
6972           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
6973             instead of base if the menu is active. This is required due to
6974             control now capturing and releasing on down/up and it would
6975             prematurely release our menu capture
6976
6977 2006-03-17  Jackson Harper  <jackson@ximian.com>
6978
6979         * KeyboardLayouts.cs: Add the czech layouts.
6980
6981 2006-03-16  Jackson Harper  <jackson@ximian.com>
6982
6983         * Control.cs: Use the viewport space when sizing not the controls
6984         client size, so things like ScrollableControl that effect the
6985         viewport size (when scrollbars are added) are computed correctly.
6986         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
6987         of ManagerEntrys.
6988         - Handle creating BindingManagers for null data sources.
6989         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
6990         source, otherwise when rows are added they are added to the 'fake'
6991         datasource and we will crash when trying to set the position in
6992         those rows.
6993         - Use Implicit scrollbars on the datagrid so they arent
6994         selectable.
6995         
6996 2006-03-16  Jackson Harper  <jackson@ximian.com>
6997
6998         * Binding.cs:
6999         * InternalWindowManager.cs:
7000         * MdiWindowManager.cs:
7001         * X11Keyboard.cs: I really want Mike to love me again (fix
7002         compiler warnings).
7003
7004 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
7005
7006         * DataGrid.cs:
7007           - OnMouseDown: Switch to editing mode when clicking on the cell
7008                          even if we're clicking on the cell that's currently 
7009                          selected
7010           - ProcessGridKey: Left/Right now wrap like MS.Net does
7011           - ProcessGridKey: Tab now knows to add a new row when tab is
7012                             pressed in the cell of the last column of the 
7013                             last row
7014           - ProcessGridKey: Enter now adds another row  if pressed in the last
7015                             row and selectes the new row, same column cell
7016           - ProcessGridKey: Home/End navigate columns, not rows, like 
7017                             originally implemented
7018           - Broke ProcessKeyPreview code out into an extra Internal method
7019             so it can be called from the edit code
7020         * DataGridTextBox.cs (ProcessKeyMessage):
7021           - Switched to accept Tab keypresses
7022           - Added F2 handling to allow jumping to the end of the edited cell
7023           - Added logic to allow moving caret left/right inside edited cell
7024             and making the edited cell jump when the caret hits cell borders
7025           - Tab and Enter are now passed to the datagrid after being handled
7026         * TextBoxBase.cs:
7027           - Removed capture code now that Control handles it
7028           - set_SelectionStart now ensures caret is visible
7029
7030 2006-03-16  Jackson Harper  <jackson@ximian.com>
7031
7032         * TrackBar.cs: Debackwards the increment/decrement for handling
7033         mouse clicks on the bar with vertical trackbars.
7034         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
7035         bottom to match MS.
7036
7037 2006-03-16  Mike Kestner  <mkestner@novell.com>
7038
7039         * ListView.cs: make shift/ctrl keyboard and mouse selection 
7040         consistent with the MS control. Fix a bug in
7041         SelectedListViewItemCollection.Clear that was pissing me off for the
7042         better part of a day because the collection was being altered
7043         underneath us as we walked the list.
7044
7045 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
7046
7047         * Control.cs: Not sure how we could miss this so long, but it seems
7048           that MS.Net has Capture set all the way from before calling 
7049           OnMouseDown through sending the mouse events until after
7050           OnMouseUp. This will fix DataGrid's selection being set to end
7051           at the location of the MouseUp.
7052
7053 2006-03-15  Jackson Harper  <jackson@ximian.com>
7054
7055         * BindingContext.cs: Check the binding after its added so that it
7056           can initialize the binding managers and hookup to events.
7057         * Binding.cs: Data members seem to sometimes include rows/cols in
7058           the format Row.Column we now take this into account.
7059           - Hookup to the position changed event so we can update the
7060           control when the position has changed in the data set.
7061         * CurrencyManager.cs: Take into account the row/col naming
7062           convention when creating dataset tables.
7063         * BindingContext.cs: Using a newer better way of storing
7064           datasource/datamember pairs.  Hopefully this better matches MS for
7065           looking up binding managers.
7066
7067
7068 2006-03-15  Jackson Harper  <jackson@ximian.com>
7069
7070         * BindingContext.cs: The currency manager needs the data member
7071         name, if the member is a data set we use the name to find the
7072         correct table.
7073         * CurrencyManager.cs: When creating the list prefer an IList over
7074         an IListSource.
7075         - Attempt to create a DataTable from a DataSet (TODO: might need
7076         some better error checking here, although MS doesn't seem to have much)
7077         - If we have a DataTable create a view and use it as our list.
7078
7079 2006-03-15  Mike Kestner  <mkestner@novell.com>
7080
7081         * ListView.cs: keep a matrix of the icon mode layout to facilitate
7082         keyboard navigation. Support Up/Down/Left/Right selection correctly
7083         for all 4 View modes.
7084         * ListViewItem.cs: add internal row/col fields for icon layouts.
7085
7086 2006-03-15  Jackson Harper  <jackson@ximian.com>
7087
7088         * TabControl.cs: Redraw the tabs when we resize so their newly
7089         calculated sizes are drawn on screen.
7090         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
7091         composite characters.
7092         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
7093         - filter events so that composite characters can be created
7094         patches by peter
7095         * X11Structs.cs: Add XIMProperties enum.
7096
7097 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
7098
7099         * Control.cs (BringToFront, SendToBack): Don't use window or handle
7100           unless it's created
7101
7102 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
7103
7104         * Control.cs (PerformLayout): We don't need to consider visiblity
7105           for anchoring, only for docking. This fixes 'whacky' alignment
7106           in listbox and other controls that use implicit scrollbars after
7107           the previous PerformLayout patch
7108         * ListBox.cs: Switched to use implicit scrollbars
7109           
7110 2006-03-14  Mike Kestner  <mkestner@novell.com>
7111
7112         * ToolBar.cs: 
7113         * VScrollBar.cs:
7114         - chain up the "new event" overrides to base and use
7115         OnEvent to raise them.  Part of fix for bug #76509.
7116
7117 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
7118
7119         * FileDialog.cs: Do not select an item in the parent directory
7120           on backspace
7121
7122 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
7123
7124         * Control.cs (PerformLayout): It would seem that we considered
7125           invisible windows for our layout. Not quite the right thing
7126           to do. Now we don't any longer, thereby fixing bug #76889.
7127
7128 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
7129
7130         * Control.cs (CanFocus): I goofed. A control can have focus 
7131           even though it's not selectable. Made it match MS docs.
7132
7133 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
7134
7135         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
7136           center by default (fixes #76895)
7137         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
7138           all uses of Border3DSides.All with the explicit ORd together
7139           Left|Right|Top|Bottom because I assume that nobody was aware 
7140           that All also implies a center fill. Most places I checked had
7141           a fill right above.
7142         * ProgressBarStyle.cs: Added
7143
7144 2006-03-13  Mike Kestner  <mkestner@novell.com>
7145
7146         * ListView.cs: fix breakage in drag shadow header positioning 
7147         from Peter's csc compilation fix.
7148
7149 2006-03-13  Mike Kestner  <mkestner@novell.com>
7150
7151         * ListView.cs: fix NRE produced by backspacing twice in a focused
7152         FileDialog.
7153
7154 2006-03-13  Mike Kestner  <mkestner@novell.com>
7155
7156         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
7157
7158 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
7159
7160         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
7161           be changed
7162         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
7163           the allowed size before making programmatic size changes
7164
7165 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
7166
7167         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
7168           set, metacity is broken and will still use the emty sizes in 
7169           the struct. (Fix for #77089)
7170
7171 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
7172
7173         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
7174           WindowExStyles and marked both enums as Flags
7175         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
7176           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
7177           to match WindowStyles split
7178         * XplatUIX11.cs:
7179           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
7180           - Updated to match WindowStyles split
7181         * XplatUIWin32.cs:
7182           - Fixed FosterParent creation, was using ExStyle on the Style field
7183             (This should help with Popup focus issues)
7184           - Updated to match WindowStyles split
7185
7186 2006-03-13  Jackson Harper  <jackson@ximian.com>
7187
7188         * MdiWindowManager.cs: Use the system menu height. Fixes some
7189         strange sizing issues.
7190
7191 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
7192
7193         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
7194         * TextBoxBase.cs:
7195           - Scroll to caret after inserting text (#77672)
7196           - Make scroll range one pixel higher, fixes off-by-one error (and
7197             makes underlines visible on the last line)
7198
7199 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
7200
7201         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
7202           the keyboard state from being stuck with keys in 'pressed' state when
7203           focus is switched away via keyboard
7204         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
7205           reset the keyboard if no X11 KeyUp events are expected to come
7206         * X11Structs.cs: Switched type of Visible to bool to match driver
7207
7208 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
7209
7210         * TextControl.cs:
7211           - Switched caret to be just 1 pixel wide, matches MS and looks less
7212             clunky
7213           - Moved caret display 1 pixel down from the top of the control
7214             to improve view
7215           - InsertCharAtCharet: Update the selection start if moving the caret
7216             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
7217           - No longer always creating the caret when the caret methods are
7218             called. Only the actual ShowCaret/HideCaret will do that now
7219           - Only setting caret visible if the owner control has focus
7220           - UpdateView: Added invalidation-shortcut logic for center and right 
7221             aligned text. Previously we'd update all according to the left
7222             logic which caused drawing errors. Also fixed height of invalidated
7223             areas, now properly invalidating the whole area (was off-by-one)
7224           - owner_HandleCreated: Always generate the document when the
7225             handle is created; this ensures that 
7226         * TextBoxBase.cs:
7227           - Fixed situation where caret would disappear under the right
7228             window border, also improved scrolling behaviour on left-
7229             aligned textboxes
7230           - Fixed right-aligned textboxes to have a border to the
7231             right instead of the caret being under the right border
7232         * XplatUIX11.cs:
7233           - Switched from 'nested' to simple visible/not visible tracking 
7234             for caret (part of fix for #77671)
7235           - No longer passing through translated FocusIn/FocusOut messages
7236             since we were notifying too often and the wrong windows. Instead
7237             we just notify our focussed window of receiving or loosing focus
7238         * XplatUIWin32.cs: Switched from 'nested' show/hide 
7239           counting for caret to simple visible yes/no behaviour (part of 
7240           fix for #77671)
7241
7242 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
7243
7244         * Mime.cs: Remove debug code...
7245
7246 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
7247
7248         * MimeGenerated.cs: Removed
7249         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
7250           and subclasses) from /usr/(local/)share/mime and
7251           $HOME/.local/share/mime.
7252
7253 2006-03-10  Jackson Harper  <jackson@ximian.com>
7254
7255         * MdiWindowManager.cs: Recalc the NC area when a window is
7256         maximized/restored so that the menu area is drawn on forms that
7257         don't have a menu.
7258
7259 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
7260
7261         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
7262           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
7263           us to force a WM_NCCALCRESIZE message being sent. This is needed
7264           for MDI maximizing.
7265
7266 2006-03-10  Jackson Harper  <jackson@ximian.com>
7267
7268         * Form.cs: We need to use the ActiveMenu when calculating menu
7269         height.
7270         - Fix nullref when the window manager hasn't been created yet.
7271         * Control.cs: Fix nullref when we try to bring a control to the
7272         front that has no parent.
7273         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
7274         height.
7275         - Add a dummy item to the maximized menu so it always has the
7276         correct height. Otherwise when there are no menus we don't get our
7277         icon and buttons.
7278         
7279
7280 2006-03-10  Jackson Harper  <jackson@ximian.com>
7281
7282         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
7283         stuff.
7284         * Form.cs: Make the window_state internal so the window managers
7285         can track it.
7286         - When an MDI child is maximized let its window manager create the
7287         main menu (so it can add its icon).
7288         - Notify the window managers of state changes
7289         - Let the window manager paint its buttons and handle button
7290         clicks on the menu when it is maximized.
7291         * InternalWindowManager.cs: Move the prev_bounds into the mdi
7292         window manager, since tool windows don't use it, only mdi windows.
7293         - Tell the main form that we don't want it to handle NCPAINT
7294         itself to avoid extra painting.
7295         - Handle clicks on a maximized windows menu.
7296         - Handle window state changes
7297         - Handle minimize/maximize clicks correctly by setting the window state.
7298         * MdiWindowManager.cs: Add an icon menu that (the menu you get
7299         when clicking on the forms icon).
7300         - New method to create a forms maximized menu. This is its normal
7301         menu + an icon.
7302         - Handle window state changes.
7303         - Handle sizing of maximized windows.  Maximized windows are just
7304         drawn bigger then the parent visible area. All controls are still
7305         there, they are just outside the visible area (this matches windows).
7306         * MdiClient.cs: No scrollbars when a child window is maximized.
7307         - Let the children windows figure out how big they should be when
7308         sizing maximized windows.
7309         - Implement a version of ArrangeIconicWindows somewhat similar to
7310         Windows version.  There are some little differences, but I don't
7311         think any app will rely on the layout of minimized mdi windows.
7312
7313 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
7314
7315         * Padding.cs: Several fixes to allow compiling with csc 2.0
7316
7317 2006-03-09  Jackson Harper  <jackson@ximian.com>
7318
7319         * Menu.cs:
7320         * MenuItem.cs: Cheap hack so we can add items to the list without
7321         the events being raised.  This allows adding mdi items during
7322         drawing. TODO: Should probably find a better time to add the items.
7323
7324 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
7325
7326         * ThemeWin32Classic.cs:
7327           - CheckBox_DrawText: Added logic to not wrap if not enough space
7328             is available (Fix for bug #77727)
7329           - RadioButton_DrawText: Added logic not to wrap if not enough
7330             space is available (Fix for bug #77727). Also removed some
7331             duplicate code, DrawString always drawing the regular text
7332             before hitting the if statement.
7333
7334 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
7335
7336         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
7337
7338 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
7339
7340         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
7341         * ContainerControl.cs: Partial implementation of some 2.0 scaling
7342           methods. Moved the new 2.0 properties into alphabetical order with
7343           other properties and added MonoTODO tags
7344
7345 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
7346
7347         * AutoScaleMode.cs: Added. Fix build.
7348
7349 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
7350
7351         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
7352           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
7353           and was requiring premature handle creation for calls from above
7354         * Form.cs, Control.cs: Removed handle arguments from calls to
7355           CalculateClientRect()
7356
7357 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
7358
7359         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
7360           drag_column.column_rect is MarshalByRef and can't be used that way
7361
7362 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
7363
7364         * AxHost.cs: Added deserialization constructor for 
7365           AxHost+State (fixes 77743)
7366
7367 2006-03-09  Mike Kestner  <mkestner@novell.com>
7368
7369         * ListView.cs: 
7370         - Added column drag reordering for details view.
7371         - fixed behavior when mouse is dragged off column and
7372         AllowColumnReorder is false.
7373         * ColumnHeader.cs: clone the format too in Clone.
7374         * Theme.cs: add DrawListViewHeaderDragDetails method.
7375         * ThemeWin32Classic.cs:
7376         - impl new method for drawing drag column shadows and targets.
7377         - support column offset for details mode in DrawListViewItem.
7378
7379 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
7380
7381         * TextControl.cs: Reset the char_count when the document is cleared
7382           (Fixes bug reported on mono-winforms mailing list)
7383
7384 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
7385
7386         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
7387           of calling base we simply process the key ourselves, since both
7388           DefWindowProc and the handled method would set m.Result. 
7389           (Fixes #77732)
7390
7391 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
7392
7393         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
7394           method also moves the window; instead implemented a copy of
7395           Control.ScaleCore (Part of fix for #77456)
7396         * TextBoxBase.cs: 
7397           - Created new CreateGraphicsInternal method to allow providing
7398             a graphics context when no handle is created without triggering
7399             handle creation. (Part of fix for #77456)
7400           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
7401         * TextControl.cs: 
7402           - Switched Constructor to require TextBoxBase instead of Control (to
7403             allow uncast access to CreateGraphicsInternal)
7404           - Safeguarded use of owner.Handle property. No longer accessing it
7405             unless the handle is already created.
7406           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
7407           - Now triggering a recalc when owning control becomes visible
7408         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
7409           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
7410           premature handle creation (Part of fix for #77456)
7411         * Control.cs:
7412           - We now only destroy our double-buffering buffers when the
7413             control is resized or disposed, but not when visibility
7414             changes. (The code even re-created them twice every time)
7415           - Now requiring a redraw of the buffer on visibility changes
7416             (fixes bug 77654 part 2)
7417           - Not passing OnParentVisibleChanged up unless the control
7418             is visible
7419           - CanFocus: Fixed to match MS documentation
7420           - Focus: Fixed to return actual focus state and to check if
7421             setting focus is legal before setting it
7422
7423 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
7424
7425         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
7426           when to draw focus rectangle by looking at parent focus and
7427           selected state instead. This fixes TabPages on Linux sometimes
7428           having none or multiple focus rectangles.
7429         * XplatUIX11.cs (SetFocus): 
7430           - Don't set the focus if the same window already has focus
7431           - Use SendMessage instead of PostMessage (like it's Win32
7432             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
7433             to match MS behaviour
7434         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
7435           are not selectable.
7436
7437 2006-03-07  Jackson Harper  <jackson@ximian.com>
7438
7439         * PictureBox.cs: Revert line I accidently committed last week.
7440
7441 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
7442
7443         * Control.cs: 
7444           - Added new IsRecreating and ParentIsRecreating properties to
7445             allow testing if RecreateHandle has been called on ourselves
7446             or one of our parents
7447           - WndProc(WM_DESTROY): If our control handle is being recreated
7448             we immediately need to create the handle when receiving the
7449             destroy, that way our child windows find a valid parent handle
7450             when they themselves are being recreated upon WM_DESTROY receipt
7451             (fix for bug #77654 part 1)
7452         * XplatUIX11.cs:
7453           - DestroyWindow: WM_DESTROY must be sent to our own window before
7454             notifying any child windows. MS documents that child windows
7455             are still valid when WM_DESTROY is received. (Control now relies on
7456             this behaviour)
7457           - Added some fine-grain debug options
7458
7459 2006-03-06  Jackson Harper  <jackson@ximian.com>
7460
7461         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
7462         box and base calculations off this.
7463         * MdiChildContext.cs:
7464         * MdiWindowManager.cs: Don't need to ensure scrollbars here
7465         anymore.
7466         
7467 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
7468
7469         * Splitter.cs: In situations where the affected control is added
7470           to the parent's control list after the splitter, we would not
7471           populate affected. Now we try populating it on mousedown, if
7472           it's not already set, and force it to be re-set whenever our
7473           parent changes.
7474
7475 2006-03-03  Matt Hargett  <matt@use.net>
7476
7477         * Control.cs: implement Control.Padding
7478         * Padding.cs: -Padding.All returns -1 when constructing with the
7479         implicit default ctor
7480         -Padding.ToString() matches MS.NET
7481         * ContainerControl.cs: implement
7482         ContainerControl.AutoScaleDimensions
7483         * ListControl.cs: implement ListControl.FormattingEnabled
7484         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
7485         * ButtonBase.cs:
7486         * TabPage.cs: Implement UseVisualStyleBackColor.
7487         * PictureBox.cs: Implement PictureBox.InitialImage.
7488
7489 2006-03-03  Mike Kestner  <mkestner@novell.com>
7490
7491         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
7492         event declarations to proxy to base event.
7493         * ListViewItem.cs: update to use ItemControl.
7494         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
7495         * ThemeWin32Classic.cs: update to new ListView theme API and fix
7496         column header label rendering for 0 width columns.
7497
7498 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
7499
7500         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
7501           that causes the control to be created. Fixes #77476.
7502
7503 2006-03-02  Jackson Harper  <jackson@ximian.com>
7504
7505         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
7506         expose_pending.
7507
7508 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
7509
7510         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
7511           passed in for the EventArgs (fixes #77690)
7512
7513 2006-03-01  Jackson Harper  <jackson@ximian.com>
7514
7515         * ScrollBar.cs: Refresh afterbeing resized.
7516
7517 2006-02-28  Mike Kestner  <mkestner@novell.com>
7518
7519         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
7520         Clean up a tracker compile warning.
7521         * MenuItem.cs: add internal PerformPopup method.
7522         [Fixes #77457]
7523
7524 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
7525
7526         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
7527           implicit expose) when the text is set to null
7528
7529 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
7530
7531         * RichTextBox.cs (FlushText): When newline is true, we always
7532           need to split the line, even if no text is on it and we may
7533           never eat newlines. (Fixes #77669)
7534
7535 2006-02-28  Mike Kestner  <mkestner@novell.com>
7536
7537         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
7538         and set Selected instead.
7539         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
7540         collections.
7541
7542 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
7543
7544         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
7545
7546 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
7547
7548         * FontDialog.cs:
7549           - Got rid of the panel. All controls are now directly added to
7550             the dialog form
7551           - It is now possible to set a font with the Font property
7552           - MinSize and MaxSize property do now what they should
7553           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
7554           - Searching and selecting a font with the font textbox works now,
7555             the same applies to the style and size textbox
7556           - Draw the correct 3D border in the example panel
7557           - Fixed a little mem leak (unused fonts didn't get disposed)
7558           - Many other internal updates/rewrites...
7559           - Fix typo
7560
7561 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
7562
7563         * TextControl.cs: 
7564           - InsertRTFFromStream: Added 'number of characters inserted' argument
7565           - set_SelectedRTF: Now using the number of characters to calculate
7566             the new location for the selection and cursor (x/y cannot be used
7567             due to potentially already wrapped text)
7568
7569 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
7570
7571         * TextControl.cs: Added property and implemented means to allow 
7572           disabling recalculation of a document (can be used to speed up
7573           multiple inserts and is needed to make RTF inserts predictable, see
7574           bug #77659)
7575         * RichTextBox.cs: Using the new NoRecalc property of Document to
7576           keep x/y insert locations predictable. Also makes it faster inserting
7577           large chunks of RTF
7578
7579 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
7580
7581         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
7582           it's easier for a child control to handle the other messages without
7583           having to duplicate the special functionality
7584         * TextBoxBase.cs
7585           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
7586             code to handle processing the key ourselves, in order to get 
7587             access to the result of KeyEventArgs.Handled. We now only call 
7588             ProcessKey if they key hasn't been handled already. Fixes #77526.
7589           - set_Text: If null or empty string is given, just clear the 
7590             document. Fixes part of #77526
7591
7592 2006-02-27  Jackson Harper  <jackson@ximian.com>
7593
7594         * SizeGrip.cs: Paint the background color before painting the grip
7595         so things look right.
7596         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
7597
7598 2006-02-27  Mike Kestner  <mkestner@novell.com>
7599
7600         * ListView.cs:
7601           - Restructure layout and invalidation model to remove a ton of
7602           flicker from the control and speed up performance in general.
7603           - Add manual column resize, flickers like crazy, but I already have
7604           some ideas on how I'll fix that. (#76822)
7605           - Merge the three Icon-based views into a single layout method.
7606           - Move item selection interaction logic from the item since 
7607           interaction with the collections is more appropriate to the view.
7608           - Deselection on non-item clicks.
7609         * ListViewItem.cs:
7610           - Encapsulate most of the layout. Add some internal props to trigger
7611           layout.  Move to a model where Items invalidate themselves instead
7612           of just invalidating the whole control every time something changes.
7613           - Invalidate on Text/Caption changes.
7614           - switch to an offset based layout model to avoid having to absolute
7615           position every element on item moves.
7616           - correct checkbox layout to conform to MS layout.
7617         * ThemeWin32Classic.cs:
7618           - refactor some column header drawing code.
7619           - fix string justification for column headers (#76821)
7620           - make SmallIcon labels top justified for compat with MS impl.
7621         * ThemeClearlooks.cs:
7622           - adjust to new ListViewItem internal checkbox bounds api.
7623
7624 2006-02-27  Jackson Harper  <jackson@ximian.com>
7625
7626         * Control.cs:  Change where implicit controls fall in the zorder.
7627         They are now on top of all children.
7628         - Synced AddImplicit code with Add
7629         - Removed unused enumerator.
7630         * SizeGrip.cs: Remove the TODO as its been TODONE.
7631
7632 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
7633
7634         * TextControl.cs(Insert): Combine the last lines unless the insertion
7635           string ends with \n\n, otherwise we leave one line too many (Fixes
7636           something I noticed with the testapp for #77526; the bug itself was
7637           already fixed in the previous checkin)
7638
7639 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
7640
7641         * RichTextBox.cs:
7642           - SelectionColor and SelectionFont methods no longer set absolute
7643             styles. Instead, the keep font or color respectively (This 
7644             resolves a long-standing FIXME in the code)
7645           - When flushing RTF text, the insert code now considers text trailing
7646             behind the insertion point (Fixes the bug where when replacing
7647             the selected text via SelectedRTF the remainder of the line behind 
7648             the selection would stay on the first insertion line)
7649         * TextBoxBase.cs:
7650           - AppendText now updates the selection points after inserting text
7651           - AppendText now ensures that the last tag (sometimes 0-length) of
7652             the document is used for the style information (Fixes part of 
7653             bug #77220)
7654         * TextControl.cs:
7655           - Created new FontDefiniton class to allow describing partial style
7656             changes
7657           - StreamLine() now takes a lines argument, to allow it to decide
7658             whether an encountered zero-length tag is the last in the document
7659             (which must be kept to not loose the font/color contained in it,
7660             for later appends)
7661           - Created Combine() and Split() methods for Marker structs, to 
7662             support marker updates due to reformatted documents (soft line
7663             wraps)
7664           - Implemented Document.CaretTag setter
7665           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
7666             of the last line (Not the cause, but also exposed by bug #77220)
7667           - Added LineTag argument to InsertString method, to allow callers
7668             to force a certain tag to be used (required to force use of the
7669             trailing zero-length tag of a document)
7670           - Now updating markers in Combine(), to avoid stale tag markers
7671           - Added some method descriptions to aid maintenance
7672           - Implemented new FormatText concept, allowing additive/subtractive
7673             formatting by only specifying the components that are to be 
7674             changed. This was needed for resolving the RTB.SelectedColor/
7675             RTB.SelectedFont fixmes
7676           - Added Break() support method to allow breaking up linetags (used
7677             for partial formatting)
7678           - Added GenerateTextFormat() method. It is used for partial 
7679             formatting and allows to generate a full font/color from given
7680             attributes and an existing tag.
7681
7682 2006-02-26  Jackson Harper  <jackson@ximian.com>
7683
7684         * XplatUIX11.cs:  Use the correct caption height.
7685         - Translate hittest coordinates to screen coords to match MS.
7686         * XplatUIWin32.cs: When we create MDI windows we need to reset
7687         some of the style flags, so we get a nice blank window, and can
7688         draw all the decorations ourselves.
7689         - Set a clipping rectangle on the non client paint event, the
7690         window manager drawing code needs one.
7691         * Form.cs: The window manager needs to know when the window state
7692         has been updated.
7693         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
7694         don't need to factor in border and title sizes in these
7695         methods. TODO: Remove the args and fix the call points.
7696         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
7697         properly.
7698         - Let the driver set the cursors.
7699         - Improve active window handling
7700         - Correct sizes for title bars and buttons.
7701         - Match MS drawing better
7702         * MdiWindowManager.cs: We don't need to handle border style
7703         updates specially anymore.
7704         - Check for scrollbars when windows are done moving
7705         - Handle Active properly.
7706         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
7707         correctly. I am spewing the exception though, so we don't hide the
7708         bugs.
7709         
7710 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
7711
7712         * DataGridViewRowPostPaintEventArgs.cs,
7713           DataGridViewCellPaintingEventArgs.cs,
7714           DataGridViewRowCollection.cs,
7715           DataGridViewRowPrePaintEventArgs.cs,
7716           DataGridViewCell.cs: Clear a few warnings and implement a few
7717           exceptions that should be thrown.
7718
7719 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
7720
7721         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
7722           'inheriting' our parent's (non-default) cursor. (Part of
7723            the fix for #77479)
7724
7725 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
7726
7727         * XplatUIX11.cs: Fixed cast to make csc happy
7728
7729 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
7730
7731         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
7732           it's for the client area (part of fix for #77479 and needed
7733           for MDI window cursor handling)
7734         * XplatUIX11.cs
7735           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
7736             the appropriate default cursors and also passing the message
7737             up the parent chain 
7738           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
7739             for non-client areas
7740
7741 2006-02-15  Jackson Harper  <jackson@ximian.com>
7742
7743         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
7744         is a real MDI window
7745
7746 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
7747
7748         * X11DesktopColors.cs: Instead of checking the desktop session
7749           string for "KDE" check if it starts with "KDE"
7750
7751 2006-02-10  Jackson Harper  <jackson@ximian.com>
7752
7753         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
7754         systems).
7755
7756 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
7757
7758         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
7759           errors
7760         * ColorDialog.cs:
7761           - Got rid of the panel. All controls are now directly added to
7762             the dialog form
7763           - Changed to mono coding style
7764
7765 2006-02-10  Jackson Harper  <jackson@ximian.com>
7766
7767         * InternalWindowManager.cs: We don't need the set visibility to
7768         false hack anymore now that peter has written beautiful shutdown
7769         code.
7770
7771 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
7772
7773         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
7774           where already explicitly destroyed
7775
7776 2006-02-10  Jackson Harper  <jackson@ximian.com>
7777
7778         * MdiClient.cs: Handle the case where windows are too high or to
7779         the left and we need scrollbars.
7780
7781 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
7782
7783         * MimeIcon.cs: Added some icons
7784         * FileDialog.cs:
7785           - Fixed bug #77477
7786           - Got rid of the panel. All controls are now directly added to
7787             the dialog form
7788           - Changed to mono coding style
7789           - On Linux "My Computer" and "My Network" will now show some
7790             more usefull information. A new class, MasterMount, gathers
7791             this information from /proc/mount. Updated MWFFileView to make
7792             use of this information
7793           - Fixed a bug that caused FileDialog to crash when
7794             ".recently_used" file had a zero size
7795           - FilterIndex does now what it should
7796           - Some Refactoring
7797         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
7798             FileDialog changes
7799
7800 2006-02-09  Jackson Harper  <jackson@ximian.com>
7801
7802         * ComboBox.cs: Don't touch if null.
7803
7804 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
7805
7806         * Cursor.cs: 64bit safeness fix
7807         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
7808
7809 2006-02-09  Jackson Harper  <jackson@ximian.com>
7810
7811         * Form.cs: If a form is made into an MDI form update the styles so
7812         all the props can get set correctly.
7813         - Kill the mdi_container when we dont need it anymore.
7814         * InternalWindowManager.cs: Add missing NOT
7815
7816 2006-02-08  Jackson Harper  <jackson@ximian.com>
7817
7818         * InternalWindowManager.cs: Respek clipping when drawing MDi
7819         decorations.
7820
7821 2006-02-08  Jackson Harper  <jackson@ximian.com>
7822
7823         * Hwnd.cs: Add bits to track non client expose events.
7824         * XplatUIX11.cs: Track non client expose events on the hwnd. This
7825         gives us a proper invalid rect and will allow for some nice
7826         optimizations with NC client drawing
7827         - MDI windows are children windows, so move their style handling
7828         into the child window block.
7829         * InternalWindowManager.cs: Remove a state reset that was
7830         getting invoked at the wrong time. Fixes managed windows getting
7831         into a 'stuck' captured state.
7832
7833 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
7834
7835         * TextControl.cs (Document.ctor): Now initializing 
7836           selection_anchor. Fixes #77493
7837
7838 2006-02-07  Jackson Harper  <jackson@ximian.com>
7839
7840         * TrackBar.cs: The increment/decrements were backwards.
7841
7842 2006-02-07  Mike Kestner  <mkestner@novell.com>
7843
7844         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
7845         to the instance itself.
7846
7847 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
7848
7849         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
7850           on ulongs and pointers, the size differs between 32bit and 64bit
7851           systems. 
7852
7853 2006-02-07  Mike Kestner  <mkestner@novell.com>
7854
7855         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
7856         for 64 bit platforms to work around a metacity bug. 
7857
7858 2006-02-07  Jackson Harper  <jackson@ximian.com>
7859
7860         * TrackBar.cs: Process the input keys we need, and hookup to
7861         KeyDown instead of using WndProc, so we get key messages.
7862
7863 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
7864
7865         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
7866           machine we're on. 
7867         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
7868           we need to translate the XdndVersion atoms array before sending it
7869
7870 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
7871
7872         * XplatUIX11.cs: 
7873           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
7874             number of bits for the property, not the number of bytes. The
7875             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
7876             but would not crash since it specified 8 bits instead of 4 bits)
7877           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
7878             defined as XID -> long in the C headers)
7879           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
7880             references since those are now IntPtr to begin with
7881           - Switched all Atom.XXX 'int' casts to IntPtr casts
7882           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
7883           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
7884           - Added XChangeActivePointerGrab DllImport (for X11DnD)
7885         * X11Structs.cs:
7886           - Changed 'int' type for Atoms in XEvent structures to IntPtr
7887           - Changed atom in HoverStruct to be IntPtr
7888         * X11DnD.cs:
7889           - Removed local DllImports, switched code to use those from XplatUIX11
7890           - Removed/fixed casts related to the switch of Atom to be a IntPtr
7891
7892 2006-02-06  Mike Kestner  <mkestner@novell.com>
7893
7894         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
7895         method signatures in the import region.  There may still be some
7896         lingering struct marshaling issues, as I didn't drill down into those.
7897         Yet.
7898
7899 2006-02-06  Jackson Harper  <jackson@ximian.com>
7900
7901         * ComboBox.cs: Dont manually set the top_item, this is computed
7902         when the scrollbar position is set.
7903
7904 2006-02-06  Mike Kestner  <mkestner@novell.com>
7905
7906         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
7907         startup crashes on amd64.  There's other fixes needed.  All pinvoke
7908         usage of Atom needs to be mapped to IntPtr for example.  And there are
7909         likely other int/long issues to be addressed.
7910
7911 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
7912
7913         * FileDialog.cs: One more...
7914
7915 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
7916
7917         * FileDialog.cs: Next try
7918
7919 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
7920
7921         * FileDialog.cs: First part of fix for #77464
7922
7923 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
7924
7925         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
7926           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
7927           AcceptButton border drawing.
7928
7929 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
7930
7931         * Form.cs: Moved positioning of form after auto scaling is applied,
7932           otherwise it would possibly use wrong form size.
7933
7934 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
7935
7936         * Control.cs (RecreateHandle): No need to re-create any child
7937           controls, the child windows will get destroyed automatically by
7938           the windowing system or driver, and re-created when the handle
7939           is being accessed the first time. Fixes #77456
7940         * Form.cs: No longer setting the form to closing if the handle is 
7941           being recreated. This seems like the right thing to do, don't
7942           have a bug or testcase for this, though.
7943
7944 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
7945
7946         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
7947           controls to avoid unwanted side effects
7948
7949 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
7950
7951         * Control.cs: 
7952           - ScaleCore needs to scale the bounds, not the ClientSize of the 
7953             control. Fixes #77416.
7954           - DefaultSize is 0,0 for control
7955         * TextBoxBase.cs: 
7956           - DefaultSize is 100, 20
7957           - SetBoundsCore: Now enforcing the height, no matter if the provided
7958             height is more or less than the preferred one, as long as AutoSize
7959             is on
7960         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
7961
7962 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
7963
7964         * Control.cs:
7965           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
7966             call unless both performLayout is true *and* we have a pending
7967             layout change
7968           - ResumeLayout: MS does not completely nest Suspend and Resume,
7969             they bottom out at 0, fixed our code to match that.
7970           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
7971             SetBoundsCore, we were updating even when we shouldn't. This fixes
7972             swf-anchors mis-anchoring when resizing the app fast and lots.
7973           - UpdateDistances: Now only setting the left and top distance if 
7974             we have a parent and are not suspended, this is based on
7975             a suggestion by Don Edvaldson in bug #77355.
7976           - OnVisibleChanged: Fixed logic when to create the control. We may
7977             not create the control if we have no parent or if it's not visible;
7978             switched to using Visible property instead of is_visible field 
7979             since the property also considers parent states. This fixes a bug
7980             when starting Paint.Net
7981
7982 2006-02-02  Jackson Harper  <jackson@ximian.com>
7983
7984         * Form.cs: If the forms handle hasn't been created yet don't call
7985         into xplatui to make it top most, just set the topmost flag on the
7986         form in CreateParams
7987         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
7988
7989 2006-02-01  Jackson Harper  <jackson@ximian.com>
7990
7991         * ScrollableControl.cs: Refactored the Recalculate method a
7992         little, this wasn't handling all the variants of bottom and right
7993         bars needed to be added and added/removed based on their
7994         counterparts being added/removed (which changes the drawable
7995         size). Also we special case client widths and heights of 0 and
7996         don't add the scrollbar for those.
7997
7998 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
7999
8000         * XplatUIX11.cs: 
8001           - Added method to get AbsoluteGeometry(); currently unused, but might
8002             be used in the future, if we try again to figure out toplevel
8003             coordinates with some more crappy window managers
8004           - Added FrameExtents() method to retrieve the WM set decoration size
8005           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
8006             to deal with at least KDE, FVWM and metacity (Fixes #77092)
8007         * Hwnd.cs: 
8008           - Added whacky_wm tracking var for metacity
8009           - Added logic to have default menu height if the actual menu height
8010             has not yet been calculated (part of fix for #77426)
8011         * Form.cs: Keep track whether client size has been set and re-set 
8012           it if a menu is added/removed afterwards (Fixes #77426)
8013
8014 2006-01-31  Jackson Harper  <jackson@ximian.com>
8015
8016         * Control.cs: When a new Site is set on the component attempt to
8017         pull the AmbientProperties from it.
8018
8019 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
8020
8021         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
8022           in the background of the owning form. Fixes #77332
8023
8024 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
8025
8026         * MimeIcon.cs: Fix for #77409
8027
8028 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
8029
8030         * XplatUIX11GTK.cs: Initial import
8031
8032 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
8033
8034         * FixedSizeTextBox: fixes class signature
8035
8036 2006-01-30  Jackson Harper  <jackson@ximian.com>
8037
8038         * FixedSizeTextBox.cs: New internal class that represents a
8039         textBox that will not be scaled.
8040         * TreeView.cs:
8041         * ComboBox.cs:
8042         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
8043         standard TextBox.
8044                 
8045 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
8046
8047         * XplatUIX11.cs: Retrieve default screen number instead of
8048           assuming 0. Attempted fix for #77318
8049
8050 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
8051
8052         * XplatUIWin32.cs: 
8053           - GetWindowPos: When a window is parented by FosterParent, use 
8054             the desktop instead of FosterParent as the base to get coordinates
8055           - CreateWindow: Don't make FosterParent the parent window for Popups
8056             if we don't want a taskbar entry, Popups automatically don't get one
8057         * Hwnd.cs: Need to call remove to actually remove the key from the
8058           hash table
8059
8060 2006-01-30  Mike Kestner  <mkestner@novell.com>
8061
8062         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
8063
8064 2006-01-30  Jackson Harper  <jackson@ximian.com>
8065
8066         * TreeView.cs:
8067         * TreeNode.cs: Raise events no matter how the treenode is
8068         checked. Patch by Don Edvalson.
8069
8070 2006-01-30  Jackson Harper  <jackson@ximian.com>
8071
8072         * TreeNode.cs: Signature fix.
8073
8074 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
8075
8076         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
8077
8078 2006-01-20  Mike Kestner  <mkestner@novell.com>
8079
8080         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
8081         event forwarding when menus are active.
8082         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
8083         Most of the patch is pdb's with a little rework.
8084
8085 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
8086
8087         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
8088           Removed GetMenuDC and ReleaseMenuDC methods; replaced
8089           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
8090         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
8091         * InternalWindowManager.cs: Added use of PaintEventStart/End to
8092           handling of WM_NCPAINT message, now passing the PaintEventArgs to
8093           the PaintWindowDecorations method
8094         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
8095         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
8096         * MenuAPI.cs: Made tracker window invisible
8097         * XplatUIWin32.cs:
8098           - Removed GetMenuDC and ReleaseMenuDC methods
8099           - Implemented the client=false path for PaintEventStart and
8100             PaintEventEnd
8101
8102 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
8103
8104         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
8105         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
8106           styles
8107         * Form.cs: 
8108           - MaximizeBox, MinimizeBox: Recreate the handle when setting
8109             the style
8110           - CreateParams: Reworked the styles to match MS look'n'feel,
8111             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
8112             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
8113
8114 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
8115
8116         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
8117           window is not mapped, since otherwise every form that's being 
8118           created is considered minimized, which is wrong.
8119         * Form.cs: Catching the exception and returning our internal value
8120           instead
8121
8122 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
8123
8124         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
8125           SetWindowMinMax() to have means to tell the driver about the minimum,
8126           maximum and maximized state window sizes. (Part of the fix for #76485)
8127         * Form.cs:
8128           - Implemented tracking of minimum and maximum window size, now calling
8129             new SetWindowMinMax() driver method to tell the driver (Part of the
8130             fix for #76485)
8131           - Finished handling of WM_GETMINMAXINFO method, now setting all values
8132             (Completes fix for #76485)
8133           - Calling new SetWindowMinMax driver method when the handle for a 
8134             form is created, to make sure the driver knows about it even if
8135             the values have been set before the window was created
8136           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
8137             to avoid messing up our anchoring calculations (partial fix
8138             for #77355)
8139         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
8140         * XplatUIX11.cs:
8141           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
8142           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
8143             (and presumably other freedesktop.org compliant WMs). Left the
8144             assumption unmapped=minimized, needed for SetVisible to work.
8145           - Now setting the window state when creating windows
8146           - Fixed SetVisible to consider/set the window state when mapping
8147             a Form. We cannot set the state before it's mapped, and we cannot
8148             use Form.WindowState once it's mapped (since it would ask the
8149             driver and get 'normal'. Therefore, we grab the state before
8150             mapping, map, and then set state.
8151           - Implmemented SetWindowMinMax method; Metacity does not seem to
8152             honor the ZoomHints, though.
8153         * XplatUIWin32.cs:
8154           - Removed MINMAXINFO (moved to XplatUIStructs)
8155           - Added SetWindowMinMax stub (on Win32 the only way to set that
8156             information is in response to the WM_GETMINMAXINFO message, which
8157             is handled in Form.cs)
8158           - Added logic to SetVisible to set the proper window state when a 
8159             form is made visible (fixes #75720)
8160
8161 2006-01-26  Jackson Harper  <jackson@ximian.com>
8162
8163         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
8164         same way we handle them with Invoke.
8165
8166 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
8167
8168         * Form.cs:
8169           - Added tracking of window state so CreateParams can return
8170             the appropriate style
8171           - Moved setting of WS_CAPTION style in CreateParams to allow
8172             styles without caption
8173         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
8174           control if the TextBox property is accessed. Fixes #77345
8175         * Control.cs:
8176           - get_Created: now uses is_disposed and is_created to determine
8177             return value (suggested by Jackson)
8178           - CreateHandle: No longer exits if the handle is being recreated
8179           - RecreateHandle: If the handle is not yet created call the 
8180             appropriate method to create either control or handle. If the
8181             control is already created CreateHandle will simply exit instead
8182             of just creating the handle
8183         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
8184           now SendMessage WM_DESTROY directly to the control when DestroyWindow
8185           is called.
8186         * XplatUIX11.cs: 
8187           - When DestroyWindow is called, instead of waiting for the 
8188             DestroyNotification from X11, we directly post it to the WndProc
8189             and immediately dispose the hwnd object.
8190             Same applies to DestroyChildWindows, and this obsoletes the
8191             expose_pending tracking. Contrary to Win32 behaviour we destroy our
8192             child windows before our own, to avoid X11 errors.
8193           - Removed the direct sending of WM_PAINT on UpdateWindow
8194         * XplatUIWin32.cs:
8195           - Reworked DoEvents and GetMessage to allow access to internal queue
8196             even when trying non-blocking access to the queue.  Fixes #77335. 
8197             Based on a patch suggestion by Don Edvalson. The new private
8198             GetMessage can now also be used as a backend for a PeekMessage
8199             frontend version.
8200         * XplatUI.cs: Improved debug output for CreateWindow
8201
8202 2006-01-25  Jackson Harper  <jackson@ximian.com>
8203
8204         * Help.cs: Allow param to be null. Patch by Don Edvalson.
8205
8206 2006-01-24  Jackson Harper  <jackson@ximian.com>
8207
8208         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
8209         when we have a MaxDropItems lower then the selected index.
8210
8211 2006-01-24  Jackson Harper  <jackson@ximian.com>
8212
8213         * Control.cs: Don't allow selection of non visible controls, allow
8214         selection of controls without parents.
8215
8216 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
8217
8218         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
8219         * DataGridDrawingLogic.cs: Add editing row only when is necessary
8220
8221 2006-01-23  Jackson Harper  <jackson@ximian.com>
8222
8223         * UpDownBase.cs: Make the textbox handle all the selection and
8224         tabbing. This fixes tabing to updown controls.
8225
8226 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
8227
8228         * TextBoxBase.cs: fixes exception thown the object was null
8229
8230 2006-01-23  Jackson Harper  <jackson@ximian.com>
8231
8232         * ButtonBase.cs: Just use the base CreateParams. They set
8233         visibility and enabled correctly.
8234         * ComboBox.cs:
8235         * TrackBar.cs:
8236         * MonthCalendar.cs: Lets let the base set as much of the
8237         createparams as possible so we don't have duplicate code all over
8238         the place.
8239
8240 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
8241
8242         * ThemeGtk.cs: Added TrackBar and some experimental code to
8243           get double buffering back
8244
8245 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
8246
8247         * DataGrid.cs: Allows row number set internally higher than the last
8248         when creating a new row. Restores the editing functionality.
8249
8250 2006-01-20  Mike Kestner  <mkestner@novell.com>
8251
8252         * MimeIcon.cs: delay Image creation until the icons are accessed
8253         instead of creating 190 scaled images on GnomeHandler startup.
8254
8255 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
8256
8257         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
8258           first call base before processing the event. Fixes #77279
8259
8260 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
8261
8262         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
8263           that the stride for the GDI bitmap would match the stride of
8264           a DIB or a Cursor.
8265
8266 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
8267
8268         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
8269
8270 2006-01-19  Jackson Harper  <jackson@ximian.com>
8271
8272         * ComboBox.cs: Hookup the text controls keydown event so we get
8273         those when the text control has the focus.
8274
8275 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
8276
8277         * Label.cs: Now using the base events instead of defining new ones;
8278           this allows us to just call the base properties without having to
8279           duplicate all base property logic 
8280
8281 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
8282
8283         * Label.cs: A label by default is not a tabstop (Fixes one of our
8284           failing nunit tests)
8285
8286 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
8287
8288         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
8289         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
8290
8291 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
8292
8293         * Cursor.cs: Reimplemented creating cursor bitmaps without using
8294           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
8295           This fixes #77218
8296         * XplatUIWin32.cs: 
8297           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
8298             constructor creates images that can't be saved. Part of the fix
8299             for #76103
8300           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
8301           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
8302             bug fix for handling window state in forms properly)
8303
8304 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
8305
8306         * ThemeGtk.cs: Simplify ScrollBar drawing
8307
8308 2006-01-18  Jackson Harper  <jackson@ximian.com>
8309
8310         * Splitter.cs: Set the default dock style for the splitter control
8311         in the constructor.
8312
8313 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
8314
8315         * ThemeGtk.cs: Corrected StateType and ShadowType for
8316           gtk_paint_box
8317
8318 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
8319
8320         * Control.cs: Make use of Theme.DoubleBufferingSupported
8321         * ThemeGtk.cs:
8322           - Added drawing for flat style buttons
8323           - Added ScrollBar drawing
8324
8325 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
8326
8327         * ThemeClearlooks.cs: Removed some unneeded code.
8328         * ThemeGtk.cs: First part of ThemeGtk enhancements.
8329
8330 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
8331
8332         * LinkLabel.cs: We need to update the hover drawing when
8333           leaving the control as well.
8334
8335 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
8336
8337         * DataGrid.cs: Clicking on non empty areas in the columns
8338            area was giving an exception
8339
8340 2006-01-17  Jackson Harper  <jackson@ximian.com>
8341
8342         * ThemeWin32Classic.cs:
8343         * ListView.cs: Do not draw/clip the headers when the header style
8344         is None.
8345
8346 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
8347
8348         * DataGrid.cs: Fixes 77260
8349         
8350 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
8351
8352         * DataGrid.cs: Clicking on a column on a empty grid was giving
8353           an exception
8354
8355 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
8356
8357         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
8358           or any keypress will crash the grid.
8359
8360 2006-01-17  Mike Kestner  <mkestner@novell.com>
8361
8362         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
8363         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
8364         invisible/previously-visible items.
8365         [Fixes #76909]
8366
8367 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
8368
8369         * ThemeClearlooks.cs:
8370         - Added CL_Draw_Button method; now other theme controls that are 
8371           not derived from button or do not have a button can draw buttons
8372           too
8373         - Updated ComboBox drawing
8374         - Beautified RadioButton drawing
8375         - Corrected drawing of bottom and left tabs
8376         - Beautified DateTimePicker and MonthCalendar
8377         - Added CPDrawButton and CPDrawRadioButton
8378
8379 2006-01-16  Jackson Harper  <jackson@ximian.com>
8380
8381         * ComboBox.cs: Set the initial value of the scrollbar to the
8382         current index. Reduce the numbers of refreshs and IndexOfs called.
8383
8384 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
8385
8386         * FileDialog.cs: When the file listview is focused hitting the
8387           backspace key moves the fileview to the parent directory
8388
8389 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
8390
8391         * Form.cs: 
8392           - Added RecreateHandle call when changing taskbar visibility to 
8393             trigger reparenting in Win32 driver (Fixes #75719)
8394           - If a window has minimize or maximize buttons, it cannot have
8395             a help button
8396         * XplatUIWin32.cs:
8397           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
8398             the toplevel form with FosterParent (A toolwindow not on the
8399             taskbar) (Fixes #75719)
8400           - Made FosterParent a toolwindow
8401
8402 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
8403
8404         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
8405
8406 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
8407
8408         * ToolTip.cs: If SetToolTip is called from a control and the mouse
8409           is currently over that control, make sure that tooltip_window.Text
8410           gets updated
8411
8412 2006-01-13  Mike Kestner  <mkestner@novell.com>
8413
8414         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
8415
8416 2006-01-13  Jackson Harper  <jackson@ximian.com>
8417
8418         * TreeView.cs: On MS GetNodeAt never actually factors in the X
8419         value passed.  Also redraw the selected node when we recieve
8420         focus, so tabbing between trees works correctly.
8421
8422 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
8423
8424         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
8425           ~/.gconf/%gconf-tree.xml, so use
8426           .gconf/desktop/gnome/interface/%gconf.xml
8427
8428 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
8429
8430         * TextControl.cs: Draw text in gray if control is disabled
8431
8432 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
8433
8434         * TreeView.cs: Draw the focus rectangle outside the highlight, to
8435           make sure it's always visible. Fixes #76680.
8436
8437 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
8438
8439         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
8440
8441 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
8442
8443         * PageSetupDialog.cs: Added.
8444         * PrintDialog.cs: Attributes.
8445         * PrintPreviewControl.cs: Updates.
8446         * PrintPreviewDialog.cs: Updates.
8447         
8448 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
8449
8450         * Control.cs: Undid my selection check fix, since it's not needed
8451         * TextBoxBase.cs:
8452           - Now considering the presence of hscroll/vscroll when sizing
8453             vscroll/hscroll respectively. Fixed bug #77077
8454           - Added Left/Up/Down/Right to IsInputKey list to prevent
8455             ContainerControl from stealing them. This fixes what I broke
8456             with my last checkin.
8457
8458 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
8459
8460         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
8461           I finally understand how the property can be set without a setter :-)
8462
8463 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
8464
8465         * Application.cs:
8466           - Switched RunLoop to use static Message.Create to create a 
8467             Message object
8468           - Added PreProcessMessage call in runloop for keyboard events; this
8469             is part of the fix for #77219, I overlooked this originally in the
8470             MSDN doc for PreProcessMessage
8471         * Control.cs:
8472           - Removed call to PreProcessMessage from handling of keyboard 
8473             messages; it's supposed to be done in the message pump
8474           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
8475             per MSDN documentation.
8476           - IsInputChar: All chars are input chars by default; removed the 
8477             parent calling chain, MS does not document that
8478           - PreProcessMessage: If IsInputChar is true, we want to return false
8479             to allow dispatching of the message
8480           - When selecting the next control, now also check that we're not
8481             selecting ourselves again and therefore return a false positive.
8482         * TextBoxBase.cs:
8483           - Tried to match return values for IsInputKey and ProcessDialogKey
8484             to what MS returns; moved processing of our special keys outside
8485             ProcessDialogKey since MS does not seem to return true on those.
8486           - Moved code that previously was in ProcessDialogKey into new private
8487             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
8488           - Reworked handling of WM_CHAR to not have to duplicate code from
8489             Control.cs anymore, instead we simply call down to base.
8490            
8491 2006-01-12  Jackson Harper  <jackson@ximian.com>
8492
8493         * ComboBox.cs: We always need to refresh the text area when
8494         EndUpdate is called. Fixes the combobox in the file dialog.
8495         * Control.cs: Don't create the creator_thread until the controls
8496         handle is created.  Also in InvokeRequired we check if the
8497         creator_thread is null. This gives the effect of InvokeRequired
8498         returning true if the controls handle is not created yet, and
8499         matches MS.
8500
8501 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
8502
8503         * XplatUI.cs:
8504           - Added StartLoop() driver method. This is used to allow drivers to
8505             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
8506             loop for a particular thread
8507           - Added EndLoop() driver method. This is called once the message
8508             pump for the thread is shut down
8509           - Added SupportsTransparency method to allow the driver to indicate
8510             opacity support for windows
8511         * Form.cs:
8512           - Removed TODO attribute, completed AllowTransparency property
8513           - Added documented logic to Opacity
8514         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
8515           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
8516           versions of CompatibleTextRendering
8517         * X11Structs.cs: Added opacity atom to our atom enumeration
8518         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
8519           of a form might be set before it's reparented by the WM, and we need
8520           the opacity value without calling up to Form)
8521         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
8522           SupportsTransparency() driver methods
8523         * Application.cs: Now calling StartLoop and EndLoop driver methods
8524         * XplatUIX11.cs:
8525           - Added opacity atom registration
8526           - Added StartLoop()/EndLoop() methods. They're empty right now but
8527             will need to get implemented when we switch to a per-thread queue
8528           - Implemented SupportsTransparency() method
8529           - Implemented SetWindowTransparency() method
8530           - Added support for setting the opacity value when a window is
8531             reparented (since the opacity needs to be set on the WM frame)
8532         * XplatUIOSX.cs, XplatUIWin32.cs:
8533           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
8534
8535 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
8536
8537         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
8538
8539 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
8540
8541         * FileDialog.cs: Added ToolTip for MWFFileView
8542         * MimeIcon.cs: Rewrote GnomeHandler.
8543           - Get currently used gnome icon theme from
8544             ($HOME)/.gconf/%gconf-tree.xml
8545           - Make use of inherited icon themes
8546           - Support SVG icon themes like Tango via librsvg
8547
8548 2006-01-12  Miguel de Icaza  <miguel@novell.com>
8549
8550         Revert's Jackson's revert which broke 2.0 builds.   Fix both
8551         builds. 
8552         
8553         * Application.cs: Move the use_compatible_text_rendering outside
8554         the NET_2_0 define.  If we ever need to use the
8555         use_compatible_text_rendering on the individual controls they will
8556         access the variable from the common shared code paths.
8557
8558 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
8559
8560         * XplatUI.cs:
8561           - Added more granular debug options
8562           - Added method to print both window text and id
8563           - Switched debug output to use new Window() debug method
8564           - Added IsEnabled() driver method
8565           - Added EnableWindow() driver method
8566         * Form.cs:
8567           - Removed end_modal; no longer needed, new loop handles termination
8568             via 'closing' variable
8569           - If form is modal, setting DialogResult will now initiate loop
8570             termination via 'closing' variable
8571           - Added support for is_enabled/WS_DISABLED to CreateParams
8572           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
8573             does all the work
8574           - Removed code that's now in RunLoop from ShowDialog()
8575           - Added various documented sanity checks to ShowDialog()
8576           - Added handling of WM_DESTROY message; we set 'closing' on getting
8577             the message to indicate the message pump to terminate
8578           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
8579             send by the Application.ExitThread method. (We send the message
8580             to destroy the window after all other events have been
8581             processed through the queue, instead of destroying the handle 
8582             directly)
8583           - Moved code from Close() method to WM_CLOSE handler; added logic
8584             to only send close-related events if the form is not displayed
8585             modal
8586         * Splitter.cs (..ctor): Fixed typo in resource name
8587         * Control.cs:
8588           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
8589             brush now
8590           - set_Cursor: Now only setting calling into XplatUI if the handle for
8591             the control is already created; this avoids implict handle creation
8592             or crashes if it's not created
8593           - set_Enabled: Now setting the enabled state via the new driver method
8594             instead of just tracking it
8595           - CreateParams: Added logic to set WS_DISABLED based on enabled state
8596           - CreateControl: Reordered event firing and method calls to more
8597             closely fire events in the order MS does. Now setting the
8598             enabled state in the driver when creating the control.
8599           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
8600             match MS order
8601         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
8602           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
8603         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
8604         * Hwnd.cs:
8605           - Added tracking of window enabled state (get_Enabled/set_Enabled)
8606           - Added EnabledHwnd property to easily allow a driver to find the
8607             handle of the first enabled window in the parent chain (this is
8608             used by drivers to pass up input events of disabled windows)
8609         * XplatUIDriver.cs: Added IsEnabled() method
8610         * Application.cs:
8611           - Removed crude and obsolete exiting tracking variable
8612           - Removed internal ModalRun(); replaced by RunLoop()
8613           - Implemented private CloseForms() method to allow closing all 
8614             windows owned by a particular (or all) threads
8615           - Exit() now properly closes all windows without forcing the message
8616             pump to quit
8617           - Removed obsolete InternalExit() method
8618           - Changed Run() methods to use new RunLoop() message pump
8619           - Implemented new RunLoop() method for both modal and non-modal forms
8620         * CommonDialog.cs:
8621           - get_CreateParams: Added setting of WS_DISABLED
8622           - Simplified ShowDialog(); now all the work is done in RunLoop(),
8623             invoked via Form.ShowDialog()
8624         * NativeWindow.cs: We don't remove the window from the collection when
8625           the handle is destroyed; there might still be messages for it in the
8626           queue (mainly the resulting WM_DESTROY); instead it will be removed
8627           when Control calls InvalidateHandle in the WM_DESTROY handler
8628         * XplatUIX11.cs:
8629           - CreateWindow: Added logic to handle the WS_DISABLED window style
8630           - EnableWindow: Implemented based on Hwnd.Enabled
8631           - GetMessage: Reset PostQuitState so the method can be called again
8632           - Implemented support for disabled windows (passing messages to the
8633             first enabled parent) in handling all input messages
8634           - Added optimizations for handling Expose events
8635           - Implemeted new driver method IsEnabled()
8636           - Now always resetting paint pending tracking vars when we start paint
8637           - Re-implemented UpdateWindow via just sending a WM_PAINT message
8638         * XplatUIOSX.cs: Added IsEnabled method stub
8639         * XplatUIWin32.cs: Implemented new IsEnabled() method
8640
8641 2006-01-11  Jackson Harper  <jackson@ximian.com>
8642
8643         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
8644         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
8645         variables a little.
8646         * ColorDialog.cs: Clear out the old form before adding the new
8647         panel.  
8648
8649 2006-01-11  Jackson Harper  <jackson@ximian.com>
8650
8651         * X11Dnd.cs: Make sure to add all the text formats when adding
8652         strings to the data object.
8653         * TreeNodeCollection.cs: When adding to a sorted tree we need to
8654         do some redrawing too.  Also change the UpdateNode to an
8655         UpdateBelow so the newly added node gets painted.
8656         
8657 2006-01-11  Miguel de Icaza  <miguel@novell.com>
8658
8659         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
8660         LinkLabel.cs, PropertyGrid.cs: Implement the
8661         UseCompatibleTextRendering property for 2.x
8662
8663         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
8664
8665 2006-01-11  Jackson Harper  <jackson@ximian.com>
8666
8667         * TreeView.cs: Use the property for setting the selected node so
8668         the correct events get raised.
8669         * TreeNode.cs: Update the tree when the fore/back colours of a
8670         node are set.
8671
8672 2006-01-10  Jackson Harper  <jackson@ximian.com>
8673
8674         * TreeView.cs: Allow setting SelectedNode to null.
8675
8676 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8677
8678         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
8679
8680 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8681
8682         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
8683
8684 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8685
8686         * PrintDialog.cs: Added attributes and set default property values.
8687
8688 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8689
8690         * PrintControllerWithStatusDialog.cs: 
8691         Added PrintControllerWithStatusDialog.
8692
8693 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8694
8695         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
8696         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
8697
8698 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8699
8700         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
8701
8702 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
8703
8704         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
8705         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
8706
8707 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
8708
8709         * MimeIcon.cs: Added internal class SVGUtil.
8710
8711 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
8712
8713         * FileDialog.cs: Don't crash if there are two files with the
8714           same name but different locations.
8715
8716 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
8717
8718         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
8719         dates across multiple month grids. Used to not highlight entire 
8720         month, but does now.
8721         
8722 2006-01-06  Jackson Harper  <jackson@ximian.com>
8723
8724         * MonthCalendar.cs: Removed DoEvents call to prevent a running
8725         message loop. Change timer intervals to numbers that seem more
8726         natural.
8727
8728 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
8729
8730         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
8731           object for location info since screen object is now implemented.
8732
8733 2006-01-05  Jackson Harper  <jackson@ximian.com>
8734
8735         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
8736         * AsyncMethodResult.cs: We no longer use a WeakReference for the
8737         AsyncMethodResult, this is because we ALWAYS want the
8738         ManualResetEvent to get set.
8739         * Control.cs: When disposing use an async invoke to call shutdown
8740         code, so that thigns don't block on the finalizer thread.  Also
8741         check if we even have a message loop before trying to send
8742         messages, if we don't then don't bother sending messages.
8743         - No more weak references for async methods
8744         * XplatUIDriver.cs: No more weak references for async methods.
8745
8746 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
8747
8748         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
8749           returns two FontFamily with the same name
8750
8751 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
8752
8753         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
8754           drawing disabled text. Instead using the ColorGrayText color
8755
8756 2006-01-04  Jackson Harper  <jackson@ximian.com>
8757
8758         * TreeNode.cs: redraw the node when its image index is changed.
8759
8760 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
8761
8762         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
8763           time I checked there are no others like it.
8764
8765 2006-01-04  Jackson Harper  <jackson@ximian.com>
8766
8767         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
8768         this gives the behavoir I was looking for.
8769         * Control.cs: Special case Invoking EventHandlers, this matches MS
8770         and fixes part of bug #76326.
8771
8772 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
8773
8774         * ThemeClearlooks.cs, FileDialog.cs:
8775           - Reflect the latest Theme class changes
8776           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
8777             with DateTime
8778             
8779 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
8780
8781         * Theme.cs: Cache UI resource images and resize them if needed
8782
8783 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
8784
8785         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
8786           is called. This fixes the crash in Nexxia when setting the font
8787           attributes in the chat. [However, RTF needs a look-over to make sure
8788           that all SelectionXXX methods handle the special case that selection
8789           is empty and therefore the change must be applied to all text starting
8790           at the cursor/selection start]
8791
8792 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
8793
8794         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
8795           XplatUIOSX.cs: Added SendMessage and PostMessage methods
8796         * X11Keyboard.cs: Switched to new way of calling PostMessage
8797
8798 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
8799
8800         * Theme.cs: Added theme interface for images to allow the theme to
8801           control what images are used for things like FileDialog, MessageBox
8802           icons, etc.
8803         * MessageBox.cs: Now uses the new Theme icon/image interfaces
8804
8805 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
8806
8807         * FileDialog.cs:
8808           - Removed some dead code
8809           - Opening a recently used file does work now
8810           - Small UI enhancements
8811           - Refactoring
8812
8813 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
8814
8815         * FileDialog.cs: Forgot too add __MonoCS__
8816
8817 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
8818
8819         * FileDialog.cs: We are able to read recently used files now let's
8820           go on and write them.
8821
8822 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
8823
8824         * FileDialog.cs: Breathe some life into "last open"/"recently used"
8825           button
8826         * MimeIcon.cs: Do a check for the top level media type also
8827
8828 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
8829
8830         * ThemeClearlooks.cs:
8831           - Added CPDrawStringDisabled
8832           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
8833             some chars if the text doesn't fit into text_rect
8834           - DrawListViewItem: If View = View.LargeIcon center the image;
8835             rewrote the drawing of ListViewItem.Text if View = 
8836             View.LargeIcon
8837
8838 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
8839
8840         * MimeIcon.cs: Use default KDE icon theme if there is no
8841           "48x48" directory for the current icon theme, fixes #77114
8842         * Mime.cs: Disable not working and actually not used code. 
8843         * ThemeWin32Classic.cs:
8844           - Replace "new SolidBrush" in GetControlBackBrush and
8845             GetControlForeBrush with ResPool.GetSolidBrush
8846           - Changed DrawListViewItem from private to protected virtual
8847         * FileDialog.cs:
8848           - Added form.MaximizeBox = true
8849           - Don't throw an exception if there is a broken symbolic link
8850
8851 2005-12-23  Jackson Harper  <jackson@ximian.com>
8852
8853         * TabControl.cs: Give the panels focus, keyboard navigation is
8854         fixed so this works correctly now.
8855         - We need these key events also.
8856         * ToolBar.cs: Remove some of the poor mans double buffering.
8857         
8858 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
8859
8860         * ComboBox.cs: The internal TextBox now returns the focus.
8861
8862 2005-12-23  Jackson Harper  <jackson@ximian.com>
8863
8864         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
8865
8866 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
8867
8868         * Control.cs: Removed debug code
8869         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
8870           implicit children
8871
8872 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
8873
8874         * Control.cs: When creating the control, update the Z-order after
8875           all it's children are created, too. (Fixes nexxia not showing
8876           picturebox bug)
8877
8878 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
8879
8880         * Control.cs: Do not update the anchoring distances if layout is
8881           suspended, instead do it once layout is resumed
8882
8883 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
8884
8885         * Control.cs: 
8886           - After many hours of debugging, for both Jackson and
8887             myself, it turns out that it helps to set the parent of a control
8888             if you want to actually see it onscreen. In the spirit of that
8889             discovery, we're now setting the parent of the control and
8890             it's children when the control's handle is created. This fix
8891             will make Lutz Roeder's Reflector run happily. 
8892           - now just creating the handle instead of the whole control when
8893             getting a graphics context for the control.
8894
8895 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
8896
8897         * ScrollableControl.cs: When calculating the canvas, don't consider
8898           the scrollbar widths. Instead, predict if horizontal scrollbar
8899           will affect canvas when deciding on vertical display and vice versa.
8900
8901 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
8902
8903         * RichTextBox.cs: Set default RTF font for documents that don't
8904           have a font table (Fixes #77076)
8905
8906 2005-12-22  Jackson Harper  <jackson@ximian.com>
8907
8908         * TextBoxBase.cs: It's difficult to do, but you can have an empty
8909         clipboard. This prevents a NullRef in that case.
8910         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
8911         clipboard. PRIMARY is for the currently selected text only. (We
8912         should implement PRIMARY at some point.
8913
8914 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
8915
8916         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
8917           a Unicode function with a structure that was defined in Ansi way.
8918           This fixes #76942.
8919
8920 2005-12-21  Jackson Harper  <jackson@ximian.com>
8921
8922         * StatusBar.cs: Statusbar handles its fore/back colours on it's
8923         on. Because thats how it rolls. (and this avoids it using ambient
8924         colours).
8925         * ThemeWin32Classic.cs: Use the proper back color for filling.
8926         * Menu.cs: Use the system menu bar color for drawing menu
8927         bars. Using the window back color will bring ambient colours into
8928         the picture.
8929
8930 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
8931
8932         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
8933           Bitmaps were created and not disposed.
8934
8935 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
8936
8937         * Control.cs (CreateControl): Don't do anything if the control is
8938           already created, otherwise we'd fire the OnCreated event more than
8939           once
8940
8941 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
8942
8943         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
8944           will always match. Instead return -1. Fixes #76464.
8945
8946 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
8947
8948         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
8949           neither the beginning nor the end of the line (Fixes bug #76479)
8950
8951 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
8952
8953         * Control.cs:
8954           - ControlNativeWindow.ControlFromHandle(): Now handling situation
8955             where handle is invalid
8956           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
8957             instead of slower linear search
8958         * NativeWindow.cs: Don't remove the window from the hashtable until
8959           after the driver has destroyed it (since the driver might use
8960           Control.FromHandle to lookup the control object
8961         * Hwnd.cs: Added DestroyPending property to track if a window is 
8962           already destroyed as far as the driver is concerned and only hasn't
8963           yet notified the control
8964         * XplatUIX11.cs:
8965           - Activate(): Check if the window is still valid before using the 
8966             handle
8967           - Implemented DestroyChildWindow() method to mark child windows as
8968             destroyed when a window is destroyed. This prevents situations 
8969             where we might call an X method based on queued events for a
8970             window that already has been destroyed but we haven't yet pulled
8971             the destroy method from the queue.
8972           - Added a call to the new DestroyChildWindow() method to the drivers
8973             DestroyWindow code. Also now marking the destroyed window itself
8974             as pending
8975
8976 2005-12-20  Jackson Harper  <jackson@ximian.com>
8977
8978         * StatusBar.cs:
8979         * StatusBarPanel.cs: Don't calculate panel sizes on draw
8980         anymore. Just do them when needed, also track the rects of panels
8981         so that we can optimize refreshing more in the future.
8982
8983 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
8984
8985         * ColorDialog.cs: Fixed focus drawing in small color controls
8986
8987 2005-12-19  Jackson Harper  <jackson@ximian.com>
8988
8989         * InternalWindowManager.cs:
8990         * MdiWindowManager.cs: Cleanup some coordinate system changes so
8991         moving windows works properly.
8992
8993 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
8994
8995         * Control.cs: 
8996           - Removed call to InitLayout() from SetBoundsCore(); doc says
8997             it's only called when a control is added to a container
8998           - Split InitLayout logic, moved to separate UpdateDistances() method
8999             since we need to perform those calculations more often than just
9000             when adding the control to a container. (Needed to fix #77022)
9001           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
9002           - Reduced the OnBindingContextChanged events count, don't send them
9003             unless the control is created, we still aren't totally matching
9004             MS, but I can't quite figure out some of their rules
9005
9006 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
9007
9008         * ThemeClearlooks.cs: Corrected distance between ProgressBar
9009           stripes
9010
9011 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
9012
9013         * ThemeClearlooks.cs:
9014           - Updated ProgressBar drawing
9015           - Corrected drawing of ScrollBars and scroll buttons
9016           - Some temporary fixes for minor pixel artefacts
9017
9018 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
9019
9020         * Control.cs:
9021           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
9022             cause events to be sent in the same order as MS does.
9023           - Added ChangeParent() method to trigger various OnXXXChanged events
9024             that need to be fired when a parent changes (This is a reworking
9025             of the patch from r54254, with the X11 errors fixed)
9026           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
9027             since on MS we get OnLayoutChanged events when calling Clear()
9028           - Changed Enabled property to consider parent state as well, if a
9029             parent is not enabled, the control will not be either
9030           - Changed Parent property to simply call Controls.Add() since that
9031             now does all the work required, this way we avoid code duplication
9032           - Threw in a few OnBindingsContextChanged calls to try and match
9033             when MS sends them. We seem to send a few too many, though.
9034           - Added call to CreateControl when adding the control to a parent.
9035             We were never calling CreateControl. Still needs some work, in
9036             some places we treat HandleCreated and ControlCreated as equal, 
9037             which is wrong
9038           - Removed obsolete commented out code from UpdateZOrder()
9039
9040 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
9041
9042         * ThemeClearlooks.cs: Updated TrackBar drawing.
9043
9044 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
9045
9046         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
9047
9048 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
9049
9050         * FileDialog.cs: Add the Help button and the open readonly
9051           checkbox only if needed
9052
9053 2005-12-16  Jackson Harper  <jackson@ximian.com>
9054
9055         * Control.cs: Make sure we have an active menu before trying to
9056         process commands on it. Prevents menu-less forms from crashing
9057         when Alt is pressed.
9058         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
9059         Dieter Bremes.
9060         * RichTextBox.cs: Expand statement to help out gmcs and fix the
9061         2.0 build.
9062
9063 2005-12-16  Jackson Harper  <jackson@ximian.com>
9064
9065         * InternalWindowManager.cs: Don't translate tool windows screen
9066         coordinates. This fixes windows 'bouncing' around when being moved.
9067
9068 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
9069
9070         * TextBoxBase.cs:
9071           - MaxLength now treats 2^31-1 equal to unlimited length (this is
9072             not quite MS compatible, MS uses that number only for single line
9073             and 2^32-1 for multi-line, but I figure it won't hurt keeping
9074             the limit at 2GB)
9075           - Now enforcing the MaxLength limit when entering characters
9076           - Added argument to internal Paste() method to track if it's called
9077             from programatically or via keyboard, since keyboard driven pastes
9078             need to enforce max-length
9079           - Added logic to Paste to only paste as many chars as MaxLength 
9080             allows
9081         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
9082         * TextControl.cs:
9083           - Added Length property to return number of characters in document
9084           - Added private CharCount property which only tracks actual chars
9085             in the document (no linefeeds) and fires event when CharCount
9086             changes
9087           - Added tracking of character count to all methods that alter it
9088           - Added LengthChanged event to allow applications to subscribe
9089             to any changes to the document
9090
9091 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
9092
9093         * TextBox.cs: 
9094           - Removed local password_char field (moved to TextBoxBase)
9095           - Now setting the document's password var when password is
9096             set
9097         * TextBoxBase.cs:
9098           - Added password_char field (needed here so MultiLine can
9099             access it)
9100           - Added logic to MultiLine property setter to set the document's
9101             variable when password display is allowed
9102           - Removed debug code and made some debug code conditional
9103         * TextControl.cs:
9104           - Added RecalculatePasswordLine() method to handle special password
9105             char only lines
9106           - Added PasswordChar property, also added related tracking vars
9107           - Draw() method now uses local text var for grabbing text to draw,
9108             this var is set to line.text unless we're doing password display,
9109             then it is set to the pre-generated all-password-chars line
9110           - Added calling RecalculatePasswordLine() method for password lines
9111
9112 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
9113
9114         * Hwnd.cs: 
9115           - Added Reparented property to allow tracking of Window Manager
9116             reparenting actions (which affect X/Y calculations of toplevel 
9117             windows)
9118           - Made ToString() print window handles in hex
9119         * XplatUIX11.cs:
9120           - AddConfigureNotify(): Now uses reparented state off Hwnd to
9121             determine if X/Y needs offsetting
9122           - AddConfigureNotify(): Fixed offset calculations
9123           - Now adds ReparentNotify messages into the queue
9124           - Now processes ReparentNotify messages and causes a 
9125             WM_WINDOWPOSCHANGED message to be sent upstream if a window
9126             is reparented (as most likely it's X/Y coordinates are changed
9127             due to that)
9128
9129 2005-12-14  Jackson Harper  <jackson@ximian.com>
9130
9131         * XplatUIX11.cs: Tool windows still need to respek focus.
9132
9133 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
9134
9135         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
9136           have a working release
9137
9138 2005-12-13  Jackson Harper  <jackson@ximian.com>
9139
9140         * Form.cs: Update styles after setting the border style regardless
9141         of whether or not the window is using a window manager.
9142
9143 2005-12-13  Jackson Harper  <jackson@ximian.com>
9144
9145         * Form.cs: We now hook into an internal window manager instead of just an
9146         MDI subsystem, this is so we can have properly behaving tool windows.
9147         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
9148         * InternalWindowManager.cs: New internal class that acts as a
9149         window manager for tool windows and as a base for mdi windows.
9150         * MdiWindowManager.cs: New class that acts as a window manager for
9151         mdi windows.
9152
9153 2005-12-12  Jackson Harper  <jackson@ximian.com>
9154
9155         * Control.cs: Updates so we match behavoir for for implicit
9156         controls. Fixes explosions in MDI.
9157
9158 2005-12-12  Jackson Harper  <jackson@ximian.com>
9159
9160         * Control.cs: Implement Invalidate (Region).
9161
9162 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
9163
9164         * Control.cs: 
9165           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
9166             the same events as MS does. MS fires events for each property 
9167             except, for unknown reasons, Cursor, when the control is reparented. 
9168             I can't seem to totally match add/remove since MS also fires some 
9169             VisibleChanged events, which makes no sense. Consolidated the
9170             parenting code into a separate method so it can be called from
9171             both Add and Remove. set_Parent no longer needs any special logic
9172             as it calls the parent's add method which implicitly fires
9173             all events
9174           - Removed some obsolete code and debug output
9175           - Enabled state is inherited from parents, if this is enabled
9176
9177 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
9178
9179         * Form.cs: Removed commented out code
9180
9181 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
9182
9183         * Control.cs:
9184           - Added internal version of Invoke, with additional argument 
9185             indicating if we're calling it from a Dispose() handler. That
9186             way we can avoid BeginInvoke throwing an exception if we're
9187             calling for an already destroyed window.
9188           - Added a dispose argument to BeginInvokeInternal, and made the
9189             check if a valid window handle chain exists conditional on
9190             it not being a dispose call
9191           - Removed code in DestroyHandle to destroy our children. Since we
9192             now handle the WM_DESTROY message we will catch all our children
9193             being destroyed.
9194           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
9195         * Form.cs:
9196           - Added a field to track the application context of the form.
9197           - No need to set closing variable as response to WM_CLOSE, instead
9198             we destroy the window. We also call PostQuitMessage if the form
9199             has an application context (which makes it the main app form,
9200             which, when closed terminates the app)
9201         * XplatUI.cs:
9202           - Dropped Exit() method, it's naming was confusing
9203           - Added PostQuitMessage() which causes GetMessage to return false
9204             once the message queue is empty
9205         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
9206           PostQuitMessage()
9207         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
9208           no longer a valid XplatUI method, but left it in since it's used
9209           internally. Added empty PostQuitMessage() method.
9210         * MenuAPI.cs: Replaced call to Exit() with call to
9211           PostQuitMessage, even though this is probably no longer needed.
9212         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
9213         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
9214         * Application.cs:
9215           - Replaced call to XplatUI.Exit() with PostQuitMessage()
9216           - Removed old debug code that would call XplatUI for exception
9217             display, enabled standard exception handling (Still not enabled
9218             though, until NativeWindow's ExternalExceptionHandler define
9219             is removed
9220         * NativeWindow.cs:
9221           - Added internal method to allow control to update NativeWindow
9222             after a window has been destroyed
9223           - Added handling of already destroyed windows when calling i
9224             DestroyWindow
9225           - Added removal of handle from list on ReleaseHandle
9226         * XplatUIX11.cs:
9227           - Dropped GetMessageResult var and related code
9228           - Added PostQuitState to field to track if PostQuitMessage has been
9229             called
9230           - Dropped Exit() method
9231           - Added PostQuitMessage() method
9232           - GetMessage now will return false if PostQuitState is set and no
9233             more messages are in the queue.
9234           - Expose handler will no longer generate WM_PAINT messages if we are
9235             in PostQuitState since it's very likely any windows have already
9236             been destroyed, and since Hwnd won't get updated until we have
9237             processed the DestroyNotify we'd be causing X errors.
9238         
9239 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9240
9241         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
9242           Thanks to Mike for pointing out the err of my ways.
9243
9244 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9245
9246         * Control.cs(PreProcessMessage): Moved menu handling back, but
9247           after all other key handling, to match MS (who handles Menu in
9248           DefWndProc)
9249         * Menu.cs (WndProc): Removed my brainfart
9250
9251 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9252
9253         * Control.cs(PreProcessMessage): Removed special menu handling 
9254         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
9255
9256 2005-12-07  Mike Kestner  <mkestner@novell.com>
9257
9258         * Control.cs : special case SYSKEYUP so that we can adjust keynav
9259         state according in tracker.
9260         * Menu.cs : promote tracker field to base class and provide a tracker
9261         lookup capability.  Add/Remove shortcuts dynamically if the top menu
9262         has a tracker. Unparent items that are removed from the collection.
9263         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
9264         * Theme*.cs: add always_show_hotkeys field to support configurability
9265         of mnemonic display.  win32 doesn't show mnemonics until Alt is
9266         pressed.
9267
9268 2005-12-07  Jackson Harper  <jackson@ximian.com>
9269
9270         * MdiChildContext.cs: Use Control.ResetCursor.
9271         * Control.cs: ResetCursor needs to set the property so that the
9272         correct XplatUI call gets made.
9273
9274 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9275
9276         * Control.cs: More fixes to make our key events match MS. We
9277           were not setting the modifier state on KeyData, and we were
9278           not generating any events when Alt was pressed with a key
9279           since handling of WM_SYSxxx was missing for the OnKey methods.
9280
9281 2005-12-07  Jackson Harper  <jackson@ximian.com>
9282
9283         * MdiChildContext.cs: reenable the sizing code.
9284         - When the mouse leaves a window reset its cursor.
9285
9286 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
9287
9288         * ThemeClearlooks.cs: Reflect latest Hwnd changes
9289
9290 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9291
9292         * Hwnd.cs: Now using the theme 3d bordersize to calculate
9293           widths of Fixed3D borders
9294
9295 2005-12-07  Jackson Harper  <jackson@ximian.com>
9296
9297         * MdiClient.cs: Fix warnings. Earn Mike's love.
9298
9299 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
9300
9301         * ThemeClearlooks.cs:
9302           - Adjusted mouse over button color
9303           - Added first parts of CheckBox drawing
9304           - Added correct color for selected text background
9305           - Fixed ComboBox drawing
9306           - Added CPDrawBorder3D and CPDrawBorder
9307
9308 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
9309
9310         * XplatUIX11.cs: Added call to XBell for AudibleAlert
9311
9312 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
9313
9314         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
9315           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
9316           alert users via sound. We could add an enum arg with different
9317           types of alerts in the future
9318
9319 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
9320
9321         * Control.cs: Fix behaviour problems pointed out by Mike
9322
9323 2005-12-05  Mike Kestner  <mkestner@novell.com>
9324
9325         * StatusBarPanel.cs: add Invalidate method and hook it into all the
9326         prop setters.  Calls parent.Refresh for now, but could be maybe be
9327         optimized with an internal method on StatusBar at some point.
9328         [Fixes #76513]
9329
9330 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
9331
9332         * RichTextBox.cs: Implemented get_SelectionColor
9333
9334 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
9335
9336         * ThemeClearlooks.cs:
9337           - Removed dead code
9338           - Draw black button border only if button is Form.AcceptButton
9339           - Draw correct button color for pressed RadioButton if the mouse 
9340             has entered the button
9341           - Updated ProgressBar drawing!
9342           - Updated CPDrawSizeGrip drawing
9343           - Updated StatusBarPanel drawing
9344
9345 2005-12-05  Mike Kestner  <mkestner@novell.com>
9346
9347         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
9348         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
9349
9350 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
9351
9352         * ThemeClearlooks.cs: Initial check-in, activate with
9353           export MONO_THEME=clearlooks
9354         * ThemeEngine.cs: Added ThemeClearlooks
9355
9356 2005-12-03  Mike Kestner  <mkestner@novell.com>
9357
9358         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
9359         [Fixes #76897]
9360
9361 2005-12-02  Jackson Harper  <jackson@ximian.com>
9362
9363         * Form.cs: If the child form has no menu the default main menu is
9364         used as the active menu.
9365
9366 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
9367
9368         * ListBox.cs: Check if any items exist before trying to resolve 
9369           coordinates into items
9370
9371 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
9372
9373         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
9374           as the second color for the background hatch
9375
9376 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
9377
9378         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
9379         * RichTextBox.cs: FormatText position arguments are 1-based, now making
9380           sure that what we pass to FormatText is always 1-based. Fixes #76885
9381
9382 2005-11-29  Miguel de Icaza  <miguel@novell.com>
9383
9384         * NumericUpDown.cs (EndInit): When we are done initializing,
9385         reflect any updates on the UI.
9386
9387 2005-12-02  Jackson Harper  <jackson@ximian.com>
9388
9389         * ImplicitHScrollBar.cs:
9390         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
9391         their container controls.
9392         * TreeView.cs: Use the new implicit scrollbars.
9393
9394 2005-12-02  Jackson Harper  <jackson@ximian.com>
9395
9396         * TreeView.cs: Make top_node internal so the TreeNodeCollections
9397         can play with it.
9398         * TreeNodeCollection.cs: If we remove the topnode we need to
9399         update topnode to the next node in line.
9400         - When clearing nodes go through the same process as removing
9401         them, so they get depareneted and checked if they are top node.
9402
9403 2005-12-01  Jackson Harper  <jackson@ximian.com>
9404
9405         * TreeView.cs: When imagelists are used the image area is
9406         selectable as well as the text.
9407         - If there are no selected nodes select the first one.
9408         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
9409         so don't do it more then we need to.
9410
9411 2005-12-01  Jackson Harper  <jackson@ximian.com>
9412
9413         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
9414         that arrows can be scaled.
9415
9416 2005-12-01  Jackson Harper  <jackson@ximian.com>
9417
9418         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
9419         fail. Patch by Dieter Bremes
9420
9421 2005-11-30  Jackson Harper  <jackson@ximian.com>
9422
9423         * Form.cs: Property is 2.0 only
9424         * PrintDialog.cs: Signature fix.
9425
9426 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
9427
9428         * TextControl.cs: 
9429           - No longer artificially moves text 2 pixels down (now that we have
9430             borders this is no longer needed)
9431           - Added calcs for left, hanging and right indent
9432
9433 2005-11-23  Mike Kestner  <mkestner@novell.com>
9434
9435         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
9436
9437 2005-11-30  Jackson Harper  <jackson@ximian.com>
9438
9439         * MdiChildContext.cs: Set the cloned menus forms, as these don't
9440         get cloned as part of CloneMenu ().
9441         * Menu.cs: Make sure the parent of the items get set correctly
9442         when they are added.  And the owners are notified of the changes.
9443         * Form.cs: Create an ActiveMenu property, so that when MDI is used
9444         we can change the menu being displayed/handled by the form without
9445         changing the menu assosciated with the form.
9446         - Don't let Mdi children draw/handle menus.
9447         
9448 2005-11-30  Jackson Harper  <jackson@ximian.com>
9449
9450         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
9451         a MenuChanged event. Just to make the API a little more
9452         consistent.
9453         * MainMenu.cs:
9454         * MenuItem.cs: Use the new OnMenuChanged
9455         * MdiChildContext.cs: Handle menu merging.
9456         * Form.cs: Implement MergedMenu.
9457         
9458 2005-11-30  Jackson Harper  <jackson@ximian.com>
9459
9460         * Menu.cs: We were misusing Add. Add goes behind the specified
9461         index according to the docs, and does not replace the specified
9462         index. So I added an Insert method.
9463
9464 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
9465
9466         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
9467           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
9468           is for Jackson
9469         * RichTextBox.cs: Added calls to base for DnD events
9470
9471 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
9472
9473         * TextControl.cs:
9474           - Fixed drag-selection related crash; style fixes
9475           - Implemented undo class
9476             o Implemented method to capture document state for specified
9477               range in document tree
9478             o Implemented method to restore captured document state
9479             o Implemented cursor tracking
9480             o Implemented basic undo stack
9481           - Added undo cursor tracking to methods altering cursor location
9482           - Added undo tracking to selection deletion (still missing
9483             other text-altering hookups)
9484         * RichTextBox.cs:
9485           - Added SelectionLength property
9486           - Implemented CanPaste()
9487           - Implemented Paste()
9488           - Added missing protected methods
9489           - Fixed RTF->Document conversion; now uses font index 0 and color 
9490             index 0 as the default font for the parsed text
9491           - Fixed RTF<->Document font size translation
9492           - Fixed RTF generation, now properly handles cross-tag boundaries
9493             for single line selection
9494           - No longer always appends blank line to generated RTF
9495           - Removed TODOs
9496           - Added missing attributes
9497           - Hooked up undo-related methods
9498         * TextBoxBase.cs:
9499           - Implemented Copy()
9500           - Implemented Paste()
9501           - Implemented Cut()
9502           - Fixed caret mis-behaviour on backspace across line-boundaries
9503
9504 2005-11-29  Jackson Harper  <jackson@ximian.com>
9505
9506         * MdiClient.cs: Add a method for activating mdi children. Very
9507         basic right now. I imagine someday it might need more girth.
9508         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
9509         children windows names are added to the menu item.
9510         * ThemeWin32Classic.cs: Draw the arrow if the item is an
9511         mdilist. This happens regardless of whether or not there are any
9512         mdi windows to see in the list, and according to my tests happens
9513         before the items are even added. Also happens if there isn't even
9514         an mdi client to get windows from.
9515
9516 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
9517
9518         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
9519         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
9520
9521 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
9522
9523         * DataGridTableStyle.cs:
9524           - Create always the styles for the missing columns even if they are
9525             provided by the user (not default table style)
9526         * DataGrid.cs:
9527           - Fixes bug 76770
9528           - Fixes SetDataBinding (always re-attach source)
9529           - Fixes SetNewDataSource (only clear styles if they are not for 
9530             this source)
9531          -  Expands OnTableStylesCollectionChanged to handle style refresh 
9532             and remove properly
9533
9534 2005-11-29  Jackson Harper  <jackson@ximian.com>
9535
9536         * FileDialog.cs: Implement missing bits, remove some dead
9537         code.
9538         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
9539         creation of the panel so that the options set on the dialog are
9540         seen when the panel is created.
9541         * TreeView.cs: raise a click when items are clicked.
9542         
9543 2005-11-29  Jackson Harper  <jackson@ximian.com>
9544
9545         * MdiClient.cs: Pass some signature methods through to base.
9546
9547 2005-11-28  Jackson Harper  <jackson@ximian.com>
9548
9549         * ListView.cs: Raise the click event when items are clicked.
9550
9551 2005-11-28  Jackson Harper  <jackson@ximian.com>
9552
9553         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
9554         a nullref.
9555
9556 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
9557
9558         * ThemeNice.cs: - Removed 1 pixel bitmaps
9559           - Use SmoothingMode.AntiAlias where it makes sense
9560             (ScrollButton arrow for example)
9561           - Enhanced Button focus drawing
9562           - Fixed ComboBox drawing (no artefacts anymore, focus
9563             rectangle is back again, reduced size of ComboButton, etc.)
9564           - Fixed RadioButton focus drawing for Appearence.Button
9565           - Slight ScrollButton redesign
9566           - Some LinearGradientBrush size fixes
9567           - GroupBoxes have now rounded edges
9568           - Fixed StatusBar drawing
9569
9570 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
9571
9572         * ThemeNice.cs: - Remove dead code
9573           - use correct background colors for menus, etc.
9574           - Fake pixel drawing with 1 pixel bitmaps
9575
9576 2005-11-24  Jackson Harper  <jackson@ximian.com>
9577
9578         * MdiClient.cs: Size the scrollbars when resizing the window.
9579         - Resize the maximized windows when the client is resized
9580         * Form.cs: Make the child context available
9581         
9582 2005-11-23  Jackson Harper  <jackson@ximian.com>
9583
9584         * MdiChildContext.cs: Don't size windows if they are maximized.
9585
9586 2005-11-23  Mike Kestner  <mkestner@novell.com>
9587
9588         * ContextMenu.cs: use MenuTracker.
9589         * Control.cs: remove menu handle usage.
9590         * Form.cs: remove menu handle usage.
9591         * Hwnd.cs: remove menu handle usage.
9592         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
9593         motion and clicks to the new Tracker handlers.
9594         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
9595         and handle usage.
9596         * MenuAPI.cs: refactored to combine popup and menubar event handling.
9597         Killed the MENU and MENUITEM data types and associated collections
9598         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
9599         MenuTracker class that exposes the leftovers from the old MenuAPI
9600         static methods. Restructured Capture handling so that only one grab is
9601         done for the entire menu hierarchy instead of handing off grabs to
9602         submenus. Tracker now has an invisible control to Capture when active.
9603         * MenuItem.cs: add sizing accessors, kill Create
9604         and handle usage.
9605         * Theme.cs: remove menu handle and MENU(ITEM) usage.
9606         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
9607         MENU(ITEM). remove menu handle usage, use Menu directly.
9608         * XplatUIDriver.cs: remove menu handle usage.
9609         * XplatUIOSX.cs: remove menu handle usage.
9610         * XplatUIWin32.cs: remove menu handle usage.
9611         * XplatUIX11.cs: remove menu handle usage.
9612
9613 2005-11-22  Jackson Harper  <jackson@ximian.com>
9614
9615         * Hwnd.cs: Don't compute the menu size for
9616         DefaultClientRectangle.
9617         - Reenable menu sizes being computed for GetClienRectangle.
9618         * Form.cs: Remove comment of trechery
9619         
9620 2005-11-22  Jackson Harper  <jackson@ximian.com>
9621
9622         * Hwnd.cs: The adjustments for the menu bar are made when it is
9623         attached to the form.
9624
9625 2005-11-19  Jackson Harper  <jackson@ximian.com>
9626
9627         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
9628         (just like on windows).
9629
9630 2005-11-19  Jackson Harper  <jackson@ximian.com>
9631
9632         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
9633         use real buttons anymore because they are in non client area. The
9634         one TODO here is that I need to somehow invalidate a section of
9635         the non client area.
9636
9637 2005-11-18  Jackson Harper  <jackson@ximian.com>
9638
9639         * Control.cs: Put the enum check back in now that MDI doesnt have
9640         to use this to set border styles.
9641         * Form.cs: Only set mdi child windows borders if the handle has
9642         been created.
9643         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
9644         this directly on to the driver.
9645         - Get the move start position before adjusting for the titlebar
9646         height, this fixes the windows "skipping" when they are first
9647         moved.
9648
9649 2005-11-18  Jackson Harper  <jackson@ximian.com>
9650
9651         * XplatUIX11.cs: Just compute the mdi borders separately as they
9652         don't totally match up with normal form borders.
9653
9654 2005-11-18  Jackson Harper  <jackson@ximian.com>
9655
9656         * Control.cs: Set WS_ styles for borders, so that the driver does
9657         not have to retrieve the control instance to figure out what kind
9658         of borders it should have.
9659         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
9660         driver can know its an mdi child easily.
9661         * XplatUIX11.cs: Get the border styles and whether the window is
9662         MDI from the Styles and ExStyles params instead of having to get a
9663         control. This prevents a chicken and egg problem.       
9664
9665 2005-11-18  Jackson Harper  <jackson@ximian.com>
9666
9667         * MdiClient.cs: Fix typo so scrollbars show up correctly.
9668
9669 2005-11-18  Jackson Harper  <jackson@ximian.com>
9670
9671         * MdiClient.cs: Calculate when to add and remove scrollbars
9672         correctly.
9673         * MdiChildContext.cs: Adjust the y position to take the titlebar
9674         into account.
9675         - No height for FormBorderStyle.None
9676
9677 2005-11-18  Jackson Harper  <jackson@ximian.com>
9678
9679         * Control.cs: Allow non enum values to be used for
9680         InternalBorderStyle.  MDI does this to set a special border style.
9681         - New utility methods for converting points to/from client coords
9682         - Add the newly created control to the Controls collection before
9683         updating its style. This way UpdateStyle can walk the control
9684         heirarchy to find the control if needed.
9685         so I don't need to create a new Point object all the time.
9686         * Form.cs: Let MDI windows handle their border styles.
9687         - Set styles on MDI windows so the correct title style is derived.
9688         * MdiChildContext.cs: Move all the painting and window handling
9689         into the non client area.
9690         - Use correct sizing and put correct buttons on frames based on
9691         the FormBorderStyle.
9692         - Notify the mdi client about scrolling
9693         - Need to handle the buttons ourselves now, because they are all
9694         in non client areas and we can't add controls there.
9695         * MdiClient.cs: Halfway to scrolling, this implementation is
9696         somewhat broken though, we need to check to make sure other
9697         windows aren't causing scrolling before removing the bars. Also
9698         the bars need to be drawn on top, maybe I can switch implicit
9699         controls to be on top.
9700         * Hwnd.cs: caption_height and tool_caption_height are now
9701         properties of an hwnd, this way they can be set by the driver
9702         based on the type of window they are.  In X11 the window manager
9703         handles the decorations so caption_height is zero unless its an
9704         MDI window.
9705         - Add 3 pixel borders for MDI windows (0xFFFF).
9706         - Get rid of some code duplication, have DefaultClientRectanle
9707         just call GetClientRectangle.
9708         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
9709         Hwnd now.
9710         - Set border styles differently for mdi windows.
9711         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
9712         Hwnd now.
9713         
9714 2005-11-15  Mike Kestner  <mkestner@novell.com>
9715
9716         * Menu.cs: when adding an item to the collection, if item is already 
9717         parented, remove it from the parent.
9718
9719 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
9720
9721         * X11DesktopColors.cs: Added KDE support
9722
9723 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
9724
9725         * XplatUIWin32.cs: 
9726           - Clipboard methods now can translate Rtf format
9727           - No longer removes clipboard contents whenever a new format is added
9728             to allow placing multiple formats on the clipboard
9729         * Clipboard.cs: Clipboard now supports getting a IDataObject and
9730           will place all formats contained in it onto the clipboard. Also
9731           now cleans the clipboard before placing a new object onto it
9732         * RichTextBox.cs:
9733           - Implemented set_Rtf
9734           - Implemented set_SelectedRtf
9735           - Created InsertRTFFromStream() method to allow single code base
9736             for all properties and methods that insert RTF into document
9737           - Removed debug output
9738         * TextControl.cs:
9739           - Fixed Delete(int) to fix up line numbers
9740           - Fixed ReplaceSelection to combine start and end line
9741           - Fixed serious DeleteChars bug that would leave the document tree
9742             broken
9743           - Improved DumpTree with several logic checks to detect broken
9744             document trees
9745           - Removed debug lines
9746           - Fixed Caret.WordForward/WordBack moving code, now always also 
9747             updates caret.tag (fixes crash when word-selecting across tag
9748             boundaries via keyboard)
9749           - Added Insert() method for inserting multiline text into documents
9750           - Fixed DeleteChars() calculation errors that would cause a broken
9751             tag chain with multiple tag lines
9752           - DeleteChars() no longer crashes on multi-tag lines if not all tags
9753           - Split() no longer moves caret if split is at caret location
9754           - ReplaceSelection() now updates the cursor and re-displays it
9755           - ReplaceSelection() now uses new Insert() method to avoid code
9756             duplication
9757           - FormatText() can now handle formatting partial lines
9758         * TextBoxBase.cs:
9759           - Append now uses new TextControl.Insert() method (this avoids 
9760             duplicate code)
9761           - Implemented Ctrl-X (Cut) (
9762           - Implemented Ctrl-C (Copy)
9763           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
9764             regeneration when pasting text; roundtripping Copy&Paste within
9765             edit control still fails due to some calculation bugs in GenerateRTF)
9766           - The Delete key will now remove the current selection if it is visible
9767         * TextBox.cs: Removed debug lines
9768         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
9769           driver to be initialized and can't therefore be done via a static ctor)
9770
9771 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
9772
9773         * TextControl.cs: Added backend code for finding char arrays and strings
9774         * TextBoxBase.cs:
9775           - Added mouse wheel scroll support
9776           - Added support for VScroll and HScroll events
9777         * RichTextBox.cs:
9778           - Implemented all seven Find() variants
9779           - Implemented GetCharFromPosition()
9780           - Implemented GetCharIndexFromPosition()
9781           - Implemented GetLineFromIndex()
9782           - Implemented GetPositionFromCharIndex();
9783           - Implemented SaveFile for PlainText and UnicodeText
9784           - Fixed set_Font, now setting a new font applies that font to
9785             the whole document
9786           - Implemented generic Document to RTF converter
9787           - Implemented SaveFile for RichText format (still missing unicode
9788             conversion for non-ansi chars)
9789           - Implemented get_Rtf
9790           - Implemented get_SelectedRtf
9791
9792 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
9793
9794         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
9795           to allow any captures to be released before triggering OnClick. This
9796           way a click handler may capture the mouse without interference.
9797         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
9798           This way we send them even though X may not allow a grab (if the window
9799           isn't visible, for example)
9800
9801 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
9802
9803         * DataGridViewRowEventArgs.cs: DataGridView implementation
9804         * DataGridViewElement.cs: DataGridView implementation
9805         * DataGridViewComboBoxCell.cs: DataGridView implementation
9806         * DataGridViewDataErrorContexts.cs: DataGridView implementation
9807         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
9808         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
9809         * ImageLayout.cs: DataGridView implementation
9810         * DataGridViewComboBoxColumn.cs: DataGridView implementation
9811         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
9812         * DataGridViewSelectionMode.cs: DataGridView implementation
9813         * IDataGridViewEditingControl.cs: DataGridView implementation
9814         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
9815         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
9816         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
9817         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
9818         * DataGridViewColumnSortMode.cs: DataGridView implementation
9819         * DataGridView.cs: DataGridView implementation
9820         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
9821         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
9822         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
9823         * Padding.cs: DataGridView implementation
9824         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
9825         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
9826         * DataGridViewRowEventHandler.cs: DataGridView implementation
9827         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
9828         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
9829         * DataGridViewButtonCell.cs: DataGridView implementation
9830         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
9831         * DataGridViewEditMode.cs: DataGridView implementation
9832         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
9833         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
9834         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
9835         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
9836         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
9837         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
9838         * DataGridViewCellEventHandler.cs: DataGridView implementation
9839         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
9840         * DataGridViewCellStyleConverter.cs: DataGridView implementation
9841         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
9842         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
9843         * DataGridViewColumnEventArgs.cs: DataGridView implementation
9844         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
9845         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
9846         * QuestionEventArgs.cs: DataGridView implementation
9847         * IDataGridViewEditingCell.cs: DataGridView implementation
9848         * DataGridViewTriState.cs: DataGridView implementation
9849         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
9850         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
9851         * DataGridViewColumnCollection.cs: DataGridView implementation
9852         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
9853         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
9854         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
9855         * DataGridViewColumn.cs: DataGridView implementation
9856         * DataGridViewCellBorderStyle.cs: DataGridView implementation
9857         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
9858         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
9859         * DataGridViewRow.cs: DataGridView implementation
9860         * DataGridViewImageCellLayout.cs: DataGridView implementation
9861         * DataGridViewImageCell.cs: DataGridView implementation
9862         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
9863         * DataGridViewCheckBoxCell.cs: DataGridView implementation
9864         * DataGridViewHeaderCell.cs: DataGridView implementation
9865         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
9866         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
9867         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
9868         * DataGridViewTextBoxColumn.cs: DataGridView implementation
9869         * QuestionEventHandler.cs: DataGridView implementation
9870         * DataGridViewCellStyleScopes.cs: DataGridView implementation
9871         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
9872         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
9873         * DataGridViewCell.cs: DataGridView implementation
9874         * DataGridViewCellEventArgs.cs: DataGridView implementation
9875         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
9876         * DataGridViewCellStyle.cs: DataGridView implementation
9877         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
9878         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
9879         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
9880         * TextFormatFlags.cs: DataGridView implementation
9881         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
9882         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
9883         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
9884         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
9885         * DataGridViewButtonColumn.cs: DataGridView implementation
9886         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
9887         * HandledMouseEventArgs.cs: DataGridView implementation
9888         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
9889         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
9890         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
9891         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
9892         * DataGridViewRowCollection.cs: DataGridView implementation
9893         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
9894         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
9895         * DataGridViewHitTestType.cs: DataGridView implementation
9896         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
9897         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
9898         * DataGridViewColumnEventHandler.cs: DataGridView implementation
9899         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
9900         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
9901         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
9902         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
9903         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
9904         * DataGridViewContentAlignment.cs: DataGridView implementation
9905         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
9906         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
9907         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
9908         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
9909         * DataGridViewPaintParts.cs: DataGridView implementation
9910         * DataGridViewCellCollection.cs: DataGridView implementation
9911         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
9912         * DataGridViewImageColumn.cs: DataGridView implementation
9913         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
9914         * DataGridViewElementStates.cs: DataGridView implementation
9915         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
9916         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
9917         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
9918         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
9919         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
9920         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
9921         * DataGridViewRowHeaderCell.cs: DataGridView implementation
9922         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
9923         * DataGridViewTextBoxCell.cs: DataGridView implementation
9924         * DataGridViewBand.cs: DataGridView implementation
9925         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
9926         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
9927         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
9928         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
9929         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
9930         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
9931         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
9932         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
9933         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
9934         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
9935         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
9936
9937 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
9938
9939         * ThemeWin32Classic.cs: 
9940           - Draw the outside focus rectangle around buttons
9941           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
9942             doesn't use end caps for every dash of a line anymore. This
9943             workaround ignores the forecolor.
9944
9945 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
9946
9947         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
9948           endian safe.
9949
9950 2005-11-07  Jackson Harper  <jackson@ximian.com>
9951
9952         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
9953
9954 2005-11-07  Jackson Harper  <jackson@ximian.com>
9955
9956         * ScrollableControl.cs: Calculate the maximum and change vars
9957         (more) correctly so that scrollbars appear as a sensible size.
9958
9959 2005-11-04  Jackson Harper  <jackson@ximian.com>
9960
9961         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
9962         collection.
9963         * TreeView.cs: When the tree is sorted null out the top_node so
9964         that it is recalculated.
9965         - Use dotted lines instead of dashed lines to match MS better.
9966
9967 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
9968
9969         * ListView.cs: 
9970           - Implements key search for items. Useful when browsing files with FileDialog
9971           - When changing view mode or when clear the items reset scrollbar positions
9972
9973 2005-11-04  Jackson Harper  <jackson@ximian.com>
9974
9975         * CurrencyManager.cs: Implement the MetaDataChanged event, the
9976         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
9977         as to what the method may do as there is no real way of creating a
9978         derived CurrencyManager and calling the method. 
9979
9980 2005-11-03  Jackson Harper  <jackson@ximian.com>
9981
9982         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
9983         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
9984         method which seems to just be used internally to refresh the tabs.
9985
9986 2005-11-03  Jackson Harper  <jackson@ximian.com>
9987
9988         * TabControl.cs: Implement the remove method. Fix some broken
9989         comments.
9990
9991 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
9992
9993         * DateTimePicker.cs:
9994           - Added missing DateTimePickerAccessibleObject class
9995           - Added missing events
9996           - Added OnFontChanged method
9997         * Form.cs: Added missing attributes
9998         * TreeView.cs: Added missing attributes
9999
10000 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
10001
10002         * GridItemCollection.cs: Fix signatures
10003
10004 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
10005
10006         * XplatUI.cs: Updated build rev/date
10007         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
10008           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
10009         * Application.cs: Trigger context-specific ExitThread events
10010
10011 2005-11-03  Jackson Harper  <jackson@ximian.com>
10012
10013         * Menu.cs:
10014         * MainMenu.cs:
10015         * GridTableStylesCollection.cs:
10016         * Timer.cs:
10017         * TabPage.cs:
10018         * HelpProvider.cs:
10019         * StatusBar.cs:
10020         * MonthCalendar.cs: Signature fixes
10021
10022 2005-11-03  Jackson Harper  <jackson@ximian.com>
10023
10024         * TreeNodeCollection.cs: Remove should not be virtual.
10025         * TreeView.cs: Implement the last of the missing methods.
10026
10027 2005-11-03  Jackson Harper  <jackson@ximian.com>
10028
10029         * TreeNodeConverter.cs: Implement to get off my class-status back.
10030
10031 2005-11-03  Jackson Harper  <jackson@ximian.com>
10032
10033         * TreeView.cs: Hookup the bits for drag and drop.
10034         * TreeNode.cs: Don't cache the tree_view or index anymore, now
10035         that nodes can be moved from tree to tree easily this just causes
10036         all sorts of problems.
10037         * TreeNodeCollection: Don't need to give treenodes an index and
10038         treeview anymore when they are added, these are computed on the
10039         fly. Also make sure to remove a node before its added.
10040
10041 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
10042
10043         * TextControl.cs:
10044           - Added CaretSelection enum
10045           - Added comparison methods to Marker struct, makes selection code
10046             more readable
10047           - Added SelectionStart and SelectionEnd as 'moveable' location for
10048             the CaretDirection enum and handler
10049           - Added selection_prev variable to track optimized invalidation for
10050             word and line selection
10051           - Added SelectionVisible property (returns true if there is a valid 
10052             selection)
10053           - Switched CaretHasFocus to only display the caret if there is no
10054             visible selection
10055           - Avoiding StringBuilder.ToString to retrieve a single char, instead
10056             using the direct character index; should be much faster
10057           - Added various conditional debug statements
10058           - Fixed invalidation calculation for selection ranges
10059           - Added ExpandSelection() method to support word and line selection
10060           - Switched SetSelectionToCaret to use new Marker compare overloads
10061           - Added central IsWordSeparator() method to determine word 
10062             separators/whitespace and FindWordSeparator() to streamline common
10063             usage of IsWordSeparator()
10064         * TextBoxBase.cs:
10065           - Removed unneeded grabbed variable, it was just mirroring
10066             Control.Capture
10067           - No longer firing OnTextChanged event when Text setter is called,
10068             since the base will fire the event for us
10069           - Added handling of Ctrl-Up/Down selection
10070           - Added handling of Shift-Cursorkey selection
10071           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
10072             words
10073           - Added handling of Shift and Ctrl-Shift-Home/End selection
10074           - Removed some debug output
10075           - Added handling for single/double/tripple-click to place caret/
10076             select word/select line respectively (Fixes bug #76031)
10077           - Added support for drag expansion of word/line selection
10078         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
10079           current selection
10080
10081 2005-11-02  Jackson Harper  <jackson@ximian.com>
10082
10083         * X11Dnd.cs: If the drag is going to and from a MWF window just
10084         copy the data instead of sending it out through the X Selection
10085         mechanism.
10086
10087 2005-11-02  Jackson Harper  <jackson@ximian.com>
10088
10089         * X11Dnd.cs:
10090         * XplatUIX11.cs: When in a drag we don't want motion notify
10091         messages to get passed on to the other controls. This prevents
10092         mouse move messages from showing up in the drag source.
10093
10094 2005-11-02  Jackson Harper  <jackson@ximian.com>
10095
10096         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
10097         the correct button is release to end a drag.
10098         * XplatUIX11.cs: Make the button state internal so the drag system
10099         can access it.  Dragging needs to know about all button releases,
10100         not just left button.
10101
10102 2005-11-02  Miguel de Icaza  <miguel@novell.com>
10103
10104         * Form.cs (Icon): If the icon is null, reset the icon to the
10105         default value. 
10106
10107         * Cursor.cs: When writing the AND-mask bitmap do not include the
10108         number of colors, but hardcode those to two (black and white),
10109         fixes the loading of color cursors (Paint Dot Net).
10110
10111         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
10112         turn off autoscaling.
10113
10114         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
10115
10116 2005-11-02  Jackson Harper  <jackson@ximian.com>
10117
10118         * X11Dnd.cs: Make sure to send a status message if the pointer
10119         enters a control that can not accept a drop, otherwise the cursor
10120         isn't updated correctly. Also tried to compress the lines of code
10121         a bit.
10122
10123 2005-11-02  Jackson Harper  <jackson@ximian.com>
10124
10125         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
10126         set actions correctly.  This isn't perfect as XDND and win32 have
10127         some differences on how you allow actions. I'll clear this up by
10128         adding a path for drag from MWF to MWF windows.
10129         * XplatUIX11.cs: Hook into the dnd system.
10130
10131 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
10132
10133         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
10134         previously shown but they are no longer need it. Very obvious when 
10135         browsing files with FileDialog.
10136
10137 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
10138
10139         * Control.cs: We always need to call OnPaintBackground. We pretty much
10140           ignore AllPaintingInWmPaint and always do the painting there, whether 
10141           it's set or not, since we always ignore the WM_ERASEBKGND message 
10142           (which we don't generate on X11). This fixes #76616.
10143         * Panel.cs: Removed unneeded background painting. This happens properly
10144           in Control.cs already
10145
10146 2005-10-31  Mike Kestner  <mkestner@novell.com>
10147
10148         * Menu.cs: Add items to collection before setting their index.
10149         * MenuItem.cs : add range checking with ArgumentException like MS.
10150         [Fixes #76510]
10151
10152 2005-10-31  Jackson Harper  <jackson@ximian.com>
10153
10154         * ListBox.cs: Invalidate if the area is visible at all not just
10155         contained in the visible rect. Fixes unselection of semi visible
10156         items.
10157
10158 2005-10-31  Jackson Harper  <jackson@ximian.com>
10159
10160         * Control.cs: Consistently name the dnd methods. Make them
10161         internal so we can override them to match some MS behavoir
10162         internally.
10163         * Win32DnD.cs: Use the new consistent names.
10164
10165 2005-10-31  Jackson Harper  <jackson@ximian.com>
10166
10167         * TreeView.cs: Don't draw the selected node when we lose focus.
10168
10169 2005-10-31  Jackson Harper  <jackson@ximian.com>
10170
10171         * X11Dnd.cs: We still need to reset the state even though a full
10172         reset isn't being done, otherwise status's still get sent all over
10173         the place.
10174
10175 2005-10-31  Jackson Harper  <jackson@ximian.com>
10176
10177         * Control.cs: Make the dnd_aware flag internal so the dnd
10178         subsystem can check it. Catch exceptions thrown in dnd handlers to
10179         match MS behavoir.
10180         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
10181         * X11Dnd.cs: Handle null data in the converters. Set the XDND
10182         version when sending a XdndEnter. Use the control/hwnd dnd_aware
10183         flags to reduce the number of dnd enters/status's sent.
10184
10185 2005-10-31  Jackson Harper  <jackson@ximian.com>
10186
10187         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
10188
10189 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
10190
10191         * PictureBox.cs: Fixes 76512
10192
10193 2005-10-28  Jackson Harper  <jackson@ximian.com>
10194
10195         * X11Dnd.cs: Early implementation to support winforms being a drag
10196         source for data on X11. Also restructured the converters so they
10197         can go both ways now.
10198         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
10199         
10200 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
10201
10202         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
10203           clipboard requests
10204
10205 2005-10-27  Jackson Harper  <jackson@ximian.com>
10206
10207         * TreeNode.cs: Implement serialization so my DnD examples will work.
10208
10209 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
10210
10211         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
10212           TreeView.cs: Don't dispose objects that are not owned.
10213           
10214 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
10215
10216         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
10217           should retrieve the current cursor and report that, but XplatUI
10218           doesn't (yet) have an interface for that (and I'm not sure I even
10219           can, on X11)
10220         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
10221           until any message loop processing is done (and the WM_SETCURSOR
10222           replaces the cursor to the proper one)
10223         * XplatUIX11.cs: 
10224           - Fixed override behaviour, we can't set the cursor globally on X11, 
10225             just for our windows.
10226           - Invalidating the System.Drawing X11 display handle when we are
10227             shutting down
10228         * Control.cs: Fix to make csc happy
10229
10230 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
10231
10232         * TextBoxBase.cs: 
10233           - get_Text: Add last line (without trailing newline) to returned
10234             value (Fixes 76212)
10235           - get_TextLength: Count last line in returned length
10236           - ToString: Call Text property instead of duplicating code
10237
10238 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
10239
10240         * ImageList.cs: Dispose ImageAttributes objects.
10241
10242 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
10243
10244         * ImageList.cs: Use attribute constructors with less arguments where
10245           possible.
10246
10247 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
10248
10249         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
10250           Use typeof instead of strings when assembly is referenced. Added
10251           some more comments.
10252
10253 2005-10-21  Jackson Harper  <jackson@ximian.com>
10254
10255         * ListView.cs: Raise a double click event. Also tried to somewhat
10256         fix when the selectedindexchanged event is raised. Its still
10257         broken though.
10258
10259 2005-10-21  Jackson Harper  <jackson@ximian.com>
10260
10261         * TreeView.cs: New method to invalidate the plus minus area of a
10262         node without invalidating the whole node (maybe this can be used
10263         in some more places).
10264         * TreeNodeCollection.cs: When adding to an empty node we need to
10265         invalidate its plus minus area so the little block shows up.
10266         
10267 2005-10-21  Jackson Harper  <jackson@ximian.com>
10268
10269         * TreeView.cs: Make sure that when we invalidate a node the bounds
10270         are big enough to cover the selected box and the focus
10271         rectangle. Use a different colour for the lines connecting nodes
10272         so they show up with all themes.
10273
10274 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
10275
10276         * NativeWindow.cs: Don't call anything that could call into the driver,
10277           we might be on a different thread.
10278
10279 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
10280
10281         * Control.cs(Dispose): Since Dispose might run on a different thread,
10282           make sure that we call methods that could call into the driver via
10283           invoke, to avoid thread issues
10284
10285 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
10286
10287         * XplatUI.cs: Removed finalizer
10288         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
10289           not allowing to be called on the finalizer thread.
10290
10291 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
10292
10293         * ImageList.cs:
10294           - Reverted r51889 and r51891.
10295           - Added ImageListItem class that stores unmodified image items and image
10296             properties required to create list images until handle is created.
10297           - Added AddItem and moved image creation logic to AddItemInternal.
10298           - Added CreateHandle method that creates images based on unmodified items.
10299           - Added DestroyHandle that changes state to store unmodified items.
10300           - Add and AddStrip methods no more create handle.
10301           - ReduceColorDepth has no return value.
10302           - Dispose destroys handle.
10303           - Modified other methods to reflect the above changes.
10304           - Implemented key support.
10305           - Added profile 2.0 members and attributes.
10306           - Added private Reset and ShouldSerialize methods that provide the same
10307             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
10308             them as they are private.
10309           - Added some more comments about implementation details.
10310
10311 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
10312
10313         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
10314
10315 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
10316
10317         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
10318
10319 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
10320
10321         * DataGridDrawingLogic.cs: Fixes column hit calcultation
10322         * DataGridColumnStyle.cs: Remove debug message
10323
10324 2005-10-20  Jackson Harper  <jackson@ximian.com>
10325
10326         * TreeView.cs: We can always get input keys regardless of whether
10327         or not editing is enabled. They are used for navigation.
10328
10329 2005-10-20  Jackson Harper  <jackson@ximian.com>
10330
10331         * TreeNode.cs: Use the viewport rect for determining if a node
10332         needs to be moved for visibility. Don't use Begin/End edit. This
10333         calls a full refresh when its done.
10334         * TreeView.cs: New SetBottom works correctly.  Make the viewport
10335         rect property internal so the treenodes can see it. When clicking
10336         on a node we need to ensure that its visible because it might just
10337         be partly visible when clicked.
10338
10339 2005-10-20  Jackson Harper  <jackson@ximian.com>
10340
10341         * TreeNodeCollection.cs: Remove debug code.
10342
10343 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
10344
10345         * Datagrid.cs: Implements column sorting in Datagrid
10346         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
10347
10348 2005-10-20  Jackson Harper  <jackson@ximian.com>
10349
10350         * TreeNodeCollection.cs: Remove items properly. Update the correct
10351         area after removing them.
10352
10353 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
10354
10355         * Datagrid.cs: Should not call base.OnPaintBackground
10356
10357 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
10358
10359         * XplatUIX11.cs (GetMessage):
10360           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
10361             window instead of client window
10362           - Now properly calculates NC_xBUTTONUP message coordinates
10363           - ScreenToMenu now properly calculates it's coordinates of whole 
10364             window, since menus are in the whole window, not in the client
10365             window
10366           - Added WholeToScreen coordinate translation method
10367
10368 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
10369
10370         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
10371           want to return a message, loop back to the beginning of the function
10372           and grab the next real message to process instead.
10373
10374 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
10375
10376         * Splitter.cs: Properly set limits if no filler control is used
10377
10378 2005-10-19  Jackson Harper  <jackson@ximian.com>
10379
10380         * ColorDialog.cs: Don't show the help button if it is not enabled
10381         instead of disabling it (this is what MS does). Don't create the
10382         panel until the dialog is run, otherwise the vars (such as
10383         ShowHelp) are not set yet.
10384
10385 2005-10-19  Jackson Harper  <jackson@ximian.com>
10386
10387         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
10388         are reduced when adding nodes.
10389         * TreeNode.cs:
10390         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
10391         tree.
10392         
10393 2005-10-19  Jackson Harper  <jackson@ximian.com>
10394
10395         * FolderBrowserDialog.cs: End editing our treeview so the window
10396         actually gets refreshed.
10397
10398 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
10399
10400         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
10401           Obsoleted handling of WM_ERASEBKGND, now always draws our background
10402           inside of WM_PAINT
10403
10404 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
10405
10406         * MenuAPI.cs: Returns after Hidding window
10407         * XplatUIX11.cs: Added TODO found while debugging menu issues
10408
10409 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
10410
10411         * XplatUIX11.cs: Do not re-map the whole window when it's size
10412           becomes non-zero unless it's supposed to be actually visible
10413
10414 2005-10-18  Jackson Harper  <jackson@ximian.com>
10415
10416         * TreeView.cs: We don't need to keep a count anymore.
10417         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
10418         use the Grow method.
10419
10420 2005-10-18  Jackson Harper  <jackson@ximian.com>
10421
10422         * TreeNodeCollection.cs: Insert is not supported on arrays, so
10423         implement it manually here.
10424
10425 2005-10-18  Jackson Harper  <jackson@ximian.com>
10426
10427         * ImageList.cs: Dont kill the list when the colour depth is
10428         changed, just change the colour depth of all the images.
10429         - Same goes for setting the image size. Just resize them all
10430         instead of killing the list softly.
10431
10432 2005-10-18  Jackson Harper  <jackson@ximian.com>
10433
10434         * Control.cs: Don't invalidate empty rectangles.
10435
10436 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
10437
10438         * ListViewItem.cs:
10439           - Adds checked item to the Checked/Item lists (where empty before)
10440           - Do not add items to the Selected lists if they are already present
10441         * ListView.cs:
10442           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
10443           - When deleting items make sure that we delete them for the Selected
10444           and Checked list also.
10445
10446 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
10447
10448         * Label.cs: Dispose objects no longer used
10449         * ThemeWin32Classic.cs: Dispose objects no longer used
10450
10451 2005-10-18  Jackson Harper  <jackson@ximian.com>
10452
10453         * TabControl.cs: Don't refresh the whole control when the tabs are
10454         scrolled, we just need to refresh the tab area.
10455
10456 2005-10-17  Jackson Harper  <jackson@ximian.com>
10457
10458         * XplatUIX11.cs: Compress code a little bit. Only calculate the
10459         after handle when we need it.
10460
10461 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
10462
10463         * Control.cs: When the parent size changes, recalculate anchor 
10464           positions. Partial fix for #76462
10465
10466 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
10467
10468         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
10469           drawn. Fixes #76462
10470
10471 2005-10-17  Jackson Harper  <jackson@ximian.com>
10472
10473         * MonthCalendar.cs: Don't create the numeric up down until our
10474         handle is created. Otherwise our handle is created in the
10475         constructor and we don't know if we are a WS_CHILD or WS_POPUP
10476         yet.
10477
10478 2005-10-17  Jackson Harper  <jackson@ximian.com>
10479
10480         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
10481         correctly.
10482
10483 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
10484         * TreeNode.cs : small logical fix (was using local var instead of field)
10485         
10486 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
10487
10488         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
10489
10490 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
10491
10492         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
10493
10494 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
10495
10496         * Control.cs: 
10497           - Re-implemented anchoring code. My first version was really broken.
10498             This fixes bug #76033. Unlike the previous implementation we will
10499             no longer have round errors since all numbers are calculated from
10500             scratch every time. Removed various anchor-related obsolete vars.
10501           - InitLayout no longer causes layout event firing and layout to be 
10502             performed
10503
10504 2005-10-16  Jackson Harper  <jackson@ximian.com>
10505
10506         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
10507         which was broken).
10508
10509 2005-10-16  Jackson Harper  <jackson@ximian.com>
10510
10511         * TabControl.cs: Remove debug code.
10512
10513 2005-10-16  Jackson Harper  <jackson@ximian.com>
10514
10515         * XEventQueue.cs: Increase the default queue size (very simple
10516         apps needed to grow the queue).
10517         * Hwnd.cs: No finalizer so we don't need to suppress
10518         finalization. Compute the invalid area manually so a new rectangle
10519         does not newto be created.
10520         * ScrollableControl.cs: Don't set any params (otherwise visibility
10521         isn't set correctly).
10522         * MdiChildContext.cs: New constructor takes the mdi parent so it
10523         doesn't have to be computed and avoids a crash on windows. Draw
10524         the window icon properly, and allow the text to be seen.
10525         * Form.cs: Use new MdiChildContext constructor. Make sure the
10526         child context isn't null in wndproc.
10527         * TabControl.cs: Don't set focus, this is muddling keyboard
10528         behavoir. Expand the tab rows when a window size increase will
10529         allow extra tabs to be seen. Don't allow tabs smaller than the
10530         width of a window to be scrolled out of view.
10531         * TreeNode.cs:
10532         * TreeView.cs: Use measure string to calculate a nodes width, the
10533         width is cached and only updated when the text or the font is
10534         changed. Don't check for expand/collapse clicks on the first level
10535         nodes if root lines are disabled.
10536         
10537 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
10538
10539         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
10540
10541 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
10542
10543         * DataGridBoolColumn.cs: fixes warning
10544
10545 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
10546
10547         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
10548         to match more to match more precisely the MS Net behavior
10549
10550 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
10551
10552         * Hwnd.cs: Added field to track if window is mapped
10553         * XplatUIX11.cs: 
10554           - Unmap windows if they become 0-size, re-map when 
10555             they are >0 again; fixes #76035
10556           - Re-set our error handler after initializing X11Desktop
10557             to override any error handlers Gtk or whatever was called
10558             may have set.
10559
10560 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
10561
10562         * CheckedListBox.cs: Removed unused vars
10563         * ListView.cs: Fixed signatures
10564         * RichTextBox.cs: Removed unused vars
10565         * TextBoxBase.cs: Removed unused vars
10566         * XplatUIWin32.cs: Removed unused vars
10567         * XplatUIX11.cs: Removed unused vars
10568         * XplatUI.cs: Updated version and date to latest published
10569
10570 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
10571
10572         * Cursor.cs: Added private .ctor to work around a bug in
10573           resourceset (Thanks to Geoff Norton for the help on this)
10574         * SplitterEventArgs.cs: Made fields accessible so we don't
10575           waste boatloads of objects and can reuse the same one
10576           in Splitter
10577         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
10578           any captions and borders when generating screen coordinates
10579         * Splitter.cs: Reimplemented control, now fully complete, uses
10580           rubberband drawing, supports and obeys all properties, has
10581           proper cursors
10582
10583 2005-10-13  Miguel de Icaza  <miguel@novell.com>
10584
10585         * Form.cs (Form): Setup default values for autoscale and
10586         autoscale_base_size;  Make these instance variables, not static
10587         variables. 
10588
10589         (OnLoad): on the first load, adjust the size of the form.
10590
10591 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
10592
10593         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
10594           width argument to DrawReversibleRectangle()
10595         * XplatUIWin32.cs, XplatUIX11.cs: 
10596           - Implemented width for DrawReversibleRectangle()
10597           - Added logic to DrawReversibleRectangle that recognizes a zero
10598             width or height and only draws a line in that situation
10599         
10600 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
10601
10602         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
10603         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
10604         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
10605           method (it uses our FosterParent window to get a graphics context)
10606
10607 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
10608
10609         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
10610           and SetWindowBackground methods
10611         * Control.cs:
10612           - Setting proper ControlStyles
10613           - We no longer call XplatUI.SetWindowBackground and XplatUI.
10614             EraseWindowBackground, instead we draw the window background
10615             ourselves in PaintControlBackground. This behaviour is
10616             required to match MS, where, when OnPaintBackground is not
10617             called, the background is not drawn.
10618           - Removed unneeded Refresh() in set_Text
10619         * Hwnd.cs: Dropped the ErasePending support. No longer needed
10620         * XplatUIX11.cs:
10621           - Created DeriveStyles method to translate from CreateParams to
10622             FormBorderStyle and TitleStyle, also handles BorderStyle (which
10623             matches FormBorderStyle enum values)
10624           - Consolidated SetHwndStyles and CalculateWindowRect border/title
10625             style calculations into single DeriveStyles method
10626           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
10627             from redrawing the whole window on any resize or expose.
10628           - Fixed CreateWindow usage of SetWindowValuemask. Before not
10629             all styles were applied to our whole/client window appropriately
10630           - Removed EraseWindowBackground() and SetWindowBackground() methods
10631           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
10632             no longer clear/redraw the background through X
10633           - Removed handling of erase_pending bit, we have no use for it (or
10634             so it seems)
10635         * XplatUIOSX.cs:
10636           - Removed generation and handling of WM_ERASEBKGND message
10637           - Removed EraseWindowBackground() and SetWindowBackground() methods
10638           - Removed handling of hwnd.ErasePending flag
10639         * XplatUIWin32.cs:
10640           - Removed EraseWindowBackground() and SetWindowBackground() methods
10641           - We no longer call EraseWindowBackground on PaintEventStart, we 
10642             ignore the fErase flag, erasing is handled in Control in the
10643             background handler
10644         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
10645           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
10646           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
10647           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
10648           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
10649           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
10650           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
10651
10652 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
10653
10654         * PropertyGrids.cs: Get sub properties
10655         * PropertyGridView.cs: Fix drawing code
10656
10657 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
10658
10659         * ListBox.cs: Fixes 76383
10660
10661 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
10662
10663         * DataGridTextBoxColumn.cs: Sets location and size before attachment
10664         * ThemeWin32Classic.cs: Fixes border drawing and calculations
10665         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
10666
10667
10668 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
10669
10670         * ComboBox.cs: Fixes border drawing
10671
10672 2005-10-10  Miguel de Icaza  <miguel@novell.com>
10673
10674         * MimeIcon.cs: Ignore errors if the file can not be read.
10675
10676 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
10677
10678         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
10679          - Fixed border calculations
10680          - Fixed horizontal scrolling in single column listboxes
10681          - Fixed drawing issues
10682
10683 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
10684
10685         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
10686           FormBorderStyle enum
10687         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
10688           code to determine FormBorderStyles from CreateParams
10689         * Form.cs:
10690           - Fixed bug where we'd set the wrong window styles if we were
10691             not creating an MDI window
10692           - Added call to XplatUI.SetBorderStyle when form borders are set
10693         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
10694         * Hwnd.cs:
10695           - Removed obsolete edge style
10696           - Switched from BorderStyle to FormBorderStyle
10697         
10698 2005-10-10  Jackson Harper  <jackson@ximian.com>
10699
10700         * Form.cs: Use the property to get the window handle instead of
10701         accessing it directly. Prevents a null reference exception.
10702
10703 2005-10-10  Jackson Harper  <jackson@ximian.com>
10704
10705         * TreeView.cs: Don't adjust the rect given to DrawString now that
10706         our libgdiplus draws correctly.
10707
10708 2005-10-08  Jackson Harper  <jackson@ximian.com>
10709
10710         * TreeView.cs: Don't try to find the clicked on node if there are
10711         no nodes in the tree.
10712
10713 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
10714
10715         * RichTextBox.cs:
10716
10717           restore
10718
10719 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
10720
10721         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
10722           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
10723           ErrorProvider.cs:
10724           Use ResPool for brushes and dispose System.Drawing objects that
10725           are not used anymore.
10726
10727 2005-10-07  Jackson Harper  <jackson@ximian.com>
10728
10729         * MdiChildContext.cs: Use the new borders instead of drawing them
10730         ourselves.
10731
10732 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
10733
10734         * Calling UpdateBounds after changing the window's BorderStyle 
10735         since the style can change the ClientSize
10736
10737 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
10738
10739         * Control.cs: Made PaintControlBackground virtual
10740         * Panel.cs: Overriding PaintControlBackground instead of using paint
10741           event; paint event method was interfering with 'real' users of the
10742           event.
10743
10744 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
10745
10746         * ThemeWin32Classic.cs: remove border drawing since it is handled
10747         by the base control class now and was causing double border drawing.
10748
10749 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
10750
10751         * Panel.cs: Redraw our background on paint. Not a pretty solution,
10752           but it does seem to match MS behaviour. This fixes bug #75324
10753
10754 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
10755
10756         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
10757           somewhat hackish looking
10758
10759 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
10760
10761         * TextBoxBase.cs:
10762           - We now accept Enter even if AcceptEnter is false, if the containing
10763             form does not have an AcceptButton configured (fixes bug #76355)
10764           - Calculations are now fixed to no longer use Width/Height, but
10765             ClientSize.Width/Height, since we now support borders (this was
10766             a result of fixing borders and therefore bug #76166)
10767           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
10768             true (fixes bug #76354)
10769         
10770 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
10771
10772         * Control.cs: 
10773           - Defaulting BorderStyle and setting it in XplatUI when our window 
10774             is created
10775           - Added enum check to InternalBorderStyle setter
10776         * XplatUIX11.cs: 
10777           - Added drawing of window borders
10778           - Now properly calculates WM decorations offset for toplevel 
10779             windows (fixes bug #74763)
10780         * XplatUIWin32.cs: 
10781           - Implemented BorderStyles for windows (we're letting win32 draw 
10782             the border for us)
10783           - Fixed the signature for SetWindowLong
10784         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
10785           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
10786           setting borders
10787         * UpDownBase.cs: Remove drawing of borders, this is handled by
10788           the driver, outside the client area
10789         * ListView.cs: Removed bogus border calculations. The control should
10790           be oblivious to borders, since those are not part of the client
10791           area. 
10792         * X11DesktopColors.cs: Commented out (currently) unneeded variables
10793         * ThemeWin32Classic.cs: Removed border calculations from ListView 
10794           drawing code
10795
10796 2005-10-06  Jackson Harper  <jackson@ximian.com>
10797
10798         * MdiChildContext.cs: Clear out the old virtual position remove
10799         all the unneeded calls to CreateGraphics.
10800
10801 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
10802
10803         * TextControl.cs: Use proper color for highlighted text; fixes #76350
10804
10805 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
10806
10807         * Form.cs: 
10808           - Added loading and setting of our new default icon
10809           - Only set icon if window is already created
10810
10811 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
10812
10813         * Label.cs:
10814           - Do not explicitly set the foreground and background colors, to
10815             allow inheriting from parents (fixes #76302)
10816           - Use Control's InternalBorderStyle property to deal with borders
10817
10818 2005-10-06  Jackson Harper  <jackson@ximian.com>
10819
10820         * MdiChildContext.cs: Use the new xplatui function to draw a
10821         reversible rect.
10822
10823 2005-10-06  Jackson Harper  <jackson@ximian.com>
10824
10825         * Form.cs: Add the parent before creating the child context cause
10826         we need the parent when setting up the child.
10827
10828 2005-10-06  Jackson Harper  <jackson@ximian.com>
10829
10830         * FolderBrowserDialog.cs: redo the tree population code so a
10831         second thread isn't used. Should be a lot faster and more stable
10832         now.
10833
10834 2005-10-05  Jackson Harper  <jackson@ximian.com>
10835
10836         * TreeView.cs: There are no expand/collapse boxes if the node has
10837         no children.
10838
10839 2005-10-05  Jackson Harper  <jackson@ximian.com>
10840
10841         * X11DesktopColors.cs: Get menu colours for the gtk theme.
10842
10843 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
10844
10845         * FileDialog.cs: Fix InitialDirectory
10846
10847 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
10848
10849         * ComboBox.cs:
10850                 - Fixes changing between styles
10851                 - Fixes simple mode
10852                 - Fixes last item crashing when navigating with keyboard
10853
10854 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
10855
10856         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
10857
10858 2005-10-05  Jackson Harper  <jackson@ximian.com>
10859
10860         * TreeView.cs: If updating the root node do a full refresh.
10861         * TreeNode.cs: The root node should be expanded by default. Also
10862         added a utility prop to tell if we are the root node.
10863         * TreeNodeCollection.cs: Only refresh if the node we are being
10864         added to is expanded. Also added a comment on a potential
10865         optimization.
10866         
10867 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
10868
10869         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
10870           in dispose method. Fixes #76330
10871
10872 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
10873
10874         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
10875
10876                 - Implements vertical and horizontal scrolling using XplatUI
10877                 - Fixes keyboard navagation
10878                 - Fixes EnsureVisible
10879                 - Drawing fixes
10880                 - Handles and draws focus properly
10881
10882
10883 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
10884
10885         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
10886           Create handle. NET_2_0: Destroy handle when value is null.
10887
10888 2005-10-03  Jackson Harper  <jackson@ximian.com>
10889
10890         * ScrollBar.cs: My last scrollbar patch was broken. This is a
10891         revert and a new patch to prevent the thumb from refreshing so
10892         much.
10893
10894 2005-10-02  Jackson Harper  <jackson@ximian.com>
10895
10896         * ScrollBar.cs: Don't update position if it hasn't actually
10897         changed. This occurs when you hold down the increment/decrement
10898         buttons and the thumb gets to the max/min.
10899
10900 2005-10-01  Jackson Harper  <jackson@ximian.com>
10901
10902         * Form.cs:
10903         * MdiChildContext.cs:
10904         * MdiClient.cs: Implement ActiveMdiChild in Form.
10905
10906 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
10907
10908         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
10909
10910 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
10911
10912         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
10913           be found
10914
10915 2005-09-30  Jackson Harper  <jackson@ximian.com>
10916
10917         * ListBox.cs: Don't do a full refresh unless some data has
10918         actually changed.
10919
10920 2005-09-30  Jackson Harper  <jackson@ximian.com>
10921
10922         * TreeView.cs: Make sure that the checkboxes size is factored in
10923         even when not visible.
10924
10925 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
10926
10927         * FileDialog.cs: Fix Jordi's build break
10928
10929 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
10930
10931         * FileDialog.cs: 
10932                 - Use standard the Windows colours for the combobox as espected
10933                 - Dispose objects that use resouces when no longer need them
10934
10935 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
10936
10937         * X11DesktopColors.cs: Initial incomplete implementation
10938         * XplatUIX11.cs: Added call to initialize X11DesktopColors
10939
10940 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
10941
10942         * Theme.cs: 
10943           - Switched Theme color names to match the names defined in 
10944             System.Drawing.KnownColors. Life's hard enough, no need to make 
10945             it harder.
10946           - Added setters to all theme color properties so themes can set
10947             their color schemes. The setters also propagate the color changes
10948             to System.Drawing.KnownColors via reflection
10949         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
10950           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
10951           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
10952           use the new, more logical theme color names
10953         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
10954           post-NT colors
10955         * ThemeWin32Classic.cs:
10956           - Removed code to set the old classic Windows colors. Instead it
10957             now relies on the colors returned by System.Drawing.KnownColors
10958             which will be either modern static colors (Unix) or colors
10959             read from the user's configuration (Win32)
10960           - Updated to use the new, more logical theme color names
10961           - Switched DataGrid drawing code to use only Theme colors instead of
10962             a mix of System.Drawing.KnownColors and Theme colors
10963           - DrawFrameControl(): Removed code that fills the button area, the
10964             fill would overwrite any previous fill done by a control. This
10965             fixes bug #75338 
10966           - Added DrawReversibleRectangle() stub
10967         * ScrollableControl.cs: Set visible state to false when scrollbars
10968           are removed (pdn fix)
10969         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
10970           DrawReversibleRectangle() method to allow drawing primitive 
10971           'rubber bands'
10972         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
10973
10974 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
10975
10976         * ImageList.cs: Add(Icon): Create handle.
10977
10978 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
10979
10980         * ListView.cs:
10981         * ThemeWin32Classic.cs:
10982                 - Fixes detail mode
10983                 - Sets clippings
10984                 - Issues with drawing
10985
10986 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
10987
10988         * ImageList.cs: Moved RecreateHandle back to ImageList as event
10989           source has to be the ImageList.
10990
10991 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
10992
10993         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
10994
10995 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
10996
10997         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
10998
10999 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11000
11001         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
11002
11003 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
11004         * GridItem.cs: Fixed TODOs
11005         * GridItemCollection.cs: Added ICollection interface
11006
11007 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11008
11009         * ImageList.cs: Resize icons when needed.
11010
11011 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
11012
11013         * ListViewItem.cs
11014                 - Fixes GetBounds and returns on screen rects
11015         * ListView.cs:
11016                 - Fixes vertical and horzintal scrolling of items
11017         * ThemeWin32Classic.cs:
11018                 - Fixes drawing
11019                 
11020 2005-09-29  Raja R Harinath  <harinath@gmail.com>
11021
11022         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
11023
11024 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
11025
11026         * ImageList.cs: Added comments about handle creation. Moved Handle,
11027           HandleCreated and OnRecreateHandle implementations to ImageCollection.
11028           Handle is created in Add methods.
11029
11030 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
11031          
11032         * DataGridDrawingLogic.cs: 
11033                 - Takes rows into account on Colum calculations
11034                 - Returns the column when clickig
11035         * DataGrid.cs:
11036                 - Fixes default HitTestInfo values
11037                 - Fixes HitTestInfo.ToString
11038                 - Fixes ResetBackColor          
11039         
11040 2005-09-28  Jackson Harper  <jackson@ximian.com>
11041
11042         * MdiChildContext.cs: Obey rules for fixed sized windows (no
11043         sizing or cursor changes). Also added some temp code to draw the
11044         titlebars text (Makes dev a little easier).
11045
11046 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
11047
11048         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
11049
11050 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
11051          
11052         * ListBox.cs: Fixes bug 76253
11053
11054 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
11055
11056         * ImageList.cs: Added comments about the current implementation. Added
11057           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
11058           Format32bppArgb to preserve transparency and can use Graphics.FromImage
11059           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
11060           with Bitmap.LockBits for better performance. Revised the whole file to
11061           match MS.NET behaviour and provide better performance. Non-public
11062           interface members are calling public members even when they throw
11063           NotSupportedException for better maintainability. Moved ColorDepth,
11064           ImageSize, ImageStream and TransparentColor implementations to
11065           ImageCollection for better performance as these properties are not used
11066           by ImageList.
11067         * ImageListStreamer.cs: Added a new internal constructor that takes an
11068           ImageList.ImageCollection and serializes Images based on
11069           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
11070           match ImageList property name.
11071
11072 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
11073
11074         * ListBox.cs: Fixes IndexFromPoint for last item
11075
11076 2005-09-27  Jackson Harper  <jackson@ximian.com>
11077
11078         * Form.cs: Set the position of new mdi children correctly.
11079
11080 2005-09-27  Jackson Harper  <jackson@ximian.com>
11081
11082         * MdiClient.cs: New mdi children need to be added to the back of
11083         the controls collection so the zorder is set correctly. Also add a
11084         count of all the child windows that have been created.
11085
11086 2005-09-27  Jackson Harper  <jackson@ximian.com>
11087
11088         * Form.cs (CreateParams): Setup MDI forms correctly.
11089
11090 2005-09-27  Jackson Harper  <jackson@ximian.com>
11091
11092         * MdiChildContext.cs:
11093         * MonthCalendar.cs:
11094         * UpDownBase.cs:
11095         * ListBox.cs:
11096         * ListView.cs:
11097         * TextBoxBase.cs:
11098         * TreeView.cs:
11099         * ScrollableControl.cs:
11100         * ComboBox.cs: Add implicit controls using the new implict control
11101         functionality in ControlCollection. Also try to block multiple
11102         control add in a suspend/resume layout to save some cycles.
11103         
11104 2005-09-27  Jackson Harper  <jackson@ximian.com>
11105
11106         * Control.cs: Add functionality to the controls collection to add
11107         'implicit controls' these are controls that are created by the
11108         containing control but should not be exposed to the user. Such as
11109         scrollbars in the treeview.
11110         * Form.cs: The list var of the ControlsCollection is no longer
11111         available because of the potential of implicit controls getting
11112         ignored by someone accessing the list directly.
11113
11114 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
11115
11116         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
11117           loose it's parent. (Fixed bug introduced in r49103 when we added
11118           setting the child parent to null on Remove)
11119
11120 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
11121
11122         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
11123         * Splitter.cs: Added missing attributes for BorderStyle property.
11124         * TextBoxBase.cs: Marked Calculate* methods internal.
11125         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
11126         MS.NET.
11127
11128 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
11129          
11130         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
11131
11132 2005-09-25  Jackson Harper  <jackson@ximian.com>
11133
11134         * TreeView.cs: Update the node bounds correctly regardless of
11135         whether the node is visible.
11136
11137 2005-09-25  Jackson Harper  <jackson@ximian.com>
11138
11139         * ImageList.cs: Don't dispose the image after it is added to the
11140         image list. Only reformat images that need to be resized.
11141
11142 2005-09-25  Jackson Harper  <jackson@ximian.com>
11143
11144         * ImageList.cs: Don't set the format when changing the image.
11145
11146 2005-09-25  Jackson Harper  <jackson@ximian.com>
11147
11148         * TreeView.cs: We can't just assume the node has a font. Use the
11149         treeviews font if no node font is available.
11150
11151 2005-09-25  Jackson Harper  <jackson@ximian.com>
11152
11153         * TreeView.cs: Allow the scrollbars to be reset with negative
11154         values.
11155         - Don't add scrollbars to negative sized windows.
11156
11157 2005-09-23  Jackson Harper  <jackson@ximian.com>
11158
11159         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
11160         old Mono.Posix. Also remove some stray code that shouldn't have
11161         been committed.
11162
11163 2005-09-23  Jackson Harper  <jackson@ximian.com>
11164
11165         * TreeView.cs: Attempt at proper sizing of the horizontal
11166         scrollbar. Also don't resize the scrollbars unless they are
11167         visible.
11168
11169 2005-09-23  Jackson Harper  <jackson@ximian.com>
11170
11171         * TreeView.cs: We don't need to expand the invalid area when the
11172         selection changes, as this is all drawn in the node's bounding
11173         box. The area needs to be expanded (previous typo was contracting
11174         it) when the focus rect moves.
11175
11176 2005-09-23  Jackson Harper  <jackson@ximian.com>
11177
11178         * TreeView.cs: Display the selection box under the correct
11179         circumstances. We were rendering white text with no selection box
11180         before.
11181
11182 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
11183
11184         * TextControl.cs(Split): Now updates selection start/end if it points 
11185           into a line that's being split. Fixes a FIXME and bug #75258
11186
11187 2005-09-23  Jackson Harper  <jackson@ximian.com>
11188
11189         * Binding.cs:
11190         * ListControl.cs: Don't use the path when retrieving binding
11191         managers from the binding context. My bat sense tells me that the
11192         path is only used on insertion.
11193
11194 2005-09-22  Jackson Harper  <jackson@ximian.com>
11195
11196         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
11197
11198 2005-09-22  Jackson Harper  <jackson@ximian.com>
11199
11200         * Splitter.cs: There are special cursors used for splitting.
11201         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
11202
11203 2005-09-22  Jackson Harper  <jackson@ximian.com>
11204
11205         * Splitter.cs: Change the cursor appropriately when the splitter
11206         is moused over, so the user actually knows there is a splitter
11207         there.
11208
11209 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
11210
11211        * Label.cs : Fix ToString method to give same output as MS.NET
11212
11213 2005-09-22  Jackson Harper  <jackson@ximian.com>
11214
11215         * TreeView.cs: Create the scrollbars when the handle is created
11216         and add them right away, just make them invisble. Also account for
11217         the window being shrunk vertically to the point that the vert
11218         scrollbar needs to be added.
11219         - Remove some 0.5 adjustments to get around anti aliasing issues.
11220         
11221 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
11222          
11223         * MainMenu.cs: Fixes default value
11224         * MenuItem.cs: Fixes default value
11225
11226 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
11227
11228         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
11229
11230 2005-09-21  Jackson Harper  <jackson@ximian.com>
11231
11232         * Control.cs: Don't try to set the border style on the window if
11233         it hasn't been created. When the window is created the border
11234         style will be used.
11235
11236 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
11237
11238         * Control.cs (Update): Don't call XplatUI if we don't have a
11239           window handle yet
11240
11241 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
11242
11243         * ContainerControl.cs: Instead of throwing an exception, print
11244           a one-time warning about Validate not being implemented
11245         * XplatUIWin32.cs: Removed debug output
11246
11247 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
11248
11249         * Control.cs: Only set XplatUI background if we expect the windowing
11250           system to handle the background. This stops controls that draw their
11251           own background from flickering
11252
11253         * XplatUIX11.cs: Support custom visuals and colormaps for window 
11254           creation. This allows, amongst other things, using MWF X11 windows 
11255           with OpenGL.
11256
11257 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
11258
11259         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
11260           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
11261           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
11262           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
11263           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
11264           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
11265           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
11266           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
11267           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
11268           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
11269           GridColumnStylesCollection.cs, 
11270           IDataGridColumnStyleEditingNotificationService.cs,
11271           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
11272           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
11273           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
11274           TreeNodeCollection.cs, AmbientProperties.cs, 
11275           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
11276           DataObject.cs, ErrorProvider.cs, Splitter.cs,
11277           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
11278           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
11279           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
11280           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
11281           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
11282           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
11283           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
11284           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
11285           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
11286           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
11287           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
11288           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
11289           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
11290           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
11291           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
11292           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
11293           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
11294           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
11295           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
11296           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
11297           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
11298           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
11299           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
11300           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
11301           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
11302           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
11303           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
11304           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
11305           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
11306           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
11307           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
11308           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
11309           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
11310           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
11311           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
11312
11313 2005-09-21  Jackson Harper  <jackson@ximian.com>
11314
11315         * TreeNode.cs: Call Before/After Expand not Collapse when
11316         expanding.
11317
11318 2005-09-20  Jackson Harper  <jackson@ximian.com>
11319         
11320         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
11321
11322 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
11323          
11324         * ListViewItem.cs:
11325                 - Fixes bug 76120
11326                 - Fixes proper storing of subitems
11327                 - Fixes not updated items
11328
11329 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
11330
11331         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
11332           things if our window handle isn't created yet. Also disabled 
11333           debug for TextBoxBase
11334
11335 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
11336
11337         * MenuAPI.cs: Remove filtering of events to allow menu usage
11338
11339 2005-09-20  Miguel de Icaza  <miguel@novell.com>
11340
11341         * Cursor.cs: Allow null to be passed to Cursor.Current.
11342
11343 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
11344
11345         * ThemeWin32Classic.cs:
11346           - Change some private methods/fields to protected virtual so that 
11347             they can be accessed and overriden in derived classes
11348           - First refactoring of some methods. Derived themes now don't 
11349             need to duplicate the complete code from ThemeWin32Classic
11350         * ThemeNice.cs:
11351           - Added nice StatusBar
11352           - Derive from ThemeWin32Classic and not Theme
11353           - Removed duplicate ThemeWin32Classic code
11354
11355 2005-09-20  Miguel de Icaza  <miguel@novell.com>
11356
11357         * Control.cs (ControlCollection.Add): If the value null is passed
11358         the control is ignored. 
11359
11360         Optimize this loop.
11361
11362 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
11363
11364         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
11365           PostQuitMessage state.
11366         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
11367
11368 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
11369
11370         * Application.cs: Our constructor will never get called, move 
11371           initialization to fields; fixes bug #75933
11372
11373 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
11374
11375         * FileDialog.cs :
11376                 - Allow files to be selected properly using file name
11377                 combo box.
11378                 - Add ability to change diretory (absolute / relative)
11379                 using file name combo box.
11380
11381 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
11382          
11383         * ListBox.cs: 
11384                 - Fixes Multicolumn listboxes item wrong calculations
11385                 - Allows to click when only one item is in the listbox
11386                 - Fixes crash when no items using keyboard navigation
11387
11388 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
11389
11390         * ComboBox.cs: Reverted almost everything from the latest patch which
11391           broke ComboBox
11392
11393 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
11394         
11395         * ToolTip.cs:
11396                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
11397         * ComboBox.cs:
11398                 - When DropDownStyle is Simple, it does not show scrollbar 
11399                 to the last item of the list.
11400                 - When DropDownStyle is Simple, it crashed when the list was 
11401                 scrolled down with the down cursor key.
11402                 - Fixed a bug that when DropDownStyle is DropDownList, the 
11403                 selected item was not shown.
11404                 - The position of the selected item was not preserved when 
11405                 the next dropdown happened.
11406         * ThemeWin32Classic.cs:
11407                 - Items were wrapped at the right end.
11408         * CheckedListBox.cs:
11409                 - Fixed Add method
11410         * ListBox.cs:
11411                 - Items should be fully shown.
11412                 - When resizing and vertical scrollbar disappeared, the item 
11413                 of index 0 should be on the top of the list.
11414                 - GetItemRectangle should consider the size of ver. scrollbar
11415         * StatusBar.cs:
11416                 - SizingGrip area should not be allocated when it is not 
11417                 displayed.
11418                 - Now it reflects MinWidth of the containing panel and 
11419                 fixed a crash that happens when its width becomes so small.
11420
11421 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
11422
11423         * CheckedListBox.cs: Fixes bug 76028
11424         * ListBox.cs: Fixes bug 76028
11425
11426 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
11427
11428         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
11429         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
11430
11431 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
11432
11433         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
11434
11435 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
11436
11437         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
11438
11439 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
11440
11441         * IRootGridEntry.cs: Added
11442         * PropertyGridCommands.cs: Added
11443         * PropertiesTab.cs: Added missing methods and property
11444         * PropertyGridView.cs: Made class internal
11445         * PropertyGridTextBox.cs: Made class internal
11446
11447 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
11448
11449         * MimeIcon.cs: Try to check some other environment variables
11450           if "DESKTOP_SESSION" returns "default"
11451
11452 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
11453
11454         * ThemeNice.cs: Corrected background colors (e.g. menus)
11455         * ColorDialog.cs: Use correct background colors for controls
11456
11457 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
11458
11459         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
11460
11461 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
11462
11463         * RichTextBox.cs: Added initial implementation
11464         * lang.cs: Removed. Was accidentally checked in long time ago
11465         * TODO: Removed. Contents were obsolete
11466
11467 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
11468                                                                                 
11469         * PropertiesTab.cs : Added
11470
11471 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
11472                                                                                 
11473         * PropertyGrid.cs : Update
11474         * PropertyGridView.cs : Update
11475         * System.Windows.Forms.resx : Added images and strings
11476
11477 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
11478
11479         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
11480  
11481 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
11482
11483         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
11484           a busy loop right after the Ungrab the X11 display is otherwise 
11485           blocked
11486
11487 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
11488
11489         * ThemeWin32Classic.cs: Optimise the use of clipping
11490
11491 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
11492
11493         * DataGrid.cs: fixes recursion bug
11494
11495 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
11496
11497         * ThemeNice.cs: 
11498           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
11499           - Cleanup
11500
11501 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
11502
11503         * ThemeNice.cs: Draw nice ProgressBars
11504
11505 2005-09-01  Miguel de Icaza  <miguel@novell.com>
11506
11507         * VScrollBar.cs: Another buglet found by Aaron's tool. 
11508
11509         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
11510         bug finder.
11511
11512 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
11513
11514         * ThemeNice.cs:
11515           - Added nicer menu drawing
11516           - Updated DrawTab
11517           - some refactoring
11518
11519 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
11520
11521         * CreateParams.cs (ToString): Made output match MS
11522         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
11523             handle is already created (to avoid forcing window creation)
11524         * XplatUIX11.cs: Set window text to caption after creating window,
11525           in case Text was set before window was created
11526         * Form.cs: Use this.Text instead of a static string as caption
11527
11528 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
11529
11530         * NotifyIcon.cs: Don't set the window to visible; this screws
11531           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
11532           OnPaint without a bitmap)
11533         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
11534           happen very often anyway; we could add the check to the WM_PAINT 
11535           event generation code
11536
11537 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
11538
11539         * NotifyIcon.cs: Fill the icon area with a background color, to 
11540           avoid 'residue' when transparent icons are drawn
11541         * XplatUIX11.cs:
11542           - Handle whole_window == client_window when destroying windows
11543           - SystrayAdd(): Set client_window to whole_window value to
11544             get mouse and other events passed to NotifyIcon
11545
11546 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
11547
11548         * Form.cs: Set proper default for Opacity property
11549         * NotifyIcon.cs:
11550           - ShowSystray(): Don't bother creating telling the OS
11551             about the systray item if no icon is provided
11552           - Now handles WM_NCPAINT message to deal with whole/client window
11553             split
11554           - Create window as visible to not get caught by Expose optimization
11555         * Hwnd.cs: Removed debug message
11556         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
11557           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
11558             PaintEventStart/End to use new client argument
11559         * TextBoxBase.cs:
11560           - Commented out debug messages
11561           - Switched PaintEventStart/End to use new client argument
11562         * XplatUI.cs: Added client window bool to PaintEventStart()/
11563           PaintEventEnd() calls, to support drawing in non-client areas
11564         * XplatUIDriver.cs: 
11565           - Added client window bool to PaintEventStart()/PaintEventEnd() 
11566             calls, to support drawing in non-client areas
11567           - Added conditional compile to allow using MWF BeginInvoke 
11568             on MS runtime
11569         * XplatUIX11.cs:
11570           - Added some conditional debug output
11571           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
11572             whole/client window split
11573           - Implemented handling of client argument to PaintEventStart()/End()
11574         * Control.cs:
11575           - Throw exception if BeginInvoke() is called and the window handle
11576             or one of the window's parent handles is not created
11577           - Added conditional compile to allow using MWF BeginInvoke on
11578             MS runtime
11579           - get_Parent(): Only sets parent if handle is created. This avoids
11580             forcing window handle creation when parent is set.
11581           - Now fires Layout and Parent changed events in proper order
11582           - Switched to use Handle instead of window.Handle for Z-Order setting,
11583             the get_Parent() patch above causes us to possibly get null for 'window'
11584           - Implemented handling of client argument to PaintEventStart()/End()
11585           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
11586             default handling)
11587           - Now sends a Refresh() to all child windows when Refresh() is called
11588
11589 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
11590
11591         * Form.cs: Added (non-functional) Opacity property
11592         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
11593
11594 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
11595         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
11596           use export MONO_THEME=nice to activate it.
11597           Currently supported controls:
11598           - Button
11599           - ComboBox
11600           - ScrollBar
11601           - TabControl (TabAlignment.Top only, other will follow)
11602         * ThemeEngine.cs: Add theme nice
11603         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
11604           if enabled
11605
11606 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
11607
11608         * Splitter.cs: Resize docked control and its neighbor.
11609
11610 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
11611         -- Making Windows with Menus layout correctly --
11612         * Form.cs : The first leg of the fix
11613                 Menu setter - adjust Client Size as needed to make space for the menu
11614                 SetClientSizeCore - doesn't call base version to be able to pass the 
11615                         menu handle to XplatUI.CalculateWindowRect
11616         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
11617         * XplatUIX11.cs: The critical second leg of the fix
11618                 GetWindowPos needs to use a recalculated client_rect
11619                 so that resizing the window doesn't break layout of child controls. 
11620                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
11621                 Lots of \t\n killed
11622
11623 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
11624
11625         * Label.cs: Now properly recalculates width and height on Font and Text
11626           changes if AutoSize is set
11627
11628 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
11629         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
11630
11631 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
11632
11633         * ImageList.cs: Makes ToString method compatible with MS
11634
11635 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
11636
11637         * MenuAPI.cs: fixes bug 75716
11638
11639 2005-08-11 Umadevi S <sumadevi@novell.com>
11640         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
11641
11642 2005-08-11 Umadevi S <sumadevi@novell.com>
11643         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
11644
11645 2005-08-10  Umadevi S <sumadevi@novell.com>
11646         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
11647
11648 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
11649
11650         * Menu.cs: fixes bug 75700
11651         * MenuAPI.cs: fixes navigation issues
11652
11653 2005-08-09  Umadevi S <sumadevi@novell.com>
11654         * CheckedListBox.cs - simple fix for GetItemChecked.
11655
11656 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
11657
11658         * ComboBox.cs: Serveral fixes
11659         * ListBox.cs: Serveral fixes
11660
11661 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
11662
11663         * ComboBox.cs: Fixes FindString methods and GetItemHeight
11664         * ListBox.cs: Fixes FindString methods
11665
11666 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
11667
11668         * DataGrid.cs: fixes bugs exposed by new tests
11669
11670 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
11671
11672         * Mime.cs: Compile Mono assembly references only if compiling
11673           with Mono (Allows to build with VS.Net again)
11674
11675 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
11676
11677         * Control.cs (PaintControlBackground): Draw background image
11678         corrrectly.
11679         (CheckForIllegalCrossThreadCalls): Stubbed.
11680         
11681         * Form.cs (OnCreateControl): Center when should be centered.
11682         
11683         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
11684
11685 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
11686
11687         * Binding.cs: Binding to properties should be case unsensitive
11688
11689 2005-07-18 vlindos@nucleusys.com
11690
11691         * DataGrid.cs: fixes setmember order
11692
11693 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
11694
11695         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
11696         * FileDialog.cs: FileDialog is now resizable and uses the new
11697           MimeIconEngine
11698
11699 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
11700
11701         * DataGridTextBoxColumn.cs: default value
11702         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
11703         * GridTableStylesCollection.cs: fixes checking MappingName
11704         * DataGridDrawingLogic.cs: fixes drawing logic issues
11705         * DataSourceHelper.cs: rewritten to make compatible with more data sources
11706         * DataGrid.cs: fixes    
11707
11708 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
11709
11710         * MimeGenerated.cs: Use case sensitive comparer for
11711           NameValueCollections
11712
11713 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
11714
11715         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
11716         * ThemeWin32Classic.cs: bug fixes, code refactoring
11717         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
11718         * DataGrid.cs: bug fixes, code refactoring
11719         * DataGridTextBox.cs: bug fixes, code refactoring
11720         * DataGridColumnStyle.cs:  bug fixes, code refactoring
11721         * Theme.cs:  bug fixes, code refactoring
11722
11723 2005-07-01  Peter Bartok  <pbartok@novell.com> 
11724
11725         * TextControl.cs: Quick fix for the reported crash on ColorDialog
11726           and other text box usage
11727
11728 2005-07-01  Jackson Harper  <jackson@ximian.com>
11729
11730         * TabControl.cs: Make sure the bottom of the tab covers the pages
11731         border.
11732
11733 2005-06-30  Peter Bartok  <pbartok@novell.com> 
11734
11735         * Form.cs (ShowDialog): Assign owner of the dialog
11736         * TextBoxBase.cs: Always refresh caret size when deleting, caret
11737           might have been moved to a tag with different height
11738
11739 2005-06-30  Jackson Harper  <jackson@ximian.com>
11740
11741         * Form.cs: Don't create an infinite loop when setting focus
11742         * MenuItem.cs: Don't dirty the parents if we don't have any
11743
11744 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
11745
11746         * LibSupport.cs: Rename
11747
11748 2005-06-29  Peter Bartok  <pbartok@novell.com>
11749
11750         * TextBoxBase.cs: Re-align caret after deleting a character
11751         * TextControl.cs:
11752           - DeleteChars(): Ensure that tag covers the provided position
11753           - StreamLine(): Drop reference for dropped tag
11754
11755 2005-06-29  Peter Bartok  <pbartok@novell.com> 
11756
11757         * TextControl.cs: 
11758           - Selections now work properly, anchoring at the initial location
11759             and properly extending in either direction (SetSelectionToCaret(),
11760             SetSelectionStart() and SetSelectionEnd())
11761           - No longer redraws the whole control on selection change, now
11762             calculates delta between previous and new selection and only
11763             invalidates/redraws that area
11764           - Fixed FindPos() math off-by-one errors
11765           - Changed DeleteChars() to verify the provided tag covers the
11766             provided position, selections may have a tag that doesn't cover
11767             the position if the selection is at a tag border
11768           - Fixed off-by-one errors in DeleteChars()
11769           - Added missing streamlining check in DeleteChars() to remove
11770             zero-length tags
11771           - Implemented Invalidate() method, now properly calculates exposures
11772             between two given lines/positions
11773           - Implemented SetSelection()
11774           - Obsoleted and removed FixupSelection()
11775           - Improved RecalculateDocument() logic, removing code duplication
11776
11777 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11778
11779         * LibSupport.cs: changes to match different input/output arguments.
11780
11781 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11782
11783         * LibSupport.cs: added libsupport.so init routine.
11784
11785 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
11786         
11787         * ControlBindingsCollection.cs
11788                 - Throws an exception on null datasource when adding
11789                 - Checks for duplicated bindings when adding
11790
11791 2005-06-28  Jackson Harper  <jackson@ximian.com>
11792
11793         * TreeView.cs (OnKeyDown): Support left and right properly
11794         (navigates as well as expanding and collapsing.
11795         - Add support for Multiply, this expands all the selected nodes
11796         children.
11797         - Fix some tabbing.
11798
11799 2005-06-28  Jackson Harper  <jackson@ximian.com>
11800
11801         * TreeView.cs: Implement keyboard navigation, currently supports,
11802         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
11803         support for toggling checkboxes with the space bar.
11804
11805 2005-06-28  Jackson Harper  <jackson@ximian.com>
11806
11807         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
11808         tree.
11809
11810 2005-06-28  Jackson Harper  <jackson@ximian.com>
11811
11812         * TreeView.cs: Add missing event.
11813
11814 2005-06-27  Peter Bartok  <pbartok@novell.com> 
11815
11816         * TextControl.cs:
11817           - Made line ending size configurable (now allows for counting 
11818             lineendings as \n or \r\n)
11819           - Added margin to viewport to keep caret visible on right side
11820           - Fixed translation routines for line/pos to documentpos to consider
11821             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
11822           - Fixed some line-endings to be unix style
11823           - Fixed Document.FormatText to perform it's calculations 1-based
11824           - Added descriptions for a few methods that might otherwise get 
11825             used wrong
11826           - Added NOTE section with some basic conventions to remember at 
11827             the top of the file
11828           - Major fixup for RichTextBox selection drawing:
11829             * Fixed crashes when multiple tags on a single line were selected
11830             * fixed selection box drawing not overlaying text
11831             * fixed bogus offset calculation for tags not starting at index 1
11832             * Switched behaviour from using multiple Substrings of a 
11833               StringBuilder.ToString() to using multiple 
11834               StringBuilder.ToString(start, length) statements, hoping this is
11835               faster (kept original version commented out in the code, in case
11836               original version was faster)
11837         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
11838           alignment != Left
11839         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
11840           call it as well
11841
11842 2005-06-27  Jackson Harper  <jackson@ximian.com>
11843
11844         * TabControl.cs: Move to the left and right with the arrow
11845         keys. These keys don't cycle beyond first and last like
11846         tab. Refresh all the tabs when scrolling them to the left or
11847         right.
11848
11849 2005-06-27  Jackson Harper  <jackson@ximian.com>
11850
11851         * TabControl.cs:
11852           - ToString: Added method
11853           - CreateParams: Remove TODO and comment
11854           - OnKeyDown: Cycle through bounds properly.
11855           - SelectedIndex: Scroll to the right or left if we need to
11856           display the newly selected tab.
11857
11858 2005-06-23  Jackson Harper  <jackson@ximian.com>
11859
11860         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
11861         set.
11862
11863 2005-06-23  Jackson Harper  <jackson@ximian.com>
11864
11865         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
11866         CTRL-SHIFT-TAB, and HOME, END are there any others?
11867
11868 2005-06-23  Jackson Harper  <jackson@ximian.com>
11869
11870         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
11871
11872 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
11873         
11874         * DataGridTextBoxColumn.cs: fixes and enhancements
11875         * ThemeWin32Classic.cs: fixes and enhancements
11876         * DataGridBoolColumn.cs:  fixes and enhancements
11877         * DataGridDrawingLogic.cs:  fixes and enhancements
11878         * CurrencyManager.cs: fixes and enhancements
11879         * DataGrid.cs: fixes and enhancements
11880         * DataGridColumnStyle.cs:  fixes and enhancements
11881
11882 2005-06-22  Jackson Harper  <jackson@ximian.com>
11883
11884         * TabControl.cs: Add some missing methods that just call into the
11885         base. Make the TabPageCollection's IList interface behave in the
11886         same manner as the MS implementation.
11887
11888 2005-06-22  Peter Bartok  <pbartok@novell.com> 
11889
11890         * TextControl.cs: Added sanity check
11891         * TextBoxBase.cs: 
11892           - Fixed wrapping behaviour, don't set wrap on single line controls
11893             (this fixes the breakage of colordialog introduced in an earlier
11894              checkin)
11895           - Added rudimentary support for autoscrolling right-aligned controls
11896             (still needs fixing, also, center alignment scroll is missing)
11897
11898 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
11899         
11900         * ScrollBar.cs: Fixes thumbpos on Maximum values
11901
11902 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
11903         
11904         * PropertyGridView.cs: Pass context information to UITypeEditors 
11905
11906 2005-06-21  Peter Bartok  <pbartok@novell.com> 
11907
11908         * TextBoxBase.cs:
11909           - Now calling PositionCaret with absolute space coordinates
11910           - Enabled vertical scrolling
11911           - Better tracking of scrollbar changes, tied into WidthChange
11912             event
11913           - Improved cursor tracking
11914           - Removed debug output
11915         * TextControl.cs:
11916           - PositionCaret coordinates are now works in absolute space, not 
11917             the canvas
11918           - Improved tracking of document size
11919           - Added events for width and height changes
11920
11921 2005-06-21  Peter Bartok  <pbartok@novell.com>
11922
11923         * Form.cs: Set focus to active control when form is activated
11924         * TextControl.cs: 
11925           - Added word-wrap functionality to RecalculateLine() 
11926           - Added some short function descriptions for VS.Net to aid in
11927             writing dependent controls
11928           - Added Caret property, returning the current coords of the caret
11929           - Added ViewPortWidth and ViewPortHeight properties
11930           - Added Wrap property
11931           - Added CaretMoved event
11932           - Removed some old debug code
11933           - Split() can now create soft splits
11934           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
11935           - Added method to format existing text
11936           - Fixed size/alignment calculations to use viewport
11937           - RecalculateDocument now can handle changing line-numbers while
11938             calculating lines
11939
11940         * TextBox.cs:
11941           - Added some wrap logic, we don't wrap if alignment is not left
11942           - Added casts for scrollbar var, base class switched types to
11943             also support RichTextBoxA
11944           - Implemented handling of scrollbar visibility flags
11945
11946         * TextBoxBase.cs:
11947           - Switched scrollbars type to RichTextBoxScrollBars to support
11948             RichTextBox
11949           - Added tracking of canvas width/height
11950           - Switched scrollbars to be not selectable (to keep focus on text)
11951           - Added central CalculateDocument() method to handle all redraw
11952             requirements
11953           - Added ReadOnly support
11954           - Added WordWrap support
11955           - Fixed handling of Enter key (we now treat it as a DialogKey)
11956           - Fixed caret positioning when h or v scroll is not zero
11957           - Fixed placing/generation of vertical scrollbar
11958           - Added CalculateScrollBars() method to allow updating scrollbar
11959             limits and visibility
11960           - Fixed handling of horizontal scroll
11961           - Added handling of vertical scroll
11962           - Implemented auto-'jump' when caret moves to close to a left or
11963             right border and there is text to be scrolled into view (currently
11964             there's the potential for a stack overflow, until a bug in
11965             scrollbar is fixed)
11966
11967 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
11968         
11969         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
11970
11971 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
11972
11973         * Mime.cs:
11974         - added inodes.
11975         - return application/x-zerosize for files with size zero
11976           (if no extension pattern matches).
11977         - check matches collection for strings too.
11978         - return only the first mime type if the name value
11979           collection has more than one mime type.
11980
11981 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
11982         
11983         * PropertyGrid.cs: Cleaned up some TODOs
11984         * PropertyGridView.cs: Added support for UITypeEditors
11985
11986 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
11987         
11988         * DataGrid.cs: clears cached value
11989
11990 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
11991
11992         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
11993         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
11994         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
11995         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
11996         
11997 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
11998
11999         * ThemeWin32Classic.cs: fixes colour
12000
12001 2005-06-15  Peter Bartok  <pbartok@novell.com>
12002
12003         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
12004         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
12005         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
12006         * Control.cs: Added some MWFCategory and MWFDescription attributes
12007         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
12008
12009 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
12010
12011         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
12012         usage
12013
12014 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
12015
12016         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
12017         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
12018         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
12019         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
12020         * DataGrid.cs: default datagrid settings for Default Styles, fixes
12021         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
12022
12023 2005-06-13  Jackson Harper  <jackson@ximian.com>
12024
12025         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
12026         isn't printed when the user enables dropping. (X11 does accept
12027         drops).
12028         
12029 2005-06-13  Jackson Harper  <jackson@ximian.com>
12030
12031         * TreeView.cs: Remove some TODOS.
12032
12033 2005-06-13  Jackson Harper  <jackson@ximian.com>
12034
12035         * Form.cs: Hook into the mdi framework.
12036         * MdiClient.cs: Use the base control collections add method so
12037         parents get setup correctly. Set the default back colour and dock
12038         style.
12039         * MdiChildContext.cs: New class, this bad actor handles an
12040         instance of an MDI window. Right now there is only basic
12041         support. You can drag, close, and resize windows. Minimize and
12042         Maximize are partially implemented.
12043
12044 2005-06-13  Jackson Harper  <jackson@ximian.com>
12045
12046         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
12047         freaky when both vals are negative. NOTE: There are probably other
12048         places in XplatUIX11 that this needs to be done.
12049
12050 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
12051
12052         * DataGrid.cs: implement missing methods, move KeyboardNavigation
12053         * DataGridColumnStyle.cs: fixes signature
12054
12055 2005-06-12  Jackson Harper  <jackson@ximian.com>
12056
12057         * XplatUIX11.cs: Use sizing cursors similar to the ones on
12058         windows.
12059
12060 2005-06-11  Jackson Harper  <jackson@ximian.com>
12061
12062         * StatusBarPanel.cs: Signature cleanups. Implement
12063         BeginInit/EndInit.
12064
12065 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
12066
12067         * DataGridTextBoxColumn.cs: Honors aligment
12068         * GridColumnStylesCollection.cs: Contains is case unsensitive
12069         * GridTableStylesCollection.cs: several fixes
12070         * DataGridTableStyle.cs: default column creation
12071         * DataGridDrawingLogic.cs: fixes
12072         * CurrencyManager.cs: ListName property
12073         * DataGrid.cs: multiple styles support
12074         * DataGridColumnStyle.cs: fixes
12075         
12076
12077 2005-06-10  Peter Bartok  <pbartok@novell.com>
12078
12079         * Control.cs(Select): Moved SetFocus call to avoid potential
12080           loops if controls change the active control when getting focus
12081         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
12082           the up/down buttons
12083
12084 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
12085
12086         * ImageListConverter.cs: Implemented
12087
12088 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
12089
12090         * MonthCalendar.cs: Wired in NumericUpDown control for year
12091
12092 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
12093
12094         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
12095           DoubleClick events, since they are not meant to be fired.
12096
12097 2005-06-09  Peter Bartok  <pbartok@novell.com>
12098
12099         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
12100           Jonathan's standalone controls into MWF, implemented missing
12101           events, attributes and methods; added xxxAccessible classes
12102         * AccessibleObject.cs: Made fields internal so other classes
12103           can change them if needed
12104
12105 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
12106
12107         * UpDownBase.cs: Complete implementation
12108         * NumericUpDown.cs: Complete implementation
12109         * DomainUpDown.cs: Complete implementation
12110
12111 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
12112
12113         * DataGridTextBoxColumn.cs: drawing fixes
12114         * DataGridCell.cs: fixes ToString method to match MSNet
12115         * DataGridTableStyle.cs: fixes
12116         * DataGridBoolColumn.cs: fixes, drawing
12117         * DataGridDrawingLogic.cs: fixes, new methods
12118         * DataGridTextBox.cs: Keyboard and fixes
12119         * DataGrid.cs:
12120                 - Keyboard navigation
12121                 - Scrolling fixes
12122                 - Row selection (single, multiple, deletion, etc)
12123                 - Lots of fixes
12124         
12125 2005-06-07  Jackson Harper  <jackson@ximian.com>
12126
12127         * ThemeWin32Classic.cs: Clear the background area when drawing
12128         buttons.
12129
12130 2005-06-06  Peter Bartok  <pbartok@novell.com>
12131
12132         * ImageListStreamer.cs: Fixed signature for GetData
12133         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
12134         * ComboBox.cs:
12135           - Added missing ChildAccessibleObject class
12136           - Added missing OnXXXFocus overrides, switched to using those
12137             instead of the event handler
12138         * Control.cs:
12139           - Added Parent property for ControlAccessibleObject
12140           - Fixed signatures
12141           - Fixed attributes
12142           - Added ResetBindings()
12143         * ListBindingConverter.cs: Implemented some methods
12144         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
12145         * ImageList.cs: Implemented basic handle scheme, removed TODOs
12146         * ContainerControl.cs: Fixed signature, now subscribing to the
12147           ControlRemoved event instead of overriding the handler, LAMESPEC
12148         * CurrencyManager.cs: Added missing attribute
12149         * MonthCalendar.cs: Added missing properties
12150
12151 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
12152
12153         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
12154         
12155 2005-06-06  Gaurav Vaish and Ankit Jain
12156
12157         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
12158         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
12159         
12160 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
12161
12162         * Control.cs: fixes CreateParams Width / Height.
12163
12164 2005-06-05  Peter Bartok  <pbartok@novell.com>
12165
12166         * Win32DnD.cs: Removed compilation warnings
12167
12168 2005-06-05  Peter Bartok  <pbartok@novell.com>
12169
12170         * Control.cs (CreateParams): Since we don't know if one of the
12171           properties we use is overridden, lets make sure if we fail accessing
12172           we continue with a backup plan
12173
12174 2005-06-05  Peter Bartok  <pbartok@novell.com>
12175
12176         * Win32DnD.cs:
12177           - Removed debug output
12178           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
12179             struct
12180           - Plugged resource leak
12181         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
12182           MS size
12183
12184 2005-06-05  Peter Bartok  <pbartok@novell.com>
12185
12186         * XplatUIWin32.cs: Removed DnD code
12187         * Win32DnD.cs: Implemented drop source and drop target functionality
12188
12189 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12190
12191         * UpDownBase.cs: remove duplicate addition of event, enable some code
12192         that was commented out.
12193         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
12194         Validate input when a key is pressed. It works fine now for every
12195         combination of Hexadecimal. Only missing some drawing love when sharing
12196         space with other controls.
12197
12198 2005-06-04  Peter Bartok  <pbartok@novell.com>
12199
12200         * Control.cs:
12201           - We need to pass a window for DragDrop, so enable callback events
12202           - Added DnD callback events when being a DragSource
12203         * XplatUI.cs (StartDrag): Added window handle argument
12204         * XplatUIDriver.cs (StartDrag): Added window handle argument
12205         * QueryContinueDragEventArgs: Made fields internally accessible so
12206           drivers can set them
12207         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
12208           can set them
12209
12210 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
12211
12212         * DataGridTextBoxColumn.cs: column text editing
12213         * DataGridTableStyle.cs: Respect columns styles created by the user
12214         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
12215         * DataGridBoolColumn.cs: bool column editing
12216         * DataGrid.cs: fixes to scrolling, properties, etc
12217         * DataGridTextBox.cs: handle keyboard
12218         * DataGridColumnStyle.cs: fixes
12219
12220 2005-06-02  Jackson Harper  <jackson@ximian.com>
12221
12222         * ImageListStreamer.cs: Somewhat broken implementation of
12223         GetObjectData. The RLE needs some work to match MS properly.
12224
12225 2005-06-02  Jackson Harper  <jackson@ximian.com>
12226
12227         * X11Dnd.cs: Attempting to keep at least one file in MWF
12228         monostyled.
12229
12230 2005-06-02  Peter Bartok  <pbartok@novell.com>
12231
12232         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
12233           that way
12234
12235 2005-06-02  Peter Bartok  <pbartok@novell.com>
12236
12237         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
12238         * XplatUI.cs: Added DoDragDrop() method
12239         * XplatUIDriver.cs: Added DoDragDrop() method
12240
12241 2005-06-02  Jackson Harper  <jackson@ximian.com>
12242
12243         * Splitter.cs: Implement BorderStyle.
12244
12245 2005-06-02  Jackson Harper  <jackson@ximian.com>
12246
12247         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
12248         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
12249         X11 using XDND.
12250
12251 2005-06-02  Peter Bartok  <pbartok@novell.com>
12252
12253         * DataObject.cs:
12254           - Added Data setter
12255           - Fixed broken insertion code for SetData, now also
12256             overwrites any existing entry of the same format name
12257         * Hwnd.cs: Added list of pointers that automatically gets
12258           freed when the window is disposed
12259         * XplatUI.cs: Call driver initialization method when loading
12260           a driver
12261         * Control.cs:
12262           - OnDragLeave takes EventArgs, not DragEventArgs
12263           - Added setting of WS_EX_ACCEPTFILES style when dropping is
12264             supported
12265           - Forces style update when drop state changes
12266         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
12267           not perfect since we cannot (yet) call the IDataObject.GetData()
12268           method, we keep getting 0x80004005 error, dunno why)
12269
12270 2005-06-02  Peter Bartok  <pbartok@novell.com>
12271
12272         * DragEventArgs.cs: Make fields internal so we can cache the
12273           object and re-set the fields from XplatUI
12274
12275 2005-06-02  Jackson Harper  <jackson@ximian.com>
12276
12277         * Control.cs: Add some internal methods so the DnD subsystem can
12278         raise DnD events. Also call into the driver when AllowDrop is set.
12279         * XplatUI.cs:
12280         * XplatUIDriver.cs: New method for setting whether or not a window
12281         is allowed to accept drag and drop messages.
12282                 
12283 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
12284         
12285         * ScrollBar.cs: Make sure that values sent in Scroll events
12286         are always between Maximum and Minimum.
12287
12288 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
12289
12290         * Menu.cs: Call MenuChanged when menuitem visibility has been
12291         changed.
12292         * MenuItem.cs: Rebuild menu when item is (not) visible.
12293         * MainMenu.cs: MainMenu has special MenuChanged.
12294         * Theme.cs: Caption and FrameBorderSize are not fixed.
12295         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
12296         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
12297         * XplatUIX11.cs,
12298         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
12299         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
12300
12301 2005-05-30  Jackson Harper  <jackson@ximian.com>
12302
12303         * DataFormat.cs: We can't statically initialize this stuff because
12304         it calls into the xplatui and could create a loop. So we lazy init
12305         it.
12306
12307 2005-05-28  Jackson Harper  <jackson@ximian.com>
12308
12309         * Control.cs: Proper implementation of Product(Name/Version).
12310
12311 2005-05-27  Jackson Harper  <jackson@ximian.com>
12312
12313         * DataObject.cs: Dont crash if no data is found.
12314
12315 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
12316         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
12317                 as per status page, guessing it should be set to true
12318
12319 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
12320
12321         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
12322         * DataGridTableStyle.cs: set proper formatting text, def header text
12323         * ThemeWin32Classic.cs: new themable paramaters
12324         * DataGridBoolColumn.cs: paint check box, get data, fixes
12325         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
12326         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
12327         * DataGridColumnStyle.cs: fixes
12328         * Theme.cs: new themable paramaters
12329                 
12330 2005-05-26  Peter Bartok  <pbartok@novell.com>
12331
12332         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
12333
12334 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
12335         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
12336
12337 2005-05-24  Peter Bartok  <pbartok@novell.com>
12338
12339         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
12340           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
12341           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
12342           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
12343           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
12344           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
12345           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
12346           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
12347           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
12348           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
12349           missing attributes, etc
12350         * DataGridPreferredColumnWidthTypeConverter.cs: Added
12351
12352 2005-05-24  Peter Bartok  <pbartok@novell.com>
12353
12354         * Help.cs: Added, implemented trivial functions, throws up MessageBox
12355           when user tries to get help
12356         * DataObject.cs, DataFormats.cs, LinkArea.cs,
12357           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
12358           to suppress warnings
12359         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
12360           avoid unreachable code warning
12361
12362 2005-05-20  Peter Bartok  <pbartok@novell.com>
12363
12364         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
12365
12366 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
12367
12368         * DataGridTextBoxColumn.cs: Basic painting methods
12369         * DataGridTableStyle.cs: Set table style in the column
12370         * ThemeWin32Classic.cs: Use Theme for colors
12371         * DataGridDrawingLogic.cs: Implement more drawing
12372         * DataGrid.cs: drawing, theming, enhacements, fixes
12373         * DataGridColumnStyle.cs: fixes, drawing
12374         * Theme.cs: theming for Datagrid
12375
12376 2005-05-20  Peter Bartok  <pbartok@novell.com>
12377
12378         * Cursor.cs: Implemented GetObjectData() method
12379
12380 2005-05-20  Peter Bartok  <pbartok@novell.com>
12381
12382         * Cursors.cs: Added setting of cursor name
12383         * Cursor.cs:
12384           - Implemented constructors
12385           - Implemented Draw and DrawStretched
12386           - Implemented Current property
12387           - Implemented == and != operators
12388           - Implemented Dispose()
12389           - Implemented ToString
12390           - Added missing attributes
12391         * XplatUIX11.cs:
12392           - Added missing reset for OverrideCursor when DoEvents is called
12393           - Fixed creation of cursor, logic was wrong
12394         * XplatUIWin32.cs:
12395           - Added missing reset for OverrideCursor when DoEvents is called
12396           - Fixed creation of cursor, bit arrays were swapped
12397         * Clipboard.cs: Removed obsolete MonoTODO attribute
12398
12399 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
12400
12401         * ComboBox.cs: fixes OnSelectedItemChanged
12402         * ControlBindingsCollection.cs: fixes item range check
12403
12404 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
12405
12406         * UpDownBase.cs:
12407                 - Calc preferred height properly
12408                 - Implement missing properties
12409                 
12410         * NumericUpDown.cs: Implement missing events
12411
12412 2005-05-19  Jackson Harper  <jackson@ximian.com>
12413
12414         * TabControl.cs: New method that resizes the tab pages before
12415         redrawing them. This as needed as the control is double buffered
12416         and sizing will not be recalculated unless ResizeTabPages is
12417         called.
12418         * TabPage.cs: Set base.Text instead of Text in the constructor so
12419         that UpdateOwner does not get called. Use the new Redraw method of
12420         TabControl instead of Refresh so the sizing is recalculated.
12421         * ThemeWin32Classic.cs: Draw the text for button tabs.
12422
12423 2005-05-19  Jackson Harper  <jackson@ximian.com>
12424
12425         * Control.cs: Paint control background images. Fix typo where
12426         PaintControlBackground was not getting called correctly.
12427
12428 2005-05-19  Peter Bartok  <pbartok@novell.com>
12429
12430         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
12431           I can investigate, apparently I broke FileDialog
12432
12433 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
12434
12435         * AxHost.cs: Some simple properties.
12436         * Control.cs: window must be accessible after ctor.
12437         * Form.cs: Added TransparencyKey property.
12438         * TextBoxBase.cs: Implemented Clear. Text property can be null.
12439         * XplatUIWin32.cs: SetBorderStyle implemented.
12440
12441 2005-05-18  Peter Bartok  <pbartok@novell.com>
12442
12443         * DataObject.cs: Entries are not global but particular to the
12444           DataObject, now it behaves that way
12445         * XplatUIWin32.cs: Implemented Clipboard methods
12446         * Clipboard.cs: Implemented
12447         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
12448         * XplatUIOSX.cs: Updated to final clipboard prototypes
12449         * XplatUIX11.cs: Implemented Clipboard methods
12450         * XplatUIDriver.cs: Updated to final clipboard prototypes
12451         * XplatUIStructs.cs:
12452           - Added BITMAPINFOHEADER struct
12453           - Added ClipboardFormats enum
12454         * X11Structs.cs:
12455           - Added ClipboardStruct
12456           - Added Atom enum items for clipboard types
12457           - Fixed atom types for Selection event structures
12458         * DataFormats.cs:
12459           - Added internal properties and methods for drivers to enumerate
12460             all known formats
12461           - Switched initialization method to allow drivers to assign their
12462             own IDs even for the MS predefined clipboard IDs
12463         * XplatUI.cs: Updated to final clipboard interface
12464
12465 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
12466         * PropertyGridView.cs: Fixed compiler warnings.
12467
12468 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
12469         * PropertyGrid.cs: Added some event calls
12470         * PropertyGridView.cs: Change drawing code to use double buffering
12471         * PropertyGridTextBox.cs: Changed Text property name
12472         * GridItem.cs: Added Bounds property.
12473         * GridEntry.cs: Added Bounds property.
12474
12475 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
12476
12477         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
12478         since GetType() may not return the correct type if the object is
12479         a remoting proxy.
12480
12481 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
12482
12483         * TreeNodeCollection.cs: fixes get/set item ranges
12484         
12485 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
12486
12487         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
12488                 
12489 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
12490
12491         * ComboBox.cs: Fix item range comparation
12492         * ListView.cs: Fix item range comparation
12493
12494 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
12495
12496         * FontDialog.cs:
12497           - Clear example panel when OnPaint is called
12498           - Better solution for displaying the example panel text
12499           - Select default indexes in the ListBoxes
12500
12501 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
12502
12503         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
12504
12505 2005-05-11  Peter Bartok  <pbartok@novell.com>
12506
12507         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
12508         * SelectionRangeConverter.cs: Implemented
12509         * PropertyGrid.cs: Fixed attribute value
12510         * Control.cs:
12511           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
12512           - Added Sebastien Pouliot's CAS Stack Propagation fixes
12513         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
12514           that's common to all drivers. First methods to go there are
12515           Sebastien Pouliot's CAS Stack Propagation helper methods
12516         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
12517           Sebastien Pouliot for CAS Stack Propagation
12518
12519 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
12520
12521         * OSXStructs.cs:
12522           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
12523
12524 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
12525
12526         * DataGridTextBoxColumn.cs: fixed some members
12527         * GridColumnStylesCollection.cs: indexed column is case insensitive
12528         * DataGridTableStyle.cs: fixes
12529         * ThemeWin32Classic.cs: add new theme parameter
12530         * Theme.cs: add new theme parameter
12531         * DataGridDrawingLogic.cs: Datagrid's drawing logic
12532         * DataGrid.cs: fixes, new internal properties, etc.
12533         * DataGridColumnStyle.cs: allows to set grid value
12534         *
12535
12536 2005-05-10  Peter Bartok  <pbartok@novell.com>
12537
12538         * AccessibleObject.cs:
12539           - Removed MonoTODO attribute on help, method is correct
12540           - Fixed Bounds property
12541         * AxHost.cs: Moved MonoTODO
12542         * ButtonBase.cs: Now setting AccessibleObject properties
12543         * RadioButton.cs: Setting proper AccessibleObject role
12544         * CheckBox.cs: Setting proper AccessibleObject role
12545         * ControlBindingsCollection.cs: Added properties, methods and attributes
12546         * DataFormats.cs: Fixed awkward internal API, and changed to enable
12547           userdefined DataFormats.Format items as well
12548         * ListControl.cs: Removed data_member from the public eye
12549         * OpenFileDialog.cs:
12550           - Made class sealed
12551           - Added missing attributes
12552         * SaveFileDialog.cs: Added missing attributes
12553         * ImageListStreamer.cs: Fixed code that caused warnings
12554         * LinkLabel.cs: Removed unreachable code
12555         * TreeView.cs: Fixed code that caused warnings
12556         * PropertyGridView.cs: Fixed code that caused warnings
12557         * GridColumnStylesCollection.cs: Added missing attributes
12558         * GridTableStylesCollection: Added missing attribute
12559         * PropertyManager: Added .ctor
12560         * SecurityIDType: Added
12561         * DataObject.cs: Implemented class
12562         * LinkArea.cs: Added missing attribute
12563
12564 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
12565
12566         * RadioButton.cs: call base method to allow to fire OnClick event
12567         * UpDownBase.cs: OnMouseUp call base method
12568         * CheckedListBox.cs: call base method before returning
12569         * TrackBar.cs: call base method before returning
12570         
12571
12572 2005-05-10  Peter Bartok  <pbartok@novell.com>
12573
12574         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
12575           for messages
12576
12577 2005-05-10  Peter Bartok  <pbartok@novell.com>
12578
12579         * DataFormats.cs: Implemented
12580         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
12581           XplatUIX11.cs: Added Clipboard APIs
12582         * XplatUIWin32.cs: Implemented Clipboard APIs
12583         * FolderBrowserDialog.cs: Added missing event, attributes
12584
12585 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
12586
12587         * CheckBox.cs: call base method to allow to fire OnClick event
12588
12589 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
12590
12591         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
12592
12593 2005-05-06  Peter Bartok  <pbartok@novell.com>
12594
12595         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
12596         * Screen.cs: Implemented
12597         * HelpNavigator.cs: Added
12598         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
12599           property
12600         * HelpProvider.cs: Implemented all we can do until we have a CHM
12601           help library (which means that "What's This" does work now)
12602
12603 2005-05-06  Jackson Harper  <jackson@ximian.com>
12604
12605         * XplatUIX11.cs: Fix waking up the main loop.
12606                 
12607 2005-05-05  Peter Bartok  <pbartok@novell.com>
12608
12609         * XplatUI.cs: Updated revision
12610         * Form.cs: Removed enless loop
12611         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
12612         * Label.cs (OnPaint): Added call to base.OnPaint()
12613         * ToolTip.cs: Made ToolTipWindow reusable for other controls
12614         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
12615         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
12616         * AxHost.cs: Added
12617         * ButtonBase.cs: Moved base.OnPaint() call to end of method
12618         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
12619           to ToolTip.ToolTipWindow for drawing and size methods; this allows
12620           reuse of ToolTipWindow by other controls
12621         * SizeGrip.cs: Moved base.OnPaint() call to end of method
12622         * XplatUIX11.cs: Now clipping drawing area (experimental)
12623         * PictureBox.cs: Moved base.OnPaint() call to end of method
12624         * Theme.cs: Fixed ToolTip abstracts to match new format
12625         * ErrorProvider.cs: Implemented
12626
12627 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
12628
12629         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
12630         * LinkLabel.cs:
12631                 - Adds cursors
12632                 - Handles focus
12633                 - Implements LinkBehavior
12634                 - Fixes many issues
12635
12636 2005-05-03  Jackson Harper  <jackson@ximian.com>
12637
12638         * ListView.cs: Calculate the scrollbar positioning on resize and
12639         paint, so they get put in the correct place.
12640
12641 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
12642
12643         * ColorDialogs.cs: The small color panels are now handled by
12644           SmallColorControl. This fixes drawing of the focus rectangle
12645           and adds a 3D border.
12646
12647 2005-05-03  Peter Bartok  <pbartok@novell.com>
12648
12649         * Control.cs: Modified version of Jonathan Chamber's fix for
12650           double-buffering
12651
12652 2005-05-03  Jackson Harper  <jackson@ximian.com>
12653
12654         * ListView.cs: Remove redraw variable. Control now handles whether
12655         or not a redraw needs to be done, and will only raise the paint
12656         event if redrawing is needed.
12657
12658 2005-05-03  Jackson Harper  <jackson@ximian.com>
12659
12660         * Splitter.cs: No decorations for the splitter form. Cache the
12661         hatch brush.
12662
12663 2005-05-03  Jackson Harper  <jackson@ximian.com>
12664
12665         * TreeView.cs: Use dashed lines to connect nodes. Use the
12666         ControlPaint method for drawing the focus rect instead of doing
12667         that in treeview.
12668
12669 2005-05-02  Peter Bartok  <pbartok@novell.com>
12670
12671         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
12672
12673 2005-04-29  Jackson Harper  <jackson@ximian.com>
12674
12675         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
12676         entire image buffer. Just clear the clipping rectangle.
12677
12678 2005-04-29  Jackson Harper  <jackson@ximian.com>
12679
12680         * ThemeWin32Classic.cs: Don't draw list view items that are
12681         outside the clipping rectangle.
12682
12683 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
12684
12685         * ListBox.cs: added horizontal item scroll
12686
12687 2005-04-29  Jackson Harper  <jackson@ximian.com>
12688
12689         * ThemeWin32Classic.cs: Remove some old debug code that was
12690         causing flicker with the new double buffering code.
12691
12692 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
12693
12694         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
12695         behave like combobox and comboboxlist (still not sure if this is
12696         correct though).
12697
12698 2005-04-28  Jackson Harper  <jackson@ximian.com>
12699
12700         * ThemeWin32Classic.cs: Don't fill the middle of progress
12701         bars. This fills areas outside of the clip bounds that don't need
12702         to be filled.
12703
12704 2005-04-28  Jackson Harper  <jackson@ximian.com>
12705
12706         * Control.cs: Don't expose functionality to touch the image buffers.
12707         * ProgressBar.cs:
12708         * ListView.cs: We do not need to (and no longer can) manipulate
12709         the image buffers directly. All of this is handled by Control.
12710
12711 2005-04-28  Peter Bartok  <pbartok@novell.com>
12712
12713         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
12714           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
12715           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
12716
12717 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
12718
12719         * Combobox:
12720                 - Adjust control's height for non-simple comboboxes (bug fix)
12721                 - Remove dead code
12722         * MenuAPI.cs: remove unused var
12723         * ScrollBar.cs: remove unsed var
12724                  
12725         * ListBox.cs: unselect items when clearing
12726
12727 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
12728
12729         * ListControl.cs: honors OnPositionChanged and default Selected Item
12730         * ListBox.cs: unselect items when clearing
12731
12732 2005-04-27  Jackson Harper  <jackson@ximian.com>
12733
12734         * X11Keyboard.cs: Initialize a default keyboard and give a warning
12735         if a "correct" keyboard is not found. This will make us not crash,
12736         but might give some users bad keyboard layouts...seems to be the
12737         same thing rewind does.
12738
12739 2005-04-27  Jackson Harper  <jackson@ximian.com>
12740
12741         * BindingManagerBase.cs: Attach the current/position changed
12742         handlers to their respective events.
12743
12744 2005-04-27  Jackson Harper  <jackson@ximian.com>
12745
12746         * Control.cs: Make sure that the first WM_PAINT does a full draw,
12747         not just a blit.
12748         * ThemeWin32Classic.cs: Don't fill the background for picture
12749         boxes. This could overright user drawing.
12750         * ComboBox.cs: Just fill the clipping rect not the entire client
12751         rect when drawing the background. This prevents pieces of the
12752         image buffer from getting overwritten and is theoretically faster.
12753
12754 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
12755
12756         * ComboBox.cs: Databinding support fixes, fire missing events
12757         * ListControl.cs: implement missing methods and properties, fixes
12758         * ThemeWin32Classic.cs: Databiding support on Drawing
12759         * CheckedListBox.cs: Databinding support fixes, fire missing events
12760         * ListBox.cs: Databinding support fixes, fire missing events
12761         
12762 2005-04-25  Peter Bartok  <pbartok@novell.com>
12763
12764         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
12765
12766 2005-04-25  Jackson Harper  <jackson@ximian.com>
12767
12768         * TreeView.cs: Use the horizontal scrollbars height not width when
12769         determining how much of the client area is available.
12770
12771 2005-04-25  Jackson Harper  <jackson@ximian.com>
12772
12773         * Control.cs: Double buffering is handled differently now. As per
12774         the spec, the extra buffer is created in the WM_PAINT message and
12775         passed down to the control's drawing code.
12776         * GroupBox.cs:
12777         * Label.cs:
12778         * CheckBox.cs:
12779         * ProgressBar.cs:
12780         * RadioButton.cs:
12781         * ColorDialog.cs:
12782         * ComboBox.cs:
12783         * PropertyGridView.cs:
12784         * UpDownBase.cs:
12785         * MessageBox.cs:
12786         * MenuAPI.cs:
12787         * ListView.cs:
12788         * ButtonBase.cs:
12789         * SizeGrip.cs:
12790         * ScrollBar.cs:
12791         * ListBox.cs:
12792         * TrackBar.cs:
12793         * ToolBar.cs:
12794         * PictureBox.cs:
12795         * DateTimePicker.cs:
12796         * StatusBar.cs:
12797         * TreeView.cs: Update to new double buffering system.
12798         * MonthCalendar.cs: Uncomment block, as Capture is now
12799         working. Update to new double buffering
12800         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
12801         * PaintEventArgs.cs: New internal method allows us to set the
12802         graphics object. This is used for double buffering.
12803         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
12804         rectangle. The internal paint_area var has been removed from
12805         StatusBar. The clipping rect should be used instead.
12806         * Theme.cs: Give the PictureBox drawing method a clipping rect.
12807         * TabPage.cs: The RefreshTabs method was removed, so just call the
12808         tab controls Refresh method now.
12809         * TabControl.cs: Update to new double buffering. Make sure the
12810         handle is created before sizing the tab pages, otherwise we will
12811         get stuck in a loop.
12812
12813 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
12814
12815         * LinkLabel.cs: Fix typo, bug #74719; patch
12816           from Borja Sanchez Zamorano
12817
12818 2005-04-22  Jackson Harper  <jackson@ximian.com>
12819
12820         * TreeNode.cs: Implement Handle stuff.
12821         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
12822
12823 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
12824
12825         * DataGridTextBoxColumn.cs: call base constructors, fixes
12826         * GridColumnStylesCollection.cs: missing events, methods, and functionality
12827         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
12828         * DataGridTableStyle.cs: implements create default column styles
12829         * DataGridBoolColumn.cs: which types can handle
12830         * DataGrid.cs: missing methods, fixes, new functionality
12831         * DataGridColumnStyle.cs: fixes
12832
12833 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
12834         * FolderBrowserDialog.cs:
12835         - Use a thread to fill the TreeView
12836         - Adjusted some sizes
12837
12838 2005-04-19  Peter Bartok  <pbartok@novell.com>
12839
12840         * LinkLabel.cs: (Re-)create the pieces when setting the Text
12841           property. Fixes #74360.
12842
12843 2005-04-19  Jackson Harper  <jackson@ximian.com>
12844
12845         * XEventQueue.cs: Lock when getting the lockqueue size.
12846         * PictureBox.cs: Call base OnPaint
12847         
12848 2005-04-19  Peter Bartok  <pbartok@novell.com>
12849
12850         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
12851           messages were no longer being processed (this broke BeginInvoke)
12852
12853           
12854 2005-04-18  Jackson Harper  <jackson@ximian.com>
12855
12856         * TreeView.cs: buglet that caused node images to get drawn
12857         regardless of whether or not they were in the clipping rectangle.
12858
12859 2005-04-18  Jackson Harper  <jackson@ximian.com>
12860
12861         * CurrencyManager.cs: There are four rules for GetItemProperties:
12862         - If the type is an array use the element type of the array
12863         - If the type is a typed list, use the type
12864         - If the list contains an Item property that is not an object, use
12865         that property
12866         - use the first element of the list if there are any elements in
12867         the list.
12868         
12869 2005-04-17  Jackson Harper  <jackson@ximian.oom>
12870
12871         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
12872         click. This handles offsets for scrolling properly and reduces
12873         memory. Also fixed GetNode to not offset now that TopNode works
12874         properly.
12875         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
12876         
12877 2005-04-17  Jackson Harper  <jackson@ximian.com>
12878
12879         * CursorConverter.cs: Initial implementation.
12880
12881 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
12882
12883         * ListControl.cs: work towards complex data binding support on ListControl
12884         * CurrencyManager.cs: work towards complex data binding support on ListControl
12885         * ListBox.cs: work towards complex data binding support on ListControl
12886
12887
12888 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
12889
12890         * GridTableStylesCollection.cs: fixes name and constructor
12891         * DataGridTableStyle.cs: fixes
12892         * DataGridBoolColumn.cs: fixes names and constructors
12893         * DataGrid.cs: define methods and properties. Some init implementations
12894         * DataGridCell.cs: define methods and properties. Some init implementations
12895         * GridTablesFactory.cs: Define methods and properties
12896
12897 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
12898
12899         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
12900         graphics port changes.  We still want the coordinates in global screen
12901         coordinates.
12902
12903 2005-04-14  Jackson Harper  <jackson@ximian.com>
12904
12905         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
12906         check plus minus or checkbox clicks unless those features are enabled.
12907
12908 2005-04-14  Jackson Harper  <jackson@ximian.com>
12909
12910         * TreeView.cs: Add methods for setting the top and bottom visible
12911         nodes. TreeNode::EnsureVisible uses these methods.
12912         * TreeNode.cs: Implement EnsureVisible
12913
12914 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
12915
12916         * Form.cs: Pospone menu assignation if the window has not been created yet
12917         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
12918         size and position
12919
12920 2005-04-12  Jackson Harper  <jackson@ximian.com>
12921
12922         * TreeView.cs: Set the TopNode properly when scrolling
12923         occurs. This has the added benifit of reducing the amount of
12924         walking that needs to be done when drawing. Also removed an old
12925         misleading TODO.
12926         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
12927         
12928 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
12929
12930         * Timer.cs: fixes interval setting when the timer is already enabled
12931         
12932 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
12933
12934         * FolderBrowserDialog.cs: First approach
12935
12936 2005-04-09  Peter Bartok  <pbartok@novell.com>
12937
12938         * FolderBrowserDialog: Added
12939
12940 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
12941
12942         * LinkLabel.cs: move drawing code into the theme
12943         * ThemeWin32Classic.cs: drawing code and painting background bugfix
12944         * Theme.cs: define DrawLinkLabel method
12945
12946 2005-04-05  Jackson Harper  <jackson@ximian.com>
12947
12948         * BindingContext.cs: Use weak references so these bad actors don't
12949         stay alive longer then they need to.
12950
12951 2005-04-05  Jackson Harper  <jackson@ximian.com>
12952
12953         * ListControl.cs: Basic implementation of complex databinding.
12954         * ComboBox.cs:
12955         * ListBox.cs: Add calls to ListControl databinding methods.
12956
12957 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
12958
12959         * FileDialog.cs:
12960           - Don't change PopupButtonState to Normal when the
12961             PopupButton gets pressed several times.
12962           - Renamed ButtonPanel to PopupButtonPanel
12963
12964 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
12965
12966         * ColorDialog.cs: Use cached objects instead of creating them
12967         * LinkLabel.cs: Use cached objects instead of creating them
12968         * Splitter.cs: Use cached objects instead of creating them
12969         * FontDialog.cs: Use cached objects instead of creating them
12970         * PropertyGridView.cs: Use cached objects instead of creating them
12971         * MessageBox.cs: Use cached objects instead of creating them
12972         * FileDialog.cs: Use cached objects instead of creating them
12973         * ThemeWin32Classic.cs: Use cached objects instead of creating them
12974         * TreeView.cs: Use cached objects instead of creating them
12975         
12976 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
12977
12978         * Control.cs: use Equals to compare the font since no == op
12979         * ScrollBar.cs: use Equals to compare the font since no == op
12980
12981 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
12982
12983         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
12984
12985 2005-04-01  Jackson Harper  <jackson@ximian.com>
12986
12987         * Binding.cs: Implement IsBinding.
12988         * BindingManagerBase.cs:
12989         * PropertyManager.cs:
12990         * CurrencyManager.cs: Add IsSuspended property.
12991
12992 2005-04-01  Jackson Harper  <jackson@ximian.com>
12993
12994         * Binding.cs: Had some IsAssignableFrom calls backwards.
12995
12996 2005-04-01  Jackson Harper  <jackson@ximian.com>
12997
12998         * Binding.cs: Handle null data members when pulling data.
12999         * PropertyManager.cs: Handle the data member being a property that
13000         does not exist.
13001
13002 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
13003
13004         * DataGridTextBoxColumn.cs: fixes signature
13005         * DataGrid.cs: calls right constructor
13006
13007 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
13008
13009         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
13010         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
13011         * GridTableStylesCollection.cs: implements GridTableStylesCollection
13012         * DataGridTableStyle.cs: implements DataGridTableStyle
13013         * DataGridBoolColumn.cs: implements DataGridBoolColumn
13014         * DataGridTextBox.cs: implements DataGridTextBox
13015         * DataGridColumnStyle.cs: implements DataGridColumnStyle
13016
13017 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
13018
13019         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
13020
13021 2005-03-29  Peter Bartok  <pbartok@novell.com>
13022
13023         * Application.cs:
13024           - Properly implemented CompanyName property
13025           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
13026             returns a path that includes CompanyName, ProductName and
13027             Version (fixes bug #70330)
13028
13029 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
13030
13031         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
13032           fixes bug #72588.
13033
13034 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
13035
13036         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
13037         
13038           - Added ReadOnly CheckBox
13039           - Further refactoring: moved some code from Open-/SaveFileDialog
13040             to FileDialog
13041
13042 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
13043
13044         * OpenFileDialog.cs: Fixed CheckFileExists
13045         * FileDialog.cs:
13046           Moved FileView and DirComboBox outside FileDialog class.
13047           They can now be used outside FileDialog
13048
13049 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
13050
13051         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
13052         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
13053
13054 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
13055
13056         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
13057           - Added missing CreatePrompt property in SaveDialog
13058           - Overall SaveDialog handling should be better now
13059           - Added non standard ShowHiddenFiles property
13060           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
13061           - Added InitialDirectory and RestoreDirectory support
13062
13063 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
13064
13065         * FileDialog.cs: Made dirComboBox usable
13066
13067 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
13068
13069         * FileDialog.cs: Added Filter support (case sensitiv)
13070
13071 2005-03-24  Jackson Harper  <jackson@ximian.com>
13072
13073         * TabControl.cs: Need a couple more pixels for the lines.
13074
13075 2005-03-23  Jackson Harper  <jackson@ximian.com>
13076
13077         * TabControl.cs: Give the tab page focus when it is selected.
13078
13079 2005-03-23  Jackson Harper  <jackson@ximian.com>
13080
13081         * TabControl.cs: Account for the drawing of tabs borders when
13082         invalidating. If the slider was clicked dont do click detection on
13083         the tabs.
13084
13085 2005-03-23  Jackson Harper  <jackson@ximian.com>
13086
13087         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
13088
13089 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
13090
13091         * CategoryGridEntry.cs: Added
13092         * GridItem.cs: Added helper properties
13093         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
13094         * GridEntry.cs: Updated code for collection
13095         * PropertyGrid.cs: Cleaned up some formatting
13096         * PropertyGridView.cs: Added drop down functionality for enums.
13097         * GridItemCollection.cs: Added enumerator logic
13098         * PropertyGridEntry.cs: Added
13099
13100 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
13101
13102         * FileDialog.cs:
13103           - Removed unnecessary commented code
13104           - Fixed handling for entering the filename manually in the combobox
13105
13106 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
13107
13108         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
13109
13110 2005-03-18  Peter Bartok  <pbartok@novell.com>
13111
13112         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
13113           them being touching the border
13114
13115 2005-03-18  Peter Bartok  <pbartok@novell.com>
13116
13117         * TextControl.cs: Quick hack to center text better
13118
13119 2005-03-18  Peter Bartok  <pbartok@novell.com>
13120
13121         * ControlPaint.cs:
13122           - Don't throw NotImplemented exceptions, just print a notice once
13123             instead (requested by Miguel). This makes running existing SWF
13124             apps a bit easier
13125         * Control.cs:
13126           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
13127           - Added context menu trigger on right click
13128         * Panel.cs: Trigger invalidate on resize
13129         * StatusBar.cs:
13130           - Removed old double-buffer drawing
13131           - Added ResizeRedraw style to force proper update of statusbar
13132         * ListView.cs:
13133           - Removed debug output
13134         * ThemeWin32Classic.cs:
13135           - Fixed drawing of status bar, now draws Text property if there
13136             are no defined panels
13137
13138 2005-03-18  Jackson Harper  <jackson@ximian.com>
13139
13140         * ImageList.cs: When the image stream is set pull all the images
13141         from it.
13142         * ImageListStreamer.cs: Implement reading image list streams.
13143
13144 2005-03-18  Peter Bartok  <pbartok@novell.com>
13145
13146         * ThemeWin32Classic.cs (DrawPictureBox):
13147           - Fixed calculations for centered drawing
13148           - Fixed drawing for normal mode, not scaling the image on normal
13149
13150 2005-03-18  Peter Bartok  <pbartok@novell.com>
13151
13152         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
13153           textbox
13154         * FileDialog.cs:
13155           - Made Open/Save button the accept button for FileDialog
13156           - Tied the cancel button to the IButtonControl cancel button
13157           - Save/Open now properly builds the pathname
13158           - Now handles user-entered text
13159           - Preventing crash on right-click if no item is selected
13160           - Fixed Text property, now uses contents of textbox
13161           - Fixed SelectedText property, now just returns the text part that
13162             is selected in the text box
13163
13164 2005-03-18  Jackson Harper  <jackson@ximian.com>
13165
13166         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
13167         rect, make sure to de-adjust the interior rect after drawing the
13168         tab text.
13169
13170 2005-03-18  Peter Bartok  <pbartok@novell.com>
13171
13172         * MenuAPI.cs: Remove menu *before* executing selected action to
13173           prevent the menu from 'hanging around'
13174           
13175 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
13176
13177         * XplatUIOSX.cs: Implemented WorkingArea property
13178
13179 2005-03-17  Peter Bartok  <pbartok@novell.com>
13180
13181         * XplatUIX11.cs: Fixed menu coord calculations
13182         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
13183           for calculating offsets
13184
13185 2005-03-17  Peter Bartok  <pbartok@novell.com>
13186
13187         * Hwnd.cs: Do not consider menu presence for default client
13188           rectangle location/size
13189         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
13190           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
13191           translation functions
13192         * FileDialog.cs: Fixed (what I presume is a) typo
13193
13194 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
13195
13196         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
13197           X access (avoids X-Async errors)
13198
13199 2005-03-16  Jackson Harper  <jackson@ximian.com>
13200
13201         * TabControl.cs: Raise the SelectedIndexChanged event.
13202
13203 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
13204
13205         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
13206           - Removed vertical ToolBar and replaced it with a custom panel
13207             (desktop and home button already work)
13208           - Added Help button (some controls get resized or relocated then)
13209           - Draw correct text depending on Open or Save.
13210           - Fixed some typos...
13211
13212 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
13213
13214         * ScrollBar.cs:
13215           - Only change Maximum and Minimum when need it (bug fix)
13216
13217 2005-03-15  Peter Bartok  <pbartok@novell.com>
13218
13219         * Form.cs: Use Handle for icon, to trigger creation if
13220           the window does not yet exist
13221         * Control.cs:
13222           - CanSelect: Slight performance improvement
13223           - Focus(): Preventing possible recursion
13224           - Invalidate(): Removed ControlStyle based clear flag setting
13225           - WM_PAINT: fixed logic for calling OnPaintBackground
13226           - WM_ERASEBKGND: Fixed logic, added call to new driver method
13227             EraseWindowBackground if the control doesn't paint background
13228         * XplatUIWin32.cs:
13229           - Moved EraseWindowBackground() method to internal methods
13230           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
13231             is sent via SendMessage on BeginPaint call on Win32
13232         * XplatUIX11.cs:
13233           - Added EraseWindowBackground() method
13234           - No longer sends WM_ERASEBKGND on .Expose, but on call to
13235             PaintEventStart, which more closely matches Win32 behaviour
13236           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
13237           - Fixed SetFocus() to properly deal with client and whole windows
13238         * Hwnd.cs: Added ErasePending property
13239         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
13240         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
13241
13242 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
13243
13244         * XplatUIOSX.cs:
13245           - Fix hard loop when timers exist.
13246           - Fix bugs with middle and right click for 3 button mice.
13247
13248 2005-03-11  Peter Bartok  <pbartok@novell.com>
13249
13250         * XplatUIX11.cs:
13251           - get_WorkingArea: Need to call X directly, GetWindowPos only
13252             returns cached data now
13253           - Added sanity check to GetWindowPos hwnd usage
13254
13255 2005-03-11  Jackson Harper  <jackson@ximian.com>
13256
13257         * BindingManagerBase.cs: This method isn't used anymore as
13258         PullData now updates the data in the control.
13259
13260 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
13261
13262         * Form.cs: fixes menu drawing on X11
13263         * MenuAPI.cs:  fixes menu drawing on X11
13264
13265 2005-03-11  Peter Bartok  <pbartok@novell.com>
13266
13267         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
13268           from Jonathan Gilbert; should fix bug #73606
13269         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
13270           in Screen coordinates. Thanks, Jordi.
13271         * Form.cs: Added missing attribute
13272
13273 2005-03-11  Peter Bartok  <pbartok@novell.com>
13274
13275         * Form.cs:
13276           - Rudimentary Mdi support
13277           - Removed outdated FormParent code
13278           - Implemented lots of missing properties and methods, still missing
13279             transparency support
13280           - Added missing attributes
13281           - Implemented support for MaximumBounds
13282           - Added firing of various events
13283         * XplatUI.cs: Added SetIcon() method
13284         * XplatUIDriver.cs: Added SetIcon() abstract
13285         * XplatUIOSX.cs: Stubbed out SetIcon() method
13286         * XplatUIX11.cs:
13287           - Implemented SetIcon() support
13288           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
13289           - Switched to unix line endings
13290         * XplatUIWin32.cs:
13291           - Made POINT internal so for can access it as part of MINMAX
13292           - Implemented SetIcon() support
13293           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
13294             native Mdi support again, might have to go managed)
13295         * Control.cs: Now fires the StyleChanged event
13296         * MdiClient.cs: Added; still mostly empty
13297
13298 2005-03-10  Peter Bartok  <pbartok@novell.com>
13299
13300         * SaveFileDialog.cs: Added emtpy file
13301
13302 2005-03-08  Peter Bartok  <pbartok@novell.com>
13303
13304         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
13305           in turn triggers OnCreateContro) when creating a handle for the
13306           first time.
13307         * TextControl.cs: Fixed endless loop in certain cases when
13308           replacing the current selection
13309
13310 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
13311
13312         * ScrollBar.cs:
13313           - Honors NewValue changes in Scroll events allowing apps to change it
13314           - Adds First and Last Scroll events
13315           - Fixes Thumb events
13316
13317 2005-03-07  Peter Bartok  <pbartok@novell.com>
13318
13319         * Hwnd.cs: Added DefaultClientRectangle property
13320         * XplatUI.cs: Now using the X11 driver Where() method, which provides
13321           more detailed debug information
13322         * XplatUIX11.cs:
13323           - Fixed size-change feedback loop, where we would pull an old size
13324             off the queue and mistakenly change our window's size to an
13325             earlier value
13326           - Now compressing ConfigureNotify events, to reduce looping and
13327             redraw issues
13328         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
13329           is called
13330
13331 2005-03-07  Jackson Harper  <jackson@ximian.com>
13332
13333         * Binding.cs: Push data pushes from data -> property. Check if the
13334         property is readonly when attempting to set it.
13335
13336 2005-03-07  Jackson Harper  <jackson@ximian.com>
13337
13338         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
13339         instead of IsSubclassOf. Pulling data now sets the value on the
13340         control.
13341         * PropertyManager.cs:
13342         * CurrencyManager.cs: Just need to pull data when updating now,
13343         because PullData will set the value on the control.
13344
13345 2005-03-04  Jackson Harper  <jackson@ximian.com>
13346
13347         * Binding.cs: Implement data type parsing and converting on pulled
13348         data. TODO: Are there more ways the data can be converted?
13349
13350 2005-03-04  Jackson Harper  <jackson@ximian.com>
13351
13352         * Binding.cs: Support <Property>IsNull checks. Also bind to the
13353         controls Validating method so we can repull the data when the
13354         control loses focus.
13355
13356 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
13357
13358         * ColumnHeader.cs:
13359           - Fixes null string format
13360           
13361         * ListView.cs:
13362           - Adds enum type checks
13363           - Fixes redrawing and recalc need after changing some properties
13364           - Fixes on focus_item set after the event
13365           - Fixes adding columns after the control has been created
13366           
13367         * ThemeWin32Classic.cs:
13368           - Fixes CheckBox focus rectangle
13369           - Fixes ColumnHeader drawing
13370
13371
13372 2005-03-03  Jackson Harper  <jackson@ximian.com>
13373
13374         * Binding.cs: Bind to <Property>Changed events so we can detect
13375         when properties are changed and update the data.
13376
13377 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
13378
13379         * ImageList.cs:
13380           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
13381           - Fixes ImageList constructor with ImageList container
13382           - Fixes image scaling (wrong parameters at DrawImage)
13383
13384 2005-02-02  Jackson Harper  <jackson@ximian.com>
13385
13386         * Binding.cs: Make property searches case-insensitive. Eliminate
13387         some duplicated code.
13388
13389 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
13390
13391         * ComboBox.cs:
13392                 - Handle focus event
13393                 - Fix scrollbar events
13394                 - Discard highlighted item if remove it
13395                 - Fixes SelectedItem with strings
13396
13397 2005-03-01  Peter Bartok  <pbartok@novell.com>
13398
13399         * Control.cs:
13400           - Fixed Visible property, now follows (once again) parent chain
13401             to return false if any control in the chain is visible=false
13402           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
13403           - Fixed several places where is_visible instead of Visible was used
13404           - Implemented FIXME related to focus selection when setting focused
13405             control to be invisible
13406
13407         * XplatUIWin32.cs: Now using proper method to find out if window is
13408           visible. Thanks to Jordi for pointing it out
13409
13410 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
13411
13412         * ComboBox.cs: show/hide scrollbar instead of creating it
13413
13414 2005-02-27  Jackson Harper  <jackson@ximian.com>
13415
13416         * CurrencyManager.cs: Add PositionChanged stuff.
13417
13418 2005-02-27  Peter Bartok  <pbartok@novell.com>
13419
13420         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
13421         * XplatUIOSX.cs: Added GetMenuOrigin() stub
13422         * XplatUIWin32.cs: Implemented GetMenuOrigin()
13423         * XplatUIX11.cs:
13424           - Implemented GetMenuDC()
13425           - Implemented GetMenuOrigin()
13426           - Implemented ReleaseMenuDC()
13427           - Implemented generation of WM_NCPAINT message
13428           - Implemented generation and handling of WM_NCCALCSIZE message
13429         * Form.cs: Added debug helper message for Jordi's menu work
13430         * Hwnd.cs:
13431           - Modified ClientRect property; added setter, fixed getter to handle
13432             setting of ClientRect
13433           - Added MenuOrigin property
13434
13435 2005-02-26  Peter Bartok  <pbartok@novell.com>
13436
13437         * XplatUIX11.cs:
13438           - Destroys the caret if a window that's being destroyed contains it
13439           - Ignores expose events coming from the X11 queue for windows that
13440             already are destroyed
13441           - Now uses the proper variable for handling DestroyNotify, before we
13442             marked the wrong window as destroyed
13443           - Improved/added some debug output
13444
13445 2005-02-26  Peter Bartok  <pbartok@novell.com>
13446
13447         * X11Keyboard.cs: Fixes to work on 64bit systems
13448
13449 2005-02-26  Peter Bartok  <pbartok@novell.com>
13450
13451         * Control.cs:
13452           - Now calling OnHandleDestroyed from DestroyHandle()
13453             instead of Dispose()
13454           - Removed bogus call to controls.Remove() from DestroyHandle()
13455
13456 2005-02-26  Peter Bartok  <pbartok@novell.com>
13457
13458         * Control.cs: Properly destroy child windows when our handle is
13459           destroyed
13460
13461 2005-02-25  Peter Bartok  <pbartok@novell.com>
13462
13463         * XplatUI.cs:
13464           - Added 'DriverDebug' define to allow tracing XplatUI API calls
13465           - Alphabetized Static Methods and Subclasses
13466
13467         * XplatUIX11.cs:
13468           - Added XException class to allow custom handling of X11 exceptions
13469           - Created custom X11 error handler, tied into XException class
13470           - Added support for MONO_XEXCEPTIONS env var to allow the user
13471             to either throw an exception on X errors or continue running
13472             after displaying the error
13473           - Added handling of DestroyNotify message
13474           - Added handler for CreateNotify message (still disabled)
13475           - Improved (tried to at least) Where method to provide file and lineno
13476         * X11Structs.cs:
13477           - Added XErrorHandler delegate
13478           - Added XRequest enumeration (to suppor translation of errors)
13479
13480 2005-02-25  Jackson Harper  <jackson@ximian.com>
13481
13482         * PropertyManager.cs: Implement editing features
13483         * CurrencyManager.cs:
13484         * Binding.cs: First attempt at UpdateIsBinding
13485         * BindingManagerBase.cs: Call UpdateIsBinding before
13486         pushing/pulling data.
13487
13488 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
13489
13490         * MenuAPI.cs: Respect disabled items
13491         * ThemeWin32Classic.cs
13492                 - Caches ImageAttributes creation for DrawImageDisabled
13493                 - Fixes vertical menu line drawing
13494                 - Draws disabled arrows in disable menu items
13495
13496 2005-02-24  Peter Bartok  <pbartok@novell.com>
13497
13498         * Hwnd.cs:
13499           - Added UserData property to allow associating arbitrary objects
13500             with the handle
13501           - Fixed leak; now removing Hwnd references from static windows array
13502         * XplatUIWin32.cs:
13503           - Fixed Graphics leak in PaintEventEnd
13504           - Removed usage of HandleData, switched over to Hwnd class
13505         * HandleData.cs: Removed, obsoleted by Hwnd.cs
13506
13507 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
13508
13509         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
13510         * ScrollBar.cs: Fixes bug
13511         * TrackBar.cs: removes death code, clipping, mimize refreshes,
13512          keyboard navigation enhancements
13513
13514 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
13515
13516         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
13517         * GroupBox.cs: Add control styles
13518         * Label.cs: Add control styles
13519         * UpDownBase.cs: Add control styles
13520         * ListBox.cs: Add control styles
13521         * XplatUIWin32.cs: Fixes wrong parameter order
13522
13523
13524 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
13525
13526         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
13527
13528 2005-02-23  Jackson Harper  <jackson@ximian.com>
13529
13530         * PropertyManager.cs: Implement property binding. This doesn't
13531         seem to work yet though as (I think) there are some bugs in
13532         System.ComponentModel.PropertyDescriptor.
13533         * BindingContext.cs: Use new PropertyManager constructor.
13534
13535 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
13536
13537         * ProgressBar.cs: use clip region in ProgressBar
13538         * ThemeWin32Classic.cs: use clip region in ProgressBar
13539
13540 2004-02-22  Jackson Harper  <jackson@ximian.com>
13541
13542         * BindingsCollection.cs: Remove some debug code.
13543
13544 2005-02-22  Jackson Harper  <jackson@ximian.com>
13545
13546         * BindingContext.cs:
13547         * ControlBindingsCollection.cs:
13548         * CurrencyManager.cs:
13549         * Binding.cs:
13550         * BindingManagerBase.cs: Initial implementation
13551         * BindingsCollection.cs: Add an internal contains method that the
13552         BindingManagerBase uses to ensure bindings aren't added twice to
13553         the collection.
13554         * PropertyManager.cs: Stubbed out.
13555         * Control.cs:
13556         * ContainerControl.cs: Hook up databinding
13557         
13558 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
13559
13560         * XplatUIOSX.cs:
13561           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
13562           Fixed Invalidate/Update chain.
13563           Fixed tons of other minor bugs (this is almost a complete rewrite).
13564
13565 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
13566
13567         * ComboBox.cs: do subcontrol creation when the control is created
13568
13569 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
13570
13571         * Label.cs: fixes image drawing (image and imagelist)
13572         * ThemeWin32Classic.cs: cache brushes
13573         
13574 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
13575
13576         * Form.cs: Move menu drawing code to Theme class
13577         * ComboBox.cs: Move ComboBox drawing code to Theme class
13578         * MenuItem.cs: Move menu drawing code to Theme class
13579         * MenuAPI.cs: Move menu drawing code to Theme class
13580         * ThemeWin32Classic.cs: New methods
13581         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
13582         * ListBox.cs: Move Listbox drawing code to Theme class
13583         * Theme.cs: New methods
13584
13585 2005-02-20  Peter Bartok  <pbartok@novell.com>
13586
13587         * Control.cs:
13588           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
13589             only process mnemonics on those)
13590           - Fixed event sequence for key handling; first calling
13591             ProcessKeyEventArgs now
13592         * TextBoxBase.cs:
13593           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
13594             for processing non-character keys
13595           - Fixed WM_CHAR to generate proper event sequence before processing
13596         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
13597           generation
13598
13599 2005-02-19  Peter Bartok  <pbartok@novell.com>
13600
13601         * UserControl.cs: Added TextChanged event; added attributes
13602         * SizeGrip.cs: Implemented resizing and optional display of grip
13603         * Form.cs: Fixed attribute
13604         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
13605           Changed meaning of ScrollWindow bool argument; instead of the
13606           clear attribute (which will be true usually anyway), it gives the
13607           option of moving child controls as well.
13608         * XplatUIX11.cs:
13609           - Changed to match new ScrollWindow argument
13610           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
13611             now handles the implicit parent window a WM puts around us
13612         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
13613           to work)
13614         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
13615         * TreeView.cs: Adjusted to new ScrollWindow arguments
13616
13617 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
13618
13619         * Form.cs: Menu integration with non-client area
13620         * MenuItem.cs: Menu integration with non-client area
13621         * MenuAPI.cs: Menu integration with non-client area
13622
13623 2005-02-18  Peter Bartok  <pbartok@novell.com>
13624
13625         * MethodInvoker.cs: Added
13626         * MdiLayout.cs: Added
13627         * SendKeys.cs: Started implementation
13628         * ErrorIconAlignment.cs: Added
13629
13630 2005-02-18  Peter Bartok  <pbartok@novell.com>
13631
13632         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
13633         * Form.cs: Added handling for Menu-related Non-client messages
13634
13635 2005-02-17  Peter Bartok  <pbartok@novell.com>
13636
13637         * UpDownBase.cs: Fixed typo, compilation errors
13638         * DomainUpDown.cs: Fixed attribute value
13639
13640 2005-02-16  Miguel de Icaza  <miguel@novell.com>
13641
13642         * UpDownBase.cs: Attach entry events.
13643         Propagate events.
13644         Add ForeColor property, Focused, InterceptArrowKeys (interception
13645         does not work yet).
13646
13647 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
13648
13649         * Form.cs:
13650                 - Redraw non client are on Setmenu
13651                 - Calc proper menu starting point
13652
13653 2005-02-17  Peter Bartok  <pbartok@novell.com>
13654
13655         * Application.cs: Fixed message_filter check
13656
13657 2005-02-17  Peter Bartok  <pbartok@novell.com>
13658
13659         * Application.cs: Now calls registered message filters
13660         * DockStyle.cs: Fixed attribute
13661         * Form.cs: Fixed attribute
13662         * Menu.cs: Fixed attribute
13663         * ToolTip.cs: Fixed attribute
13664         * TreeNode.cs: Added missing attributes and arranged in regions
13665         * PropertyGrid.cs: Fixed signatures
13666         * TreeNodeCollection.cs: Added attributes
13667         * Splitter.cs: Added missing attributes; arranged into regions
13668         * TabPage.cs: Added missing attributes; arranged into regions
13669         * TextBoxBase.cs: Added missing attributes
13670         * TextBox.cs: Added missing attributes
13671         * ArrangeDirection.cs: Added missing attributes
13672         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
13673         * ToolBarButton.cs: Fixed attributes
13674         * AnchorStyles.cs: Fixed attribute
13675         * TrackBar.cs: Fixed attributes
13676         * TabControl.cs: Added missing attributes and arranged into regions
13677         * ToolBar.cs: Fixed attribute
13678         * StatusBar.cs: Fixed signature, organized into regions and added
13679           attributes
13680         * StatusBarPanel.cs: Fixed attributes
13681         * ContentsResizedEventArgs.cs: Implemented
13682         * ContentsResizedEventHandler.cs: Implemented
13683         * DateBoldEventArgs.cs: Implemented
13684         * DateBoldEventHandler.cs: Implemented
13685         * UpDownEventArgs.cs: Implemented
13686         * UpDownEventHandler.cs: Implemented
13687         
13688 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
13689
13690         * Form.cs: first Menu NC refactoring
13691         * MenuAPI.cs: first Menu NC refactoring
13692         
13693 2005-02-16  Peter Bartok  <pbartok@novell.com>
13694
13695         * ImeMode.cs: Added missing attributes
13696         * Menu.cs: Fixed attribute
13697         * GroupBox.cs: Fixed attribute
13698         * Label.cs: Fixed attribute
13699         * ColorDialog.cs (RunDialog): Removed TODO attribute
13700         * ComboBox.cs: Fixed attributes
13701         * ListControl.cs: Added missing attributes
13702         * PropertyGrid.cs: Fixed attributes
13703         * Control.cs: Fixed attributes
13704         * ListViewItem.cs: Added TypeConverter attribute
13705         * NotifyIcon.cs: Fixed attributes
13706         * ListView.cs: Fixed attributes
13707         * ButtonBase.cs: Fixed attribute
13708         * ImageList.cs: Added missing attributes
13709         * ContainerControl.cs: Fixed signature
13710         * CheckedListBox.cs: Fixed attribute; added missing attributes
13711         * Panel.cs: Fixed attributes
13712         * PropertyTabChangedEventArgs.cs: Added missing attribute
13713         * PropertyValueChangedEventArgs.cs: Added missing attribute
13714         * Binding.cs: Fixed attribute
13715         * ListViewItemConverter: Implemented ListViewSubItemConverter class
13716         * ListBox.cs: Fixed attribute; added missing attributes;
13717         * ScrollableControl.cs: Added missing attributes
13718         * PictureBox.cs: Added missing attributes; implemented missing property
13719         * DateTimePicker.cs: Added missing attributes
13720         * Theme.cs (ToolWindowCaptionHeight): Fixed type
13721         * MonthCalendar.cs: Fixed attributes
13722         * StatusBarPanel.cs: Added missing attributes
13723         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
13724
13725 2005-02-16  Peter Bartok  <pbartok@novell.com>
13726
13727         * TextBoxBase.cs: The previous method to enforce height yet remember
13728           the requested high was less than ideal, this is an attempt to do
13729           it better.
13730         * Control.cs: Added comment about possible problem
13731         * Copyright: Updated format
13732         * GridItemType.cs: Fixed swapped values
13733
13734 2005-02-15  Jackson Harper  <jackson@ximian.com>
13735
13736         * BaseCollection.cs: Use property so we never access an
13737         uninitialized list. Also initialize the list in the property.
13738
13739 2005-02-15  Peter Bartok  <pbartok@novell.com>
13740
13741         * GroupBox.cs (ProcessMnemonic): Implemented
13742         * Label.cs (ProcessMnemonic): Implemented
13743         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
13744           hotkeys
13745
13746 2005-02-15  Peter Bartok  <pbartok@novell.com>
13747
13748         * RadioButton.cs (ProcessMnemonic): Implemented
13749         * CheckBox.cs (ProcessMnemonic): Implemented
13750         * Control.cs:
13751           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
13752             handling
13753           - Added internal method to allow calling ProcessMnemonic from other
13754             controls
13755         * ContainerControl.cs:
13756           - Started support for handling validation chain handling
13757           - Implemented ProcessMnemonic support
13758           - Added Select() call to Active, to make sure the active control
13759             receives focus
13760         * Form.cs: Setting toplevel flag for Forms (this was lost in the
13761           FormParent rewrite)
13762         * ThemeWin32Classic.cs:
13763           - DrawCheckBox(): Fixed stringformat to show hotkeys
13764           - DrawRadioButton(): Fixed stringformat to show hotkeys
13765         * CommonDialog.cs: Removed WndProc override, not needed
13766
13767 2005-02-14  Peter Bartok  <pbartok@novell.com>
13768
13769         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
13770           missed those in the rewrite
13771
13772 2005-02-14  Miguel de Icaza  <miguel@novell.com>
13773
13774         * NumericUpDown.cs (Increment, ToString): Add.
13775         (DecimalPlaces): implement.
13776         
13777         Add attributes.
13778         
13779         * UpDownBase.cs: Add the designer attributes.
13780
13781 2005-02-13  Peter Bartok  <pbartok@novell.com>
13782
13783         * Panel.cs: Removed border_style, now in Control
13784         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
13785           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
13786
13787 2005-02-13  Peter Bartok  <pbartok@novell.com>
13788
13789         * MouseButtons.cs: Added missing attributes
13790         * XplatUIStructs.cs: Added enumeration for title styles
13791         * LeftRightAlignment.cs: Added missing attributes
13792         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
13793           it compatible with Graphics.FromHwnd()
13794         * SelectedGridItemChangedEventArgs.cs: Fixed property type
13795         * Keys.cs: Added missing attributes
13796         * SelectionRange.cs: Added missing attributes
13797         * SelectionRangeConverter.cs: Added
13798         * XplatUI.cs:
13799           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
13800             ReleaseMenuDC methods
13801           - Renamed ReleaseWindow to UngrabWindow
13802           - Added proper startup notice to allow version identification
13803         * Form.cs:
13804           - Added missing attributes
13805           - Removed FormParent concept
13806         * Label.cs: Removed border_style field, now in Control
13807         * RadioButton.cs: Now properly selects RadioButton when focus is
13808           received
13809         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
13810         * Control.cs:
13811           - Added missing attributes
13812           - Added borderstyle handling
13813           - Removed FormParent concept support
13814           - Fixed calls to XplatUI to match changed APIs
13815           - Fixed bug that would case us to use disposed Graphics objects
13816           - Removed unneeded internal methods
13817           - PerformLayout(): Fixed to handle DockStyle.Fill properly
13818           - SelectNextControl(): Fixed to properly check common parents
13819         * TextBoxBase.cs: Removed border_style field (now in Control)
13820         * MessageBox.cs:
13821           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
13822             fixed calculations for form size
13823           - Added support for localized strings and icons
13824           - Improved form size calculations, added border
13825         * ListView.cs: Removed border_style field (now in Control)
13826         * X11Structs.cs: Moved several structs from X11 driver here
13827         * X11Keyboard.cs: Changed debug message
13828         * Application.cs: Removed FormParent concept support
13829         * CommonDialog.cs:
13830           - Resetting end_modal flag
13831           - Removed FormParent concept support
13832         * NativeWindow.cs: Removed FormParent concept support
13833         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
13834           Client area and Non-Client whole window to allow support for WM_NC
13835           messages
13836         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
13837           prevent using it until it supports Hwnd as per Geoff Norton's request
13838         * ToolBar.cs: Fixed drawing, was not doing proper drawing
13839         * PictureBox.cs: Removed border_style field, now in Control
13840         * XplatUIWin32.cs: Added new driver methods
13841
13842 2005-02-12  Peter Bartok  <pbartok@novell.com>
13843
13844         * OpacityConverter.cs: Implemented
13845         * Hwnd.cs: Internal class to support drivers that need to emulate
13846           client area/non-client area window behaviour
13847
13848 2005-02-11  Peter Bartok  <pbartok@novell.com>
13849
13850         * KeysConverter.cs: Implemented
13851
13852 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
13853
13854         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
13855         * LinkLabel: Added missing attributes
13856         * MainMenu.cs: fixes ToString
13857         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
13858         * ListBox.cs: fixes event position
13859         * TrackBar.cs: adds missing attributes and events
13860         
13861 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
13862
13863         * MenuItem.cs: Use SystemInformation and bug fixes
13864         * MenuAPI.cs: Use SystemInformation and bug fixes
13865
13866 2005-02-09  Jackson Harper  <jackson@ximian.com>
13867
13868         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
13869         their keystate otherwise things like VK_MENU get stuck "on".
13870
13871 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
13872
13873         * ListBox.cs: Fixes AddRange bug
13874         
13875 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
13876
13877         * ProgressBar.cs
13878                 - Add missing attributes
13879                 - Add missing method
13880                 
13881         * CheckedListBox.cs: Added missing attributes
13882                 - Add missing attributes
13883                 - Remove extra method
13884         
13885         * ComboBox.cs: Added missing attributes
13886         * VScrollBar.cs: Added missing attributes
13887         * ScrollBar.cs:  Added missing attributes
13888         * ListBox.cs: Fixes signature, add missing consts
13889         * LinkArea.cs:   Added missing attributes
13890         
13891
13892 2005-02-08  Peter Bartok  <pbartok@novell.com>
13893
13894         * Menu.cs: Added missing attributes
13895         * MainMenu.cs: Added missing attributes
13896         * GroupBox.cs: Added missing attributes
13897         * Label.cs: Added missing attributes
13898         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
13899         * ColorDialog.cs:
13900           - Added Instance and Options properties
13901           - Added missing attributes
13902         * Cursor.cs: Made Serializable
13903         * NotifyIcon: Added missing attributes
13904         * MenuItem.cs: Added missing attributes
13905         * TextBoxBase.cs: Implemented AppendText() and Select() methods
13906         * Panel.cs: Added Missing attributes
13907         * MonthCalendar.cs: Fixed CreateParams
13908
13909 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
13910         
13911         * LinkLabel.cs:
13912                 - Fixes signature
13913                 - Fixes issues with links
13914                 - Adds the class attributes
13915
13916 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
13917         
13918         * ComboBox.cs:
13919                 - Fixes button when no items available in dropdown
13920                 - Fixes repainting problems
13921                 - Adds the class attributes
13922                 
13923 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
13924
13925         * XplatUIOSX.cs: Detect the menu bar and title bar height from
13926         the current theme.  Cache these on startup.
13927
13928 2005-02-07  Jackson Harper  <jackson@ximian.com>
13929
13930         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
13931         the scrollbar buttons when they are depressed.
13932
13933 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
13934
13935         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
13936         Get the display size from the main displayid.  We currently dont
13937         support multiple display configurations.
13938
13939 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
13940
13941         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
13942
13943 2005-02-07  Miguel de Icaza  <miguel@novell.com>
13944
13945         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
13946
13947 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
13948
13949         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
13950
13951 2005-02-04  Jackson Harper  <jackson@ximian.com>
13952
13953         * ThemeWin32Classic.cs: Respect the clipping rect when
13954         drawing. Only fill the intersection of clips and rects so there
13955         isn't a lot of large fills.
13956         * ScrollBar.cs: Pass the correct clipping rect to the theme
13957         engine. Remove some debug code.
13958
13959 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
13960         
13961         * DateTimePicker.cs:
13962                 - Fixed crash on DateTime.Parse, use Constructor instead
13963
13964 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
13965         
13966         * MenuItem.cs:
13967         * MenuAPI.cs:
13968                 - Owner draw support (MeasureItem and DrawItem)
13969
13970 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
13971         
13972         *  Menu.cs:
13973                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
13974                 - Fixes MenuItems.Add range
13975         * MenuItem.cs:
13976                 - MergeMenu and Clone and CloneMenu functions
13977
13978 2005-02-03  Jackson Harper  <jackson@ximian.com>
13979
13980         * ScrollBar.cs: Make abstract
13981         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
13982         is abstract.
13983
13984 2005-02-03  Jackson Harper  <jackson@ximian.com>
13985
13986         * ScrollBar.cs: First part of my scrollbar fixups. This removes
13987         all the unneeded refreshes and uses invalidates with properly
13988         computed rects.
13989
13990 2005-02-03  Peter Bartok  <pbartok@novell.com>
13991
13992         * ComponentModel.cs: Added
13993         * IDataGridEditingService.cs: Added
13994         * Timer.cs: Added missing attributes
13995         * ToolTip.cs: Added missing attributes
13996
13997 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
13998
13999         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
14000
14001 2005-02-03  Peter Bartok  <pbartok@novell.com>
14002
14003         * ListBox.cs: Added missing attributes
14004
14005 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
14006         
14007         * ListBox.cs:
14008                 - Fixes font height after font change
14009                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
14010                 
14011 2005-02-02  Peter Bartok  <pbartok@novell.com>
14012
14013         * HandleData.cs: Introduced static methods to allow class
14014           to be more self-contained and track it's own HandleData objects
14015         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
14016           HandleData to use new static methods
14017
14018 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
14019
14020         * Combobox.cs:
14021                 - Fixes default size and PreferredHeight
14022                 - Missing events
14023                 - ObjectCollection.Insert implementation
14024                 
14025         * ListControl.cs
14026                 - Fixes signature
14027         * ListBox.cs:
14028                 - Several fixes
14029                 - ObjectCollection.Insert implementation
14030                 - No selection after clean
14031                 - Small fixes
14032
14033 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
14034
14035         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
14036
14037 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
14038
14039         * Combobox.cs:
14040                 - Caches ItemHeight calculation for OwnerDrawVariable
14041                 - Handles dropdown properly
14042                 - Fixes several minor bugs
14043
14044 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
14045
14046         * ListBox.cs:
14047                 - Fixes 71946 and 71950
14048                 - Fixes changing Multicolumn on the fly
14049                 - Fixes keyboard navigation on Multicolumn listboxes
14050
14051 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
14052         
14053         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
14054         crash reporter log.
14055
14056 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
14057
14058         * XplatUIOSX.cs: Allow applications to actually exit.
14059
14060 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
14061
14062         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
14063         their parent at creation time rather than lazily later.  Fixes a major
14064         regression we were experiencing.
14065
14066 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
14067
14068         * ThemeWin32Classic.cs: more date time picker painting fixes
14069         * DateTimePicker.cs: more monthcalendar drop down fixes
14070         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
14071
14072 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
14073
14074         * ScrollBar.cs:
14075                 - When moving the thumb going outside the control should stop the moving
14076                 - Adds the firing of missing events
14077                 - Fixes no button show if Size is not specified
14078                 - End / Home keys for keyboard navigation
14079
14080 2005-01-30  Peter Bartok  <pbartok@novell.com>
14081
14082         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
14083           sanity check to prevent theoretical loop
14084         * XplatUIWin32.cs (SetVisible): Removed debug output
14085         * XplatUIX11.cs (SystrayChange): Added sanity check
14086         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
14087         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
14088           behaviour, valid until the X11 client window rewrite is done
14089         * TextBox.cs (ctor): Setting proper default foreground and background
14090           colors
14091
14092 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
14093
14094         * Theme: Added DrawDateTimePicker to interface
14095         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
14096         * DateTimePicker.cs: Created (still needs keys and painting code)
14097         * DateTimePickerFormat.cs: added
14098         * MonthCalendar.cs: fixed CreateParams for popup window mode
14099           
14100 2005-01-29  Peter Bartok  <pbartok@novell.com>
14101
14102         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
14103           this should also the calculations for ligher/darker
14104         * Theme.cs: Fixed defaults for ScrollBar widths/heights
14105
14106 2005-01-29  Peter Bartok  <pbartok@novell.com>
14107
14108         * ArrangeDirection.cs: Added
14109         * ArrangeStartingPositon.cs: Added
14110         * SystemInformation.cs: Implemented
14111         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
14112           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
14113           used by SystemInformation class
14114         * X11Strucs.cs: Added XSizeHints structure
14115         * MenuAPI.cs:
14116           - Fixed CreateParams to make sure the menu window is always visible
14117           - TrackPopupMenu: Added check to make sure we don't draw the
14118             menu offscreen
14119
14120 2005-01-29  Peter Bartok  <pbartok@novell.com>
14121
14122         * HandleData.cs: Added method for altering invalid area
14123         * TextBoxBase.cs: Implemented TextLength
14124
14125 2005-01-28  Peter Bartok  <pbartok@novell.com>
14126
14127         * XplatUIX11.cs: Improvement over last patch, not sending
14128           the WM_PAINT directly anymore, instead we scroll any pending
14129           exposed areas and let the system pick out the WM_PAINT later
14130
14131 2005-01-28  Peter Bartok  <pbartok@novell.com>
14132
14133         * SWF.csproj: Deleted, no longer used. Instead,
14134           Managed.Windows.Forms/SWF.csproj should be used
14135         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
14136           directly, to avoid a potential race condition with the next
14137           scroll
14138
14139 2005-01-28  Peter Bartok  <pbartok@novell.com>
14140
14141         * XplatUI.cs: Made class internal
14142
14143 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
14144
14145         * CheckedListBox.cs:
14146                 - Draw focus
14147                 - Fixed Drawing
14148                 - Missing methods and events
14149
14150 2005-01-27  Peter Bartok  <pbartok@novell.com>
14151
14152         * Application.cs (Run): Don't use form if we don't have one
14153
14154 2005-01-27  Peter Bartok  <pbartok@novell.com>
14155
14156         * TextBoxBase.cs (get_Lines): Fixed index off by one error
14157
14158 2005-01-27  Peter Bartok  <pbartok@novell.com>
14159
14160         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
14161         * GridItem.cs: Added; Patch by Jonathan S. Chambers
14162         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
14163         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
14164         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
14165         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
14166         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
14167         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
14168         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
14169         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
14170         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
14171         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
14172
14173 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
14174
14175         * Combobox.cs:
14176                 - Draw focus on Simple Combobox
14177                 - Fixes drawing issues
14178                 - fixes 71834
14179
14180 2005-01-27  Peter Bartok  <pbartok@novell.com>
14181
14182         * Form.cs:
14183           - Place window in default location, instead of hardcoded 0/0
14184           - Send initial LocationChanged event
14185         * Control.cs:
14186           - UpdateBounds after creation to find out where the WM placed us
14187           - Make sure that if the ParentForm changes location the Form
14188             is notified
14189         * XplatUIX11.cs: XGetGeometry will not return the coords relative
14190             to the root, but to whatever the WM placed around us.
14191             Translate to root coordinates before returning toplevel
14192             coordinates
14193         * XplatUIWin32.cs: Removed debug output
14194         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
14195           flag to GetWindowPos, to allow translation of coordinates on X11
14196
14197 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
14198
14199         * ListBox.cs: connect LostFocus Event
14200
14201 2005-01-27  Peter Bartok  <pbartok@novell.com>
14202
14203         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
14204           XplatUIX11.cs: Extended the Systray API
14205         * Form.cs: Removed debug output
14206         * Application.cs: Fixed focus assignment, always need to call
14207           XplatUI.Activate() since Form.Activate() has rules that may
14208           prevent activation
14209         * NotifyIcon.cs: Should be complete now
14210         * ToolTip.cs: Worked around possible timer bug
14211
14212 2005-01-27  Jackson Harper  <jackson@ximian.com>
14213
14214         * TabControl.cs:
14215         - Only invalidate the effected tabs when the
14216         selected index changes. This reduces drawing and gets rid of some
14217         flicker.
14218         - Only refresh if the tabs need to be shifted, otherwise only
14219         invalidate the slider button.
14220         - On windows the tabs are not filled to right if the slider is
14221         visible.
14222         
14223 2005-01-27  Jackson Harper  <jackson@ximian.com>
14224
14225         * TabControl.cs: Only refresh on mouseup if we are showing the
14226         slider. Also only invalidate the button whose state has changed.
14227
14228 2005-01-26  Peter Bartok  <pbartok@novell.com>
14229
14230         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
14231         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
14232           and SystrayRemove() methods
14233         * XplatUIOSX.cs: Stubbed Systray methods
14234         * XplatUIX11.cs:
14235           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
14236             methods
14237           - Fixed broken XChangeProperty calls (marshalling messed up things)
14238         * X11Structs.cs: Added enums and structs required for Size hinting
14239         * NotifyIcon.cs: Added & implemented
14240
14241 2005-01-26  Jackson Harper  <jackson@ximian.com>
14242
14243         * TabControl.cs: Space vertically layed out tabs properly.
14244
14245 2005-01-26  Peter Bartok  <pbartok@novell.com>
14246
14247         * Form.cs (CreateClientParams): Always set the location to 0,0
14248           since we're a child window.
14249
14250         * Control.cs (SetVisibleCore): Always explicitly setting the location
14251           of a toplevel window, apparently X11 doesn't like to move windows
14252           while they're not mapped.
14253
14254 2005-01-26  Jackson Harper  <jackson@ximian.com>
14255
14256         * TabControl.cs: Implement FillToRight size mode with vertically
14257         rendered tabs.
14258
14259 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
14260
14261         * ControlPaint.cs, ThemeWin32Classic.cs
14262                 - Fixes DrawFocusRectangle
14263
14264 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
14265
14266         * MenuAPI.cs:
14267                 - MenuBar tracking only starts when item is first clicked
14268                 - Fixes menu hidding for multiple subitems
14269                 - Unselect item in MenuBar when item Executed
14270                 - Fixes bug 71495
14271
14272 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
14273
14274         * ListControl.cs:
14275                 - IsInputKey for ListBox
14276         * ListBox.cs:
14277                 - Focus item
14278                 - Shift and Control item selection
14279                 - Implement SelectionMode.MultiExtended
14280                 - Fixes RightToLeft
14281         * ComboBox.cs:
14282                 - IsInputKey implemented
14283                 - Do not generate OnTextChangedEdit on internal txt changes
14284                 
14285 2005-01-23  Peter Bartok  <pbartok@novell.com>
14286
14287         * AccessibleObject.cs: Partially implemented Select()
14288         * MonthCalendar.cs: Added missing attributes and events
14289         * Form.cs: Fixed CreateParams behaviour, now controls derived from
14290           form can properly override CreateParams.
14291         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
14292           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
14293           Control performs Invalidate & Update
14294         * NativeWindow (CreateHandle): Added special handling for Form
14295           and Form.FormParent classes to allow overriding of From.CreateParams
14296         * Control.cs:
14297           - ControlNativeWindow: Renamed 'control' variable to more intuitive
14298             name 'owner'
14299           - ControlNativeWindow: Added Owner property
14300           - Removed usage of Refresh() on property changes, changed into
14301             Invalidate(), we need to wait until the queue is processed for
14302             updates, direct calls might cause problems if not all vars for
14303             Paint are initialized
14304           - Added call to UpdateStyles() when creating the window, to set any
14305             styles that CreateWindow might have ignored.
14306           - Added support for Form CreateParent overrides to UpdateStyles()
14307         * MessageBox.cs: Removed no longer needed FormParent override stuff,
14308           CreateParams are now properly overridable
14309         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
14310           CreateParams are now properly overridable
14311
14312 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
14313
14314         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
14315         OnTextBoxChanged.
14316
14317         Capture LostFocus and OnTextBoxChanged.  The later introduces a
14318         recursive invocation that I have not figured out yet.
14319
14320         Reset the timer when not using (it was accumulating).
14321
14322
14323         (OnTextBoxChanged): Set UserEdit to true here to track whether the
14324         user has made changes that require validation.
14325
14326         Reset changing to avoid loops.
14327
14328 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
14329
14330         * NumericUpDown.cs: Display value at startup.
14331
14332         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
14333         ValidateEditText.
14334
14335         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
14336         filled in.  Added some basic parsing of text.
14337
14338         Still missing the OnXXX method overrides, and figuring out the
14339         events that must be emitted.
14340
14341         * UpDownBase.cs: Handle UserEdit on the Text property.
14342         
14343 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
14344
14345         * ComboBox.cs:
14346           - Fixes IntegralHeight
14347           - ToString method
14348
14349 2005-01-21  Jackson Harper  <jackson@ximian.com>
14350
14351         * TabControl.cs: Set the SelectedIndex property when SelectedTab
14352         is set so that the page visibility is updated and the tabs are
14353         sized correctly.
14354
14355 2005-01-21  Jackson Harper  <jackson@ximian.com>
14356
14357         * TabControl.cs: Use cliping rectangle for blitting. Give the
14358         theme the clipping rect so we can do clipping while
14359         drawing. Remove some debug code.
14360
14361 2005-01-21  Jackson Harper  <jackson@ximian.com>
14362
14363         * TabPage.cs: Add a new method so tab pages can force the tab
14364         control to recalculate the tab page sizes.
14365         * TabControl.cs: UpdateOwner needs to make the tab control recalc
14366         sizes.
14367
14368 2005-01-20  Jackson Harper  <jackson@ximian.com>
14369
14370         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
14371
14372 2005-01-20  Jackson Harper  <jackson@ximian.com>
14373
14374         * TreeView.cs: Set the bounds for nodes properly. They were
14375         getting screwed up when checkboxes were not enabled, but images
14376         were.
14377
14378 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
14379
14380         * ListBox.cs:
14381                 - Owner draw support
14382                 - Fixes
14383                 
14384 2005-01-20  Jackson Harper  <jackson@ximian.com>
14385
14386         * XplatUIStructs.cs: More misc keys
14387         * X11Keyboard.cs: Ignore some control keys.
14388
14389 2005-01-20  Jackson Harper  <jackson@ximian.com>
14390
14391         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
14392         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
14393
14394 2005-01-19  Peter Bartok  <pbartok@novell.com>
14395
14396         * Control.cs: Un-selecting the control when it is loosing focus
14397
14398 2005-01-19  Jackson Harper  <jackson@ximian.com>
14399
14400         * TreeView.cs: Hook up to the text controls leave event so we can
14401         end editing when the users clicks outside the text box.
14402         
14403 2005-01-19  Jackson Harper  <jackson@ximian.com>
14404
14405         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
14406         get set in the conversion array.
14407
14408 2005-01-19  Peter Bartok  <pbartok@novell.com>
14409
14410         * Application.cs (ModalRun): Added a call to CreateControl to ensure
14411           focus is properly set
14412         * Button.cs:
14413           - Added missing attributes
14414           - removed styles, those are already set in the base class
14415         * ButtonBase.cs:
14416           - Added missing attributes
14417           - Added clip window styles
14418         * CheckBox.cs: Added missing attributes
14419         * CommonDialog.cs:
14420           - FormParentWindow.CreateParams: Added required clip styles
14421         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
14422           also filters modifier keys
14423         * MessageBox.cs:
14424           - Added assignment of Accept and Cancel button to enable Enter
14425             and Esc keys in MessageBox dialogs
14426           - FormParentWindow.CreateParams: Added required clip styles
14427         * RadioButton.cs: Added missing attributes
14428         * TextControl.cs: No longer draws selection if control does not
14429           have focus
14430         * TextBoxBase.cs:
14431           - Now draws simple rectangle around test area to make it obvious
14432             there's a control. This is a hack until we properly support borders
14433           - A few simple fixes to support selections better, now erases selected
14434             text when typing, and resets selection when using movement keys
14435
14436 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
14437
14438         * UpDownBase.cs: Added some new properties.
14439
14440         * DomainUpDown.cs: Implement a lot to get my test working.
14441
14442 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
14443
14444         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
14445
14446 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
14447
14448         * OSXStructs (WindowAttributes): Fixed csc complaints
14449
14450 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
14451
14452         * XplayUIOSX.cs:
14453           OSXStructs.cs: Initial refactor to move enums and consts into
14454           OSXStructs and use them in the driver for greater readability.
14455
14456 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
14457
14458         * XplatUIOSX.cs: Initial support for Standard Cursors.
14459         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
14460
14461 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
14462
14463         * ComboBox.cs: ability to change style when the ctrl is already
14464         created, missing methods and events, bug fixes, signature fixes
14465
14466 2005-01-19  Peter Bartok  <pbartok@novell.com>
14467
14468         * Cursors.cs (ctor): Added ctor to fix signature
14469
14470 2005-01-18  Peter Bartok  <pbartok@novell.com>
14471
14472         * Button.cs: Implemented DoubleClick event
14473         * ButtonBase.cs:
14474           - Fixed keyboard handling to behave like MS, where the press of
14475             Spacebar is equivalent to a mousedown, and the key release is
14476             equivalent to mouseup. Now a spacebar push will give the same
14477             visual feedback like a mouse click.
14478           - Added missing attributes
14479           - Added ImeModeChanged event
14480           - Added support for generating DoubleClick event for derived classes
14481         * CheckBox.cs:
14482           - Implemented DoubleClick event
14483           - Added missing attributes
14484         * CommonDialog.cs: Added missing attribute
14485         * ContextMenu.cs: Added missing attributes
14486         * RadioButton.cs:
14487           - AutoChecked buttons do not allow to be unselected when clicked
14488             (otherwise we might end up with no selected buttons in a group)
14489           - Added missing attributes
14490           - Implemented DoubleClickEvent
14491         * ThreadExceptionDialog.cs: Enabled TextBox code
14492
14493 2005-01-18  Peter Bartok  <pbartok@novell.com>
14494
14495         * Form.cs: Removed debug output
14496         * Button.cs: Added support for DoubleClick method
14497
14498 2005-01-18  Peter Bartok  <pbartok@novell.com>
14499
14500         * Form.cs:
14501           - Added method to parent window that allows triggering size
14502             calculations when a menu is added/removed
14503           - set_Menu: Cleaned up mess from early days of Form and Control,
14504             now properly triggers a recalc when a menu is added/removed
14505           - Added case to select form itself as focused form if no child
14506             controls exist
14507           - Added PerformLayout call when showing dialog, to ensure properly
14508             placed controls
14509         * Control.cs:
14510           - Select(): Made internal so Form can access it
14511           - Focus(): Only call Xplat layer if required (avoids loop), and sets
14512             status
14513         * Application.cs (Run): Removed hack and calls PerformLayout instead
14514           to trigger calculation when Form becomes visible
14515
14516 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
14517
14518         * ComboBox.cs: fixes for ownerdraw
14519
14520 2005-01-18  Peter Bartok  <pbartok@novell.com>
14521
14522         * TextControl.cs:
14523           - Sentinel is no longer static, each Document gets it's own, this
14524             avoids locking or alternatively overwrite problems when more
14525             than one text control is used simultaneously.
14526           - Switched to use Hilight and HilightText brushes for text selection
14527
14528         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
14529
14530 2005-01-18  Peter Bartok  <pbartok@novell.com>
14531
14532         * Control.cs:
14533           - Hooked up the following events:
14534                 o ControlAdded
14535                 o ControlRemoved
14536                 o HandleDestroyed
14537                 o ImeModeChanged
14538                 o ParentChanged
14539                 o TabStopChanged
14540                 o Invalidated
14541                 o SystemColorsChanged
14542                 o ParentFontChanged
14543                 o Move
14544           - Removed debug output
14545           - Added a call to the current theme's ResetDefaults when a color change
14546             is detected
14547         * Form.cs: Now setting the proper ImeMode
14548         * Theme.cs: Defined a method to force recreation of cached resources
14549           and rereading of system defaults (ResetDefaults())
14550         * ThemeWin32Classic.cs: Added ResetDefaults() stub
14551
14552 2005-01-17  Peter Bartok  <pbartok@novell.com>
14553
14554         * Control.cs: Added missing attributes
14555
14556 2005-01-17  Jackson Harper  <jackson@ximian.com>
14557
14558         * TreeNode.cs: Implement editing. Add missing properties selected
14559         and visible.
14560         * TreeView.cs: Implement node editing. Also some fixes to use
14561         Invalidate (invalid area) instead of Refresh when selecting.
14562
14563 2005-01-17  Peter Bartok  <pbartok@novell.com>
14564
14565         * Control.cs:
14566           - Implemented InvokeGotFocus() method
14567           - Implemented InvokeLostFocus() method
14568           - Implemented InvokePaint() method
14569           - Implemented InvokePaintBackground() method
14570           - Implemented InvokeClick() method
14571           - Implemented FindForm() method
14572           - Implemented RectangleToClient() method
14573           - Implemented ClientToRectangle() method
14574           - Implemented ResetBackColor() method
14575           - Implemented ResetCursor() method
14576           - Implemented ResetFont() method
14577           - Implemented ResteForeColor() method
14578           - Implemented ResetImeMode() method
14579           - Implemented ResetLeftToRight() method
14580           - Implemented ResetText() method
14581           - Implemented Scale() methods
14582           - Implemented ScaleCore() method
14583           - Implemented Update() method
14584           - Removed unused variables
14585           - Stubbed AccessibilityNotifyClients and
14586             ControlAccessibleObject.NotifyClients() methods (dunno what to do
14587             with those yet)
14588           - Now setting proper default for RightToLeft property
14589           - Fixed bug in SetClientSizeCore that would cause windows to get
14590             really big
14591           - Now sending Click/DoubleClick events
14592           - Now selecting controls when left mouse button is clicked on
14593             selectable control
14594         * AccessibleEvents.cs: Added
14595         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
14596         * XplatUIOSX.cs: Stubbed UpdateWindow() method
14597         * XplatUIWin32.cs: Implemented UpdateWindow() method
14598         * XplatUIX11.cs: Implemented UpdateWindow() method
14599         * Form.cs: Removed stray semicolon causing CS0162 warning
14600         * ThemeWin32Classic.cs: Fixed unused variable warnings
14601         * ScrollableControl.cs: Now calls base method for ScaleCore
14602         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
14603           style to avoid interference with internal click handler (which is
14604           different than standard Control click handling)
14605         * RadioButton.cs:
14606           - Now unchecks all sibling radio buttons when control is
14607             selected (Fixes #68756)
14608           - Removed internal tabstop variable, using the one inherited from
14609             Control
14610
14611 2005-01-17  Jackson Harper  <jackson@ximian.com>
14612
14613         * NavigateEventArgs.cs: Fix base type.
14614         * LinkLabel.cs: Sig fix
14615         
14616 2005-01-17  Jackson Harper  <jackson@ximian.com>
14617
14618         * TreeView.cs: Only invalidate the effected nodes bounds when
14619         selecting nodes.
14620
14621 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
14622
14623         * XplatUIWin32.cs: fixes Win32 marshaling
14624         * XplatUIX11.cs: fixes method signature
14625
14626 2005-01-17  Peter Bartok  <pbartok@novell.com>
14627
14628         * XplatUIX11.cs: Clean up resources when we no longer need them
14629
14630 2005-01-17  Peter Bartok  <pbartok@novell.com>
14631
14632         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
14633           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
14634           and DestroyCursor() methods.
14635         * Cursor.cs: Partially implemented, now supports standard cursors;
14636           still contains some debug code
14637         * Cursors.cs: Implemented class
14638         * Control.cs:
14639           - WndProc(): Added handling of WM_SETCURSOR message, setting the
14640             appropriate cursor
14641           - Implemented Cursor property
14642           - Replaced break; with return; more straightforwar and possibly
14643             faster
14644           - Now properly setting the result for WM_HELP
14645         * X11Structs.cs: Added CursorFontShape enum
14646         * XplatUIStructs.cs:
14647           - Added StdCursor enum (to support DefineStdCursor() method)
14648           - Added HitTest enum (to support sending WM_SETCURSOR message)
14649         * XplatUIX11.cs:
14650           - Now sends the WM_SETCURSOR message
14651           - Implemented new cursor methods
14652         * XplatUIOSX.cs: Stubbed new cursor methods
14653         * XplatUIWin32.cs:
14654           - Implemented new cursor methods
14655           - Added GetSystemMetrics function and associated enumeration
14656
14657 2005-01-15  Peter Bartok  <pbartok@novell.com>
14658
14659         * Control.cs:
14660           - WndProc(): Now handles EnableNotifyMessage
14661           - SelectNextControl(): Fixed bug where if no child or sibling
14662             controls exist we looped endlessly
14663
14664 2005-01-14  Jackson Harper  <jackson@ximian.com>
14665
14666         * TreeView.cs: Recalculate the tab pages when a new one is added
14667         so that the proper bounding rects are created.
14668
14669 2005-01-14  Jackson Harper  <jackson@ximian.com>
14670
14671         * TreeView.cs: Draw a gray box instead of a grip in the lower
14672         right hand corner when there are both horizontal and vertical
14673         scroll bars.
14674
14675 2005-01-14  Jackson Harper  <jackson@ximian.com>
14676
14677         * Control.cs: When erasing backgrounds use FromHwnd instead of
14678         FromHdc when there is a NULL wparam. This occurs on the X driver.
14679         * XplatUIX11.cs: Set the wparam to NULL.
14680
14681 2005-01-13  Jackson Harper  <jackson@ximian.com>
14682
14683         * PictureBox.cs: Implement missing methods (except ToString, need
14684         to test that on windows) and events. When visibility is changed we
14685         need to redraw the image because the buffers are killed. When size
14686         is changed refresh if the sizemode needs it.
14687
14688 2005-01-13  Peter Bartok  <pbartok@novell.com>
14689
14690         * Control.cs (SelectNextControl): Was using wrong method to select
14691           a control
14692
14693 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
14694
14695         * ComboBox.cs: fixes dropstyle
14696
14697 2005-01-13  Peter Bartok  <pbartok@novell.com>
14698
14699         * Form.cs:
14700           - Implemented Select() override
14701           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
14702           - Now sets keyboard focus on startup
14703         * Control.cs (SelectNextControl): Now properly handles directed=true
14704         * TextBoxBase.cs:
14705           - WndProc: Now passes tab key on to base if AcceptTabChar=false
14706           - Added (really bad) focus rectangle (mostly for testing)
14707         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
14708           to enforce redraw on focus changes
14709         * ContainerControl.cs:
14710           - Fixed detection of Shift-Tab key presses
14711           - Fixed traversal with arrow keys
14712         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
14713           gonna keep this or if it's complete yet
14714         
14715 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
14716
14717         * ComboBox.cs: missing properties, fixes
14718
14719 2005-01-13  Peter Bartok  <pbartok@novell.com>
14720
14721         * Panel.cs (ctor): Setting Selectable window style to off
14722         * Splitter.cs (ctor): Setting Selectable window style to off
14723         * GroupBox.cs (ctor): Setting Selectable window style to off
14724         * Label.cs (ctor): Setting Selectable window style to off
14725
14726 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
14727
14728         * UpDownBase.cs (InitTimer): If the timer has been already
14729         created, enable it.
14730
14731         Use a TextBox instead of a Label.
14732
14733 2005-01-12  Jackson Harper  <jackson@ximian.com>
14734
14735         * TreeView.cs: Refresh the tree after sorting the nodes. Always
14736         draw the connecting node lines (when ShowLines is true).
14737         * TreeNode.cs: The nodes index can now be updated. This is used
14738         when a node collection is sorted.
14739         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
14740         insert or an existing unsorted node collection can be sorted.
14741         
14742 2005-01-12  Peter Bartok  <pbartok@novell.com>
14743
14744         * ContainerControl.cs: Implemented ProcessDialogKeys()
14745
14746 2005-01-12  Peter Bartok  <pbartok@novell.com>
14747
14748         * Control.cs:
14749           - Implemented SelectNextControl() method
14750           - Several focus related bug fixes
14751           - Fixed Docking calculations to match MS documentation and
14752             behaviour
14753
14754 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
14755
14756         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
14757         bug fixes
14758
14759 2005-01-12  Peter Bartok  <pbartok@novell.com>
14760
14761         * Control.cs:
14762           - Fixed broken Contains() method
14763           - Implemented GetNextControl() method. Finally. This is the pre-
14764             requisite for focus handling.
14765
14766 2005-01-12  Peter Bartok  <pbartok@novell.com>
14767
14768         * OSXStrucs.cs: Added
14769
14770 2005-01-12  Peter Bartok  <pbartok@novell.com>
14771
14772         * XplatUIWin32.cs:
14773           - Removed PeekMessageFlags
14774           - Implemented SetWindowStyle() method
14775         * XplatUIStructs.cs: Added PeekMessageFlags
14776         * X11Structs: Added missing border_width field to XWindowChanges struct
14777         * XplatUIX11.cs:
14778           - PeekMessage: Now throws exception if flags which are not yet
14779             supported are passed
14780           - Implemented SetWindowStyle() method
14781           - Fixed SetZOrder to handle AfterHwnd properly
14782         * XplatUI.cs: Added SetWindowStyle() method
14783         * XplatUIDriver.cs: Added SetWindowStyle() abstract
14784         * Control.cs:
14785           - Implemented UpdateStyles() method
14786           - Implemented UpdateZOrder() method
14787         * XplatUIOSX.cs: Added SetWindowStyle() stub
14788
14789 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
14790
14791         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
14792         button mouse).
14793
14794
14795 2005-01-11  Jackson Harper  <jackson@ximian.com>
14796
14797         * TreeView.cs: Still need to draw lines to siblings even if out of
14798         the current node is out of the clip.
14799
14800 2005-01-11  Jackson Harper  <jackson@ximian.com>
14801
14802         * TreeView.cs: When setting the hbar/vbar/grip position use
14803         SetBounds so that perform layout is only called once. Also suspend
14804         and resume layout so layout is only done once for all controls.
14805         - Removed some debug fluff
14806         * SizeGrip.cs: Call base implmentation in overriding methods.
14807         - When visibility is changed the drawing buffers are killed so we
14808         need to redraw.
14809
14810 2005-01-11  Jackson Harper  <jackson@ximian.com>
14811
14812         * TreeView.cs: Calculate the open node count while drawing. This
14813         saves us an entire tree traversal for every paint operation. Use
14814         a member var for the open node count so less vars are passed around.
14815
14816 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
14817
14818         * MonthCalendar.cs:
14819         - fixed selection to use mousemove, not mouse polling on timer
14820         * ThemeWin32Classic.cs
14821         - removed redundant unused variable "no_more_content"
14822         
14823 2005-01-11  Peter Bartok  <pbartok@novell.com>
14824
14825         * XplatUIX11.cs (DoEvents): Needs to return when no more events
14826           are pending, so it now calls PeekMessage instead of GetMessage;
14827           implemented a incomplete version of PeekMessage
14828         
14829 2005-01-11  Peter Bartok  <pbartok@novell.com>
14830
14831         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
14832           I18n issues
14833         * TextBoxBase.cs: Added sending of TextChanged event
14834
14835 2005-01-10  Jackson Harper  <jackson@ximian.com>
14836
14837         * TreeView.cs: Try not to draw outside the clipping rectangle on
14838         each node element.
14839
14840 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
14841
14842         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
14843
14844 2005-01-10  Jackson Harper  <jackson@ximian.com>
14845
14846         * TreeView.cs:
14847         - Implement fast scrolling. Now only the newly
14848         exposed nodes are drawn and the old image is moved using the
14849         XplatUI::ScrollWindow method.
14850         - Factor in height of nodes when calculating whether or not the
14851         node is in the clipping rect.
14852
14853 2005-01-10  Jackson Harper  <jackson@ximian.com>
14854
14855         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
14856
14857 2005-01-10  Peter Bartok  <pbartok@novell.com>
14858
14859         * Application.cs: Added temporary hack to resolve all our resize
14860           required issues on startup. This will get fixed properly at
14861           some point in the future
14862
14863 2005-01-10  Jackson Harper  <jackson@ximian.com>
14864
14865         * SizeGrip.cs: New internal class that is used as a sizing
14866         grip control...hence the name.
14867
14868 2005-01-10  Peter Bartok  <pbartok@novell.com>
14869
14870         * Control.cs: Implemented proper TabIndex handling, now assigning
14871           a tabindex when a control is added to a container
14872         * GroupBox.cs (ctor): Now sets the Container style bit, required
14873           for Control.GetNextControl()
14874
14875 2005-01-09  Jackson Harper  <jackson@ximian.com>
14876
14877         * TextBoxBase.cs: Clear window when scrolling (fixes build).
14878
14879 2005-01-09  Peter Bartok <pbartok@novell.com>
14880
14881         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
14882           XplatUIX11.cs: Added ability to control ScrollWindow expose and
14883           an overload for ScrollWindow to allow only scrolling a rectangle
14884
14885 2005-01-09  Peter Bartok <pbartok@novell.com>
14886
14887         * Form.cs:
14888           - Implemented SetDesktopBounds method
14889           - Implemented SetDesktopLocation method
14890
14891 2005-01-08  Jackson Harper  <jackson@ximian.com>
14892
14893         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
14894         the node count has changed, this removes to VScroll::Refresh calls
14895         when drawing.
14896
14897 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
14898
14899         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
14900
14901 2005-01-07  Jackson Harper  <jackson@ximian.com>
14902
14903         * TreeNode.cs: Just update the single node when it is
14904         checked. Don't refresh after toggling, the Expand/Collapse already
14905         handles this.
14906         * TreeView.cs: Respect clipping a little more when drawing. Try
14907         not to redraw things that don't need to be redrawn. Just hide the
14908         scrollbars when they are no longer needed instead of removing
14909         them, so they don't have to be created again and again.
14910         
14911 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
14912
14913         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
14914         coordinates to window space to place the caret properly, FIXED.
14915         Implement GetWindowState & SetWindowState
14916
14917 2005-01-06  Peter Bartok <pbartok@novell.com>
14918
14919         * Form.cs:
14920           - Implemented ClientSize property
14921           - Implemented DesktopBounds property
14922           - Implemented DesktopLocation property
14923           - Implemented IsRestrictedWindow property
14924           - Implemented Size property
14925           - Implemented TopLevel property
14926           - Implemented FormWindowState property
14927         * Control.cs:
14928           - Implemented GetTopLevel() method
14929           - Implemented SetTopLevel() method
14930         * X11Structs.cs (Atom):
14931           - Added AnyPropertyType definition
14932           - Added MapState definiton and updated XWindowAttribute struct
14933         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
14934         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
14935         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
14936         * XplatUIWin32.cs:
14937           - Implemented GetWindowState() and SetWindowState() methods
14938           - Fixed Win32GetWindowLong return type
14939         * XplatUIX11.cs:
14940           - Introduced central function for sending NET_WM messages
14941           - Implemented GetWindowState() and SetWindowState() methods
14942         * TextBoxBase.cs (set_Lines):
14943           - Now uses Foreground color for text added via Text property (Duh!)
14944           - Added code to remember programmatically requested size (fixes
14945             behaviour when Multiline is set after Size)
14946           - Added AutoSize logic
14947
14948 2005-01-06  Jackson Harper  <jackson@ximian.com>
14949
14950         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
14951
14952 2005-01-06  Jackson Harper  <jackson@ximian.com>
14953
14954         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
14955         set to less then 0.
14956
14957 2005-01-06  Jackson Harper  <jackson@ximian.com>
14958
14959         * ScrollableControl.cs: Lazy init the scrollbars.
14960         
14961 2005-01-06  Jackson Harper  <jackson@ximian.com>
14962
14963         * Theme.cs: Speed up getting pens and solid brushes, by using
14964         their ARGB as a hash instead of tostring and not calling Contains.
14965
14966 2005-01-06  Peter Bartok <pbartok@novell.com>
14967
14968         * Form.cs:
14969           - Implemented OnActivated and OnDeactivate event trigger
14970           - Implemented Activate() method
14971           - Fixed ShowDialog() to activate the form that was active before
14972             the dialog was shown
14973         * XplatUIX11.cs:
14974           - Added global active_window var that tracks the currently active
14975             X11 window
14976           - Now always grabs Property changes from the root window to always
14977             catch changes on the active window property
14978           - Added code to PropertyNotify handler to send Active/Inactive
14979             messages when state changes. This puts X11 and Win32 en par on
14980             WM_ACTIVATE notifications (except for double notifications when
14981             the user clicks away from our modal window to another one of our
14982             windows)
14983
14984 2005-01-05  Jackson Harper  <jackson@ximian.com>
14985
14986         * ImageList.cs: Implment ctor
14987
14988 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
14989
14990         * XplatUIOSX.cs: Implement Activate/SetTopmost
14991
14992 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
14993
14994         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
14995
14996 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
14997
14998         * XplatUIOSX.cs: Implement GetActive/SetFocus.
14999
15000 2005-01-05  Peter Bartok <pbartok@novell.com>
15001
15002         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
15003           XplatUIOSX.cs: Added GetActive method to return the currently
15004           active window for the application (or null, if none is active)
15005         * Form.cs:
15006           - Implemented ActiveForm
15007           - Commented out owner assignment for modal dialogs (causes problems
15008             on Win32, since the owner will be disabled)
15009           - Reworked some Active/Focus handling (still incomplete)
15010         * CommonDialog.cs: Commented out owner assignment for modal dialogs
15011           (causes problems on Win32, since the owner will be disabled)
15012         * IWin32Window: Added ComVisible attribute
15013
15014 2005-01-05  Peter Bartok <pbartok@novell.com>
15015
15016         * ToolTip.cs (WndProc): Enable setting focus now that we have the
15017           required XplatUI functions.
15018
15019 2005-01-05  Peter Bartok <pbartok@novell.com>
15020
15021         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
15022           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
15023           to implement focus and activation handling; still incomplete and
15024           with debug output
15025
15026 2005-01-04  Peter Bartok <pbartok@novell.com>
15027
15028         * TextBoxBase.cs: Changed access level for Document property to
15029           match switch to internal for TextControl
15030
15031 2005-01-04  Peter Bartok <pbartok@novell.com>
15032
15033         * AccessibleObject: Added ComVisible attribute
15034
15035 2005-01-04  Jackson Harper  <jackson@ximian.com>
15036
15037         * X11Keyboard.cs: Remove unneeded var.
15038
15039 2005-01-04  Jackson Harper  <jackson@ximian.com>
15040
15041         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
15042         but PAINT.
15043         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
15044         ClientMessage. This makes apps exit cleanly (more often).
15045         
15046 2005-01-04  Jackson Harper  <jackson@ximian.com>
15047
15048         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
15049         handling focus, return correct colors and fonts,
15050         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
15051         handle selection, horizontal scrolling, and mouse interaction.
15052
15053 2005-01-04  Peter Bartok <pbartok@novell.com>
15054
15055         * ICommandExecutor.cs: Added
15056         * IDataGridColumnStyleEditingNotificationService.cs: Added
15057         * IFeatureSupport.cs: Added
15058         * IFileReaderService.cs: Added
15059         * IDataObject.cs: Added ComVisible attribute
15060         * AmbientProperties.cs: Added
15061         * BaseCollection.cs: Added missing attributes
15062         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
15063         * BaseCollection.cs: Added missing attributes
15064         * Binding.cs: Added TypeConverter attribute
15065         * BindingContext.cs: Added DefaultEvent attribute
15066         * BindingsCollection.cs: Added DefaultEvent attribute
15067         * Button.cs: Added DefaultValue attribute
15068         * DragEventArgs.cs: Added ComVisible attribute
15069         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
15070         * KeyEventArgs.cs: Added ComVisible attribute
15071         * KeyPressEventArgs.cs: Added ComVisible attribute
15072         * MouseEventArgs.cs: Added ComVisible attribute
15073         * NavigateEventArgs.cs: Added
15074         * NavigateEventHandler.cs: Added
15075         * FeatureSupport.cs: Added
15076         * OSFeature.cs: Added
15077         * Theme.cs: Added abstract Version property to support OSFeature
15078         * ThemeWin32Classic.cs: Added Version property to
15079           support OSFeature.Themes
15080         * ProgressBar.cs: Removed OnPaintBackground override, not required since
15081           the proper styles to avoid background drawing are set, also doesn't
15082           match MS signature
15083         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
15084         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
15085         * ScrollEventArgs.cs: Added ComVisible attribute
15086         * SplitterEventArgs.cs: Added ComVisible attribute
15087         * AccessibleSelection.cs: Added Flags attribute
15088         * Appearance.cs: Added ComVisible attribute
15089         * Border3DSide.cs: Added ComVisible attribute
15090         * Border3DStyle.cs: Added ComVisible attribute
15091         * BorderStyle.cs: Added ComVisible attribute
15092         * DragAction.cs: Added ComVisible attribute
15093         * ErrorBlinkStyle.cs: Added
15094         * ScrollEventType.cs: Added ComVisible attribute
15095         * AnchorStyles.cs: Added Editor attribute
15096         * DockStyle.cs: Added Editor attribute
15097         * HorizontalAlignment.cs: Added ComVisible attribute
15098         * HelpEventArgs.cs: Added ComVisible attribute
15099         * PaintEventArgs.cs: Added IDisposable
15100
15101 2005-01-04  Peter Bartok <pbartok@novell.com>
15102
15103         * TextControl.cs: Switched Line, LineTag and Document classes to
15104           internal
15105
15106 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
15107
15108         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
15109         Simple mode, fixes, IntegralHeight, etc.
15110
15111 2005-01-04  Peter Bartok <pbartok@novell.com>
15112
15113         * TextBoxBase.cs: Using proper font variable now
15114
15115 2005-01-04  Peter Bartok <pbartok@novell.com>
15116
15117         * Form.cs (ShowDialog): Set parent to owner, if provided
15118         * GroupBox.cs: Removed unused vars
15119         * TextControl.cs:
15120           - Added GetHashCode() for Document and LineTag classes
15121           - Removed unused variables
15122           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
15123             to allow translation between continuous char position and line/pos
15124         * CheckBox.cs: Removed vars that are provided by base class
15125         * RadioButton.cs: Removed vars that are provided by base class, added
15126           new keyword where required
15127         * LinkLabel.cs: Added new keyword where required
15128         * Control.cs (WndProc): Removed unused variable
15129         * TextBoxBase.cs:
15130           - Finished SelectionLength property
15131           - Implemented SelectionStart property
15132           - Implemented Text property
15133           - Removed unused vars
15134         * MessageBox.cs: Added new keyword where required
15135         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
15136           WndProc signature
15137         * MenuAPI.cs: Added new keyword where required
15138         * ButtonBase.cs: Removed vars that are provided by base class, added
15139           new keyword where required
15140         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
15141           argument to double, to allow compiling with csc 2.0 (Atsushi ran
15142           into this)
15143         * Application.cs (Run): Now triggers the ThreadExit event
15144         * CommonDialog.cs: Added new keyword where required; now properly sets
15145           parent (owner) for dialog
15146         * XplatUIX11.cs: Commented out unused vars
15147         * StatusBar.cs: Fixed signature for Text property
15148         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
15149
15150 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
15151
15152         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
15153         TrackBar.cs, MonthCalendar.cs: remove unused vars
15154
15155 2005-01-03  Jackson Harper  <jackson@ximian.com>
15156
15157         * ThemeWin32Classic.cs:
15158         * X11Keyboard.cs: Remove unused vars.
15159
15160 2005-01-03  Peter Bartok  <pbartok@novell.com>
15161
15162         * TextBox.cs:
15163           - set_Text: Tied into TextControl
15164           - set_TextAlignment: Tied into TextControl
15165         * TextControl.cs:
15166           - Added alignment properties and implemented alignment handling
15167             and drawing (still has a bug, not generating proper expose events)
15168           - Added new Line() constructor to allow passing the line alignment
15169           - Fixed selection setting, properly handling end<start now
15170           - Added aligment considerations to RecalculateDocument()
15171         * TextBoxBase.cs:
15172           - Now properly enforces control height for single line controls
15173           - Added support for CharacterCasing
15174           - Added IsInputKey override
15175           - Fixed Keys.Enter logic
15176           - Added SetBoundsCore override
15177           - Fixed mouse selection handling
15178
15179 2005-01-03  Jackson Harper  <jackson@ximian.com>
15180
15181         * TreeView.cs:
15182           - Collapse and uncheck all nodes when CheckBoxes is disabled.
15183           - Checkboxes are always aligned to the bottom of the node,
15184           regardless of item height.
15185           - Use the node bounds to draw the text so we can center it when
15186           the item height is greater then the font height.
15187           - Node::Bounds are only the text part of the node.
15188         * TreeNode.cs: New method to combine collapsing and unchecking all
15189           nodes recursively.
15190
15191 2005-01-02  Jackson Harper  <jackson@ximian.com>
15192
15193         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
15194         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
15195         tree when a check is changed. TODO: Only refresh the checked node.
15196
15197 2004-12-30  Jackson Harper  <jackson@ximian.com>
15198
15199         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
15200         * TreeNode.cs: When collapsing make sure to never collapse the
15201         root node.
15202
15203 2004-12-29  Jackson Harper  <jackson@ximian.com>
15204
15205         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
15206         
15207 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
15208
15209         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
15210
15211 2004-12-28  Peter Bartok  <pbartok@novell.com>
15212
15213         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
15214           not yet assigned
15215
15216 2004-12-28  Peter Bartok  <pbartok@novell.com>
15217
15218         * Control.cs (WndProc): Added WM_HELP handler, now generates
15219           HelpRequested event
15220         * Form.cs: Added HelpButton property and required support code
15221         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
15222
15223 2004-12-28  Peter Bartok  <pbartok@novell.com>
15224
15225         * CommonDialog.cs:
15226           - Made DialogForm.owner variable internal
15227           - Added check to ensure owner form is set before setting
15228             owner properties in CreateParams
15229
15230 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
15231
15232         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
15233           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
15234           GetCursorPos.  Fix major visibility issues.  Rework the windowing
15235           system to support borderless/titleless windows (implements menus).
15236           Fix GetWindowPos.  Implement initial background color support for
15237           views.
15238
15239 2004-12-28  Peter Bartok  <pbartok@novell.com>
15240
15241         * Form.cs (get_CreateParams): Make sure we have an owner before using
15242           the owner variable. Implement proper default if no owner exists
15243
15244 2004-12-28  Peter Bartok  <pbartok@novell.com>
15245
15246         * In preparation for making Managed.Windows.Forms the default build target
15247           for System.Windows.Forms, the following stubbed files were added.
15248           Dialogs are currently being implemented by contributors and are only
15249           short-term place holders.
15250         * ColorDialog.cs: Initial check-in (minmal stub)
15251         * DataGrid.cs: Initial check-in (minimal stub)
15252         * DataGridLineStyle.cs: Initial check-in (minimal stub)
15253         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
15254         * DataGridTableStyle.cs: Initial check-in (minimal stub)
15255         * FontDialog.cs: Initial check-in (minimal stub)
15256         * FileDialog.cs: Initial check-in (minimal stub)
15257         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
15258         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
15259         * OpenFileDialog: Initial check-in (minimal stub)
15260         * IComponentEditorPageSite.cs: Initial check-in
15261         * Splitter.cs: Initial check-in (for Jackson)
15262         * SplitterEventArgs.cs: Initial check-in (for Jackson)
15263         * SplitterEventHandler.cs: Initial check-in (for Jackson)
15264         * TextBox.cs: Initial check-in; still needs some wiring to
15265           TextControl backend
15266         * Form.cs: Implemented ControlBox property
15267         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
15268         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
15269         * TextControl.cs: Added selection functionality; added todo header
15270         * TextBoxBase.cs:
15271           - Implemented Lines property
15272           - Implemented TextHeight property
15273           - Implemented SelectedText property
15274           - Implemented SelectionLength property
15275           - Implemented SelectAll method
15276           - Implemented ToString method
15277           - Removed and cleaned up some debug code
15278           - Implemented (still buggy) mouse text selection
15279
15280 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
15281
15282         * ComboBox.cs: Complete DropDownList implementation, fixes.
15283
15284 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
15285
15286         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
15287         * ComboBoxStyle.cs: ComboBoxStyle enum
15288         * ComboBox.cs: Initial work on ComboBox control
15289
15290 2004-12-21  Peter Bartok  <pbartok@novell.com>
15291
15292         * Control.cs (ctor, CreateParams): Moved setting of is_visible
15293           forward so that anything that creates a window gets the default,
15294           also no longer uses Visible property in CreateParams to avoid
15295           walking up the parent chain and possibly get the wrong visible
15296           status. Fixed IsVisible to no longer walk up to the parent.
15297
15298 2004-12-21  Peter Bartok  <pbartok@novell.com>
15299
15300         * Form.cs (ShowDialog): Unset modality for the proper window
15301  
15302 2004-12-20  Peter Bartok  <pbartok@novell.com>
15303
15304         * CommonDialog.cs: Initial check-in
15305
15306 2004-12-20  Peter Bartok  <pbartok@novell.com>
15307
15308         * Control.cs (Visible): Now uses the parent window instead of the
15309           client area window for the property
15310
15311         * Form.cs
15312           - ShowDialog(): Now uses the proper window for modality
15313           - The default visibility state for the form parent is now false. This
15314             will prevent the user from seeing all the changes to the form and
15315             its controls before the application hits Application.Run()
15316           - Removed some stale commented out code
15317
15318         * NativeWindow.cs:
15319           - Added FindWindow() method to have a method to check for existence
15320             of a window handle
15321           - Added ability to override default exception handling (for example
15322             when debugging with VS.Net; to do this the ExternalExceptionHandler
15323             define must be set
15324           - Removed some useless debug output
15325
15326         * XplatUIX11.cs:
15327           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
15328             not working as expected
15329           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
15330             property to allow switching back to the modal window if focus is
15331             given to another one of our windows (Application Modal)
15332           - Now only sets override_redirect if we create a window
15333             without WS_CAPTION
15334           - Moved EventMask selection before mapping of newly created window
15335             so we can catch the map event as well
15336           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
15337           - Added various Atom related DllImports
15338           - Implemented Exit() method
15339           - .ctor() : No longer shows window if WS_VISIBLE is not defined
15340             in the CreateParams
15341
15342         * MessageBox.cs: Now properly deals with the FormParent window by
15343           providing an override the FormParent CreateParams property to
15344           set as POPUP instead of OVERLAPPED window.
15345
15346 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
15347
15348         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
15349         Minor code cleanup.
15350
15351 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
15352         
15353         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
15354
15355 2004-12-18  Peter Bartok  <pbartok@novell.com>
15356
15357         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
15358           implementing SetModal() method
15359
15360 2004-12-18  Peter Bartok  <pbartok@novell.com>
15361
15362         * X11Structs.cs (XGCValues): Fixed type of function element
15363         * XplatUI.cs: Added ScrollWindow() method
15364         * XplatUIDriver.cs: Added ScrollWindow() abstract
15365         * XplatUIWin32.cs: Implemented ScrollWindow() method
15366         * XplatUIX11.cs: Implemented ScrollWindow() method
15367         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
15368
15369 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
15370
15371         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
15372         Some more keyboard support (INCOMPLETE)
15373
15374 2004-12-17  Peter Bartok  <pbartok@novell.com>
15375
15376         * TextControl.cs:
15377         - Added color attribute to line tags.
15378         - Added color argument to all functions dealing with tags
15379         - Added color argument support to various functions
15380         - Fixed miss-calculation of baseline/shift in certain circumstances
15381
15382         * TextBoxBase.cs: Added new color option to test code
15383
15384 2004-12-17  Jackson Harper  <jackson@ximian.com>
15385
15386         * TreeNode.cs:
15387         * MonthCalendar.cs: Signature fixes
15388
15389 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
15390
15391         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
15392         keyboard event moved it.  Create a new graphics context for each paint resolves this
15393
15394 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
15395
15396         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
15397         Make caret exist and go blink blink.  Initial keyboard support.
15398         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
15399         works.
15400
15401 2004-12-17  Jackson Harper  <jackson@ximian.com>
15402
15403         * XplatUIStructs.cs: Updated set of virtual keycodes.
15404         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
15405
15406 2004-12-17  Jackson Harper  <jackson@ximian.com>
15407
15408         * XplatUIX11.cs: Prune old keyboard code.
15409
15410 2004-12-17  Jackson Harper  <jackson@ximian.com>
15411
15412         * XplatUIX11.cs: When generating mouse wparams get the modifier
15413         keys from the ModifierKeys property.
15414
15415 2004-12-17  Jackson Harper  <jackson@ximian.com>
15416
15417         * X11Keyboard.cs: Send up/down input when generating
15418         messages. Remove some unused vars.
15419
15420 2004-12-17  Jackson Harper  <jackson@ximian.com>
15421
15422         * TabControl.cs:
15423         * TreeView.cs: get rid of warnings.
15424
15425 2004-12-17  Jackson Harper  <jackson@ximian.com>
15426
15427         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
15428
15429 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
15430
15431         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
15432           CheckedListBox.cs: Implementation
15433
15434 2004-12-17  Peter Bartok  <pbartok@novell.com>
15435
15436         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
15437
15438 2004-12-16  Peter Bartok  <pbartok@novell.com>
15439
15440         * TextControl.cs:
15441           - InsertCharAtCaret(): Fixed start pos fixup
15442           - CaretLine_get: No longer derives the line from the tag, the tag
15443             could be stale if lines in the document have been added or deleted
15444           - RebalanceAfterDelete(): Fixed bug in balancing code
15445           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
15446           - Line.Streamline(): Now can also elminate leading empty tags
15447           - DumpTree(): Added a few more tests and prevented exception on
15448             uninitialized data
15449           - Added Debug section for Combining lines
15450           - Delete(): Now copies all remaining properties of a line
15451           
15452         * TextBoxBase.cs:
15453           - Left mousebutton now sets the caret (and middle button still acts
15454             as formatting tester, which must go away soon)
15455           - Added Debug section for Deleting/Combining lines
15456           - Fixed calculations for UpdateView after Combining lines
15457
15458 2004-12-16  Peter Bartok  <pbartok@novell.com>
15459
15460         * TextControl.cs: Now properly aligns text on a baseline, using the
15461           new XplatUI.GetFontMetrics() method. Simplified several calculations
15462         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
15463           defined
15464
15465 2004-12-16  Peter Bartok  <pbartok@novell.com>
15466
15467         * XplatUI.cs: Added GetFontMetrics() method
15468         * XplatUIDriver.cs: Added GetFontMetrics() abstract
15469         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
15470           into libgdiplus, our private GetFontMetrics function
15471         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
15472         * XplatUIWin32.cs: Implemented GetFontMetrics() method
15473
15474 2004-12-16  Jackson Harper  <jackson@ximain.com>
15475
15476         * XplatUIStruct.cs: Add enum for dead keys
15477         * X11Keyboard.cs: Map and unmap dead keys.
15478
15479 2004-12-16  Jackson Harper  <jackson@ximian.com>
15480
15481         * X11Keyboard.cs: Detect and use the num lock mask.
15482
15483 2004-12-16  Peter Bartok  <pbartok@novell.com>
15484
15485         * Control.cs (CreateGraphics): Added check to make sure the
15486           handle of the window exists before calling Graphics.FromHwnd()
15487
15488 2004-12-16  Peter Bartok  <pbartok@novell.com>
15489
15490         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
15491           contains a lot of code that's not supposed to be there for the
15492           real thing, but required for developing/testing the textbox
15493           backend.
15494
15495 2004-12-16  Peter Bartok  <pbartok@novell.com>
15496
15497         * TextControl.cs:
15498         - Fixed Streamline method
15499         - Added FindTag method to Line
15500         - Added DumpTree method for debugging
15501         - Added DecrementLines() method for deleting lines
15502         - Fixed UpdateView to update the cursor to end-of-line on single-line
15503           updates
15504         - Added PositionCaret() method
15505         - Fixed MoveCaret(LineDown) to move into the last line, too
15506         - Added InsertChar overload
15507         - Fixed InsertChar tag offset calculations
15508         - Added DeleteChar() method
15509         - Added Combine() method for folding lines
15510         - Fixed Delete() method, no longer allocates wasted Line object and
15511           now copies all properties when swapping nodes
15512         - Delete() method now updates document line counter
15513
15514 2004-12-15  Jackson Harper  <jackson@ximian.com>
15515
15516         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
15517         * X11Keyboard.cs: Expose the currently selected modifier keys
15518         through a property.
15519
15520 2004-12-15  Peter Bartok  <pbartok@novell.com>
15521
15522         * TextControl.cs: Initial check-in. Still incomplete
15523
15524 2004-12-15  Jackson Harper  <jackson@ximian.com>
15525
15526         * TreeNode.cs:
15527         * TreeView.cs: Fix build on csc (second time today ;-))
15528
15529 2004-12-15  Jackson Harper  <jackson@ximian.com>
15530
15531         * TreeView.cs: Store the treenodes plus/minus box bounds when it
15532         is calculated and use this for click testing.
15533         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
15534
15535 2004-12-15  Jackson Harper  <jackson@ximian.com>
15536
15537         * TreeView.cs: Pass the nodes image index to the image list when
15538         drawing that image.
15539
15540 2004-12-15  Jackson Harper  <jackson@ximian.com>
15541
15542         * X11Keyboard.cs: Set messages hwnd.
15543         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
15544         post_message calls.
15545
15546 2004-12-15  Jackson Harper  <jackson@ximian.com>
15547
15548         * X11Keyboard.cs: Fix to compile with csc.
15549         
15550 2004-12-15  Jackson Harper  <jackson@ximian.com>
15551
15552         * X11Structs.cs: Add key mask values
15553         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
15554         * X11Keyboard.cs: New file - Extrapolates and interpolates key
15555         down/up foo into WM_CHAR foo
15556         * KeyboardLayouts.cs: Common keyboard layouts
15557         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
15558         post messages into the main queue.
15559
15560 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
15561
15562         * Button.cs: implement ProcessMnemonic
15563         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
15564           brushes everytime
15565         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
15566         * ButtonBase.cs: Show HotkeyPrefix (not the &)
15567
15568 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
15569         
15570         * MonthCalendar.cs: Implemented click-hold for next/previous month
15571           and date selection
15572           
15573 2004-12-11  Peter Bartok  <pbartok@novell.com>
15574
15575         * X11Structs.cs:
15576           - Added XKeyboardState (moved from XplatUIX11.cs)
15577           - Added XCreateGC related enums and structures
15578           - Added GXFunction for XSetFunction
15579
15580         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
15581
15582         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
15583           CaretVisible() calls
15584
15585         * ToolTip.cs: Added code to prevent stealing focus from app windows
15586
15587         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
15588           DestroyCaret, SetCaretPos and CaretVisible)
15589
15590         * XplatUIX11.cs:
15591           - Added implementation for caret functions
15592           - Moved hover variables into a struct, to make it a bit easier
15593             on the eyes and to debug
15594           - Removed XKeyboardState (moved to XplatUIX11.cs)
15595           - Moved Keyboard properties into the properties region
15596
15597         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
15598           call to get a graphics context for our control
15599
15600         * XplatUIOSX.cs: Added empty overrides for the new caret functions
15601
15602         * TreeView.cs: Fixed bug. No matter what color was set it would always
15603           return SystemColors.Window
15604
15605         * XplatUIWin32.cs: Implemented caret overrides
15606
15607 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
15608
15609         * ListBox.cs: fire events, implement missing methods and properties,
15610         sorting.
15611
15612 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
15613
15614         * MonthCalendar.cs: invalidation bug fixing
15615         * ThemeWin32Classic.cs: paint fixing
15616
15617 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
15618
15619         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
15620         prepare the CGContextRef there now.
15621
15622 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
15623
15624         * MonthCalendar.cs:
15625           - optimisationL only invalidate areas that have changed
15626         * ThemeWin32Classic.cs:
15627           - only paint parts that intersect with clip_area
15628
15629 2004-12-09  Peter Bartok  <pbartok@novell.com>
15630
15631         * Application.cs: Undid changes from r37004 which cause problems
15632         on X11
15633
15634 2004-12-09  Ravindra  <rkumar@novell.com>
15635
15636         * ToolBar.cs: Added support for displaying ContextMenu
15637         attached to a button on ToolBar.
15638         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
15639         property.
15640
15641 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
15642
15643         * Label.cs: autosize works in text change and removes unnecessary
15644         invalidate
15645
15646 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
15647
15648         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
15649         remove warnings
15650
15651 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
15652
15653         * XplatUIOSX.cs: Added mouse move/click/grab support
15654         Remove some debugging WriteLines not needed anymore.
15655         Add window resizing/positioning.
15656         Fix visibility on reparenting.
15657
15658 2004-12-08  Peter Bartok  <pbartok@novell.com>
15659
15660         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
15661
15662 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
15663
15664         * XplatUIOSX.cs: Initial checkin
15665         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
15666
15667 2004-12-03  Ravindra <rkumar@novell.com>
15668
15669         * ListView.cs: Added some keybindings and fixed scrolling.
15670         ScrollBars listen to ValueChanged event instead of Scroll
15671         Event. This would let us take care of all changes being
15672         done in the scrollbars' values programmatically or manually.
15673         * ListView.cs (CanMultiselect): Added a check for shift key.
15674         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
15675         * ListViewItem.cs (Clone): Fixed. We need to make a copy
15676         of ListViewSubItemCollection as well.
15677
15678 2004-12-06  Peter Bartok <pbartok@novell.com>
15679
15680         * Control.cs (Parent): Added check and exception to prevent
15681         circular parenting
15682
15683 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
15684
15685         * ListBox.cs: implemented clipping, selection single and multiple,
15686         bug fixing
15687
15688 2004-12-03  Ravindra <rkumar@novell.com>
15689
15690         * ListView.cs (ListView_KeyDown):
15691         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
15692         when CTRL key is pressed.
15693         * ListViewItem.cs (Selected): Fixed setting the property.
15694
15695 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
15696
15697         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
15698
15699         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
15700         MinimizeBox, ShowInTaskbar, TopMost properties.
15701
15702         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
15703         will be implemented).
15704
15705 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
15706
15707         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
15708
15709         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
15710         tests.
15711         
15712         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
15713         
15714         * TreeView.cs: BackColor is Colors.Window.
15715
15716 2004-12-01  Jackson Harper  <jackson@ximian.com>
15717
15718         * TreeView.cs: When resizing the tree if the user is making it
15719         smaller we don't get expose events, so we need to handle adding
15720         the horizontal scrollbar in the size changed handler as well as
15721         the expose handler.
15722
15723 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
15724
15725         * DrawItemState.cs: fixes wrong enum values
15726
15727 2004-12-01  Jackson Harper  <jackson@ximian.com>
15728
15729         * TreeView.cs: Resize the hbar as well as the vbar on resize.
15730
15731 2004-12-01  Jackson Harper  <jackson@ximian.com>
15732
15733         * NodeLabelEditEventArgs.cs:
15734         * NodeLabelEditEventHandler.cs:
15735         * OpenTreeNodeEnumerator.cs:
15736         * TreeNode.cs:
15737         * TreeNodeCollection.cs:
15738         * TreeView.cs:
15739         * TreeViewAction.cs:
15740         * TreeViewCancelEventArgs.cs:
15741         * TreeViewCancelEventHandler.cs:
15742         * TreeViewEventArgs.cs:
15743         * TreeViewEventHandler.cs: Initial implementation.
15744
15745 2004-12-01  Ravindra <rkumar@novell.com>
15746
15747         * ListView.cs (CalculateListView): Fixed scrolling related
15748         calculations. Also, removed some debug statements from other
15749         places.
15750         * ListViewItem.cs: Changed access to 'selected' instance variable
15751         from private to internal.
15752         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
15753
15754 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
15755
15756         * ThemeWin32Classic.cs: remove cache of brush and pens for
15757         specific controls and use the global system, fixes scrollbutton
15758         bugs (for small sizes, disabled, etc)
15759         
15760         * ScrollBar.cs: does not show the thumb for very small controls
15761         (as MS) and allow smaller buttons that the regular size
15762
15763 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
15764
15765         * UpDownBase.cs: Add abstract methods for the interface.
15766         Add new virtual methods (need to be hooked up to TextEntry when it
15767         exists).
15768         Add override methods for most features.
15769         Computes the size, forces the height of the text entry.
15770
15771         * NumericUpDown.cs: Put here the current testing code.
15772
15773         * Set eol-style property on all files that do not have mixed line
15774         endings, to minimize the future problems.  There are still a few
15775         files with mixed endings, and someone should choose whether they
15776         want to move it or not.
15777
15778 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
15779
15780         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
15781         System.Colors
15782         
15783 2004-11-30  Ravindra <rkumar@novell.com>
15784
15785         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
15786         drawing and replaced use of SystemColors by theme colors.
15787         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
15788         * ListView.cs (ListViewItemCollection.Add): Throw exception when
15789         same ListViewItem is being added more than once.
15790
15791 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
15792
15793         * MonthCalendar.cs:
15794           - ControlStyles love to make the control not flicker
15795           
15796 2004-11-30  Peter Bartok  <pbartok@novell.com>
15797
15798         * CharacterCasing.cs: Added
15799
15800 2004-11-29  Peter Bartok  <pbartok@novell.com>
15801
15802         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
15803           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
15804           I am removing these files as they conflict with already completed
15805           work. While it is fantastic to get contributions to MWF, I
15806           respectfully ask that everyone please coordinate their contributions
15807           through mono-winforms-list or #mono-winforms at this time. We're
15808           explicitly avoiding stubbing and don't want controls that don't have
15809           their basic functionality implemented in svn. Please also see
15810           http://www.mono-project.com/contributing/winforms.html
15811
15812
15813 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
15814
15815         * Application.cs (ModalRun): Don't hang after exit.
15816
15817         * Theme.cs: New TreeViewDefaultSize property.
15818
15819         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
15820         with less hardcoded SystemColors constant.
15821         Implemented TreeViewDefaultSize.
15822
15823         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
15824         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
15825
15826
15827 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
15828
15829         * MonthCalendar.cs:
15830           - Fix NextMonthDate and PrevMonthDate click moving calendar
15831
15832 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
15833
15834         * MonthCalendar.cs:
15835           - Fix usage of ScrollChange Property when scrolling months
15836
15837 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
15838
15839         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
15840          - Fixes menu destroying
15841          - Support adding and removing items on already created menus
15842
15843 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
15844
15845         * MonthCalendar.cs:
15846           - Re-worked all bolded dates handling to match win32
15847         * ThemeWin32Classic.cs:
15848           - Fixed rendering with bolded dates
15849
15850 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
15851
15852         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
15853         - Horizontal scroolbar
15854         - Multicolumn
15855         - Fixes
15856
15857
15858 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
15859
15860         * MonthCalendar.cs:
15861           - Fix Usage of MaxSelectionCount from SelectionRange
15862           - Fixed Shift + Cursor Selection
15863           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
15864           - Fixed normal cursor selection to be compat with win32
15865           - Fixed Shift + Mouse Click selection
15866
15867 2004-11-24  Peter Bartok <pbartok@novell.com>
15868
15869         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
15870         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
15871         * XplatUIX11.cs:
15872           - CreatedKeyBoardMsg now updates keystate with Alt key
15873           - Added workaround for timer crash to CheckTimers, Jackson will
15874             develop a proper fix and check in later
15875           - Implemented DispatchMessage
15876           - Removed calling the native window proc from GetMessage (call
15877             now moved to DispatchMessage)
15878
15879         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
15880           the keydata (Fixes bug #69831)
15881
15882         * XplatUIWin32.cs:
15883           - (DispatchMessage): Switched to return IntPtr
15884           - Added DllImport for SetFocus
15885
15886 2004-11-24  Ravindra <rkumar@novell.com>
15887
15888         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
15889         background drawing.
15890         * ListViewItem.cs: Fixed various properties, calculations
15891         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
15892         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
15893         and some internal properties. Fixed MouseDown handler and Paint
15894         method.
15895
15896 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
15897
15898         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
15899
15900 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
15901
15902         * ContainerControl.cs: correct accidental check in of local changes
15903
15904 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
15905
15906         * ThemeWin32Classic.cs:
15907                 - Fixed Drawing Last month in grid (sometimes not showing)
15908         * MonthCalendar.cs:
15909                 - Fixed title width calculation bug (makeing title small)
15910
15911 2004-11-23  Peter Bartok <pbartok@novell.com>
15912
15913         * XplatUIX11.cs:
15914           - Added generation of WM_MOUSEHOVER event
15915           - Added missing assignment of async_method atom
15916           - Fixed WM_ERASEBKGND; now only redraws the exposed area
15917
15918 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
15919
15920         * ThemeWin32Classic.cs:
15921                 - Fixed Drawing of today circle when showtodaycircle not set
15922                 - fixed drawing of first and last month in the grid (gay dates)
15923         * MonthCalendar.cs:
15924                 - Fixed Drawing of today circle
15925                 - Fixed drawing of grady dates
15926                 - Fixed HitTest for today link when ShowToday set to false
15927                 - Fixed DefaultSize to obey ShowToday
15928
15929 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
15930
15931         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
15932         * System.Windows.Forms/Theme.cs
15933         * MonthCalendar.cs: added for MonthCalendar
15934         * SelectionRange.cs: added for MonthCalendar
15935         * Day.cs: added for MonthCalendar: added for MonthCalendar
15936         * DateRangeEventArgs.cs: added for MonthCalendar
15937         * DateRangeEventHandler.cs: added for MonthCalendar
15938
15939 2004-11-22  Ravindra <rkumar@novell.com>
15940
15941         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
15942         property.
15943
15944 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
15945
15946         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
15947         event handler.
15948         
15949         * NumericUpDown.cs: Added new implementation.
15950         * UpDownBase.cs: Added new implementation.
15951
15952         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
15953         implementations.
15954         
15955         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
15956         implementations.
15957
15958         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
15959         methods.
15960
15961 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
15962
15963         * Timer.cs  (Dispose): Should call the base dispose when
15964         overriding.
15965
15966 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
15967
15968         * ScrollBar.cs: updates thumb position when max, min or increment
15969         is changed
15970
15971 2004-11-21  Ravindra <rkumar@novell.com>
15972
15973         * ListView.cs: Implemented item selection, activation and
15974         column header style. Fixed properties to do a redraw, if
15975         required. Added support for MouseHover, DoubleClick, KeyDown
15976         and KeyUp event handling and some minor fixes.
15977         * ListViewItem.cs: Fixed constructor.
15978         * ThemeWin32Classic.cs: Improved drawing for ListView.
15979
15980 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
15981
15982         * ThemeWin32Classic.cs: initial listbox drawing code
15983         * DrawMode.cs: new enumerator
15984         * ListControl.cs: stubbed class
15985         * ListBox.cs: initial implementation
15986         * Theme.cs: new methods definitions
15987         * SelectionMode.cs: new enumerator
15988
15989 2004-11-17  Peter Bartok  <pbartok@novell.com>
15990
15991         * XplatUIWin32.cs: Added double-click events to the class style
15992         * Control.cs (WndProc):
15993           - Added handling of click-count to MouseDown/ MouseUp events.
15994           - Added handling of middle and right mouse buttons
15995           - Removed old debug code
15996
15997 2004-11-17  Jackson Harper  <jackson@ximian.com>
15998
15999         * XplatUIX11.cs: Use the new Mono.Unix namespace.
16000
16001 2004-11-17  Ravindra <rkumar@novell.com>
16002
16003         * ListView.cs: Added event handling for MouseMove/Up/Down.
16004         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
16005         * ThemeWin32Classic.cs: We need to clear the graphics context and
16006         draw column header in a proper state.
16007
16008
16009 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
16010
16011         *  Menu.cs: fixes signature
16012
16013 2004-11-16  Peter Bartok  <pbartok@novell.com>
16014
16015         * XplatUIX11.cs (GetMessage): Implemented generation of
16016           double click mouse messages
16017
16018 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
16019
16020         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
16021         not by menu
16022
16023 2004-11-11  Peter Bartok  <pbartok@novell.com>
16024
16025         * HandleData.cs: Added Visible property
16026         * XplatUIX11.cs (IsVisible): Now uses Visible property from
16027           HandleData
16028         * XplatUIX11.cs: Removed old debug leftovers
16029         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
16030         * Control.cs (WndProc): Removed old debug leftovers,
16031           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
16032           needed WM_SIZE handling
16033
16034 2004-11-11  Jackson Harper  <jackson@ximian.com>
16035
16036         * OwnerDrawPropertyBag.cs:
16037         * TreeViewImageIndexConverter.cs: Initial implementation
16038
16039 2004-11-10  Jackson Harper  <jackson@ximian.com>
16040
16041         * ThemeWin32Classic.cs:
16042         * TabControl.cs: instead of moving tabs by the slider pos just
16043         start drawing at the tab that is offset by the slider. This way
16044         scrolling always moves by exactly one tab.
16045
16046 2004-11-10  Jackson Harper  <jackson@ximian.com>
16047
16048         * TabControl.cs: You can only scroll left when the slider has
16049         already ben moved right.
16050         
16051 2004-11-10  Jackson Harper  <jackson@ximian.com>
16052
16053         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
16054         the clip area.
16055         
16056 2004-11-10  Jackson Harper  <jackson@ximian.com>
16057
16058         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
16059         clip area.
16060         
16061 2004-11-09  Jackson Harper  <jackson@ximian.com>
16062
16063         * TabControl.cs (CalcXPos): New helper method so we can determine
16064         the proper place to start drawing vertical tabs.
16065         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
16066         
16067 2004-11-09  Jackson Harper  <jackson@ximian.com>
16068
16069         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
16070         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
16071         and Bottom, left and right are illegal values for this and
16072         multiline is enabled when the alignment is set to left or right.
16073         (DrawTab): Each alignment block should draw the text itself now
16074         because Left requires special love. Also add rendering for Left
16075         aligned tabs.
16076         
16077 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
16078
16079         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
16080         does not destroy the windows, removes debugging messages
16081
16082 2004-11-09  jba  <jba-mono@optusnet.com.au>
16083
16084         * ThemeWin32Classic.cs
16085         (DrawButtonBase): Fix verticle text rect clipping in windows
16086         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
16087         rendering and incorrect text rect clipping
16088         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
16089         rendering and incorrect text rect clipping
16090         
16091 2004-11-08  Jackson Harper  <jackson@ximian.com>
16092
16093         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
16094         bottom when they are bottom aligned so the bottoms of the tabs get
16095         displayed.
16096         * TabControl.cs (DropRow): Move rows up instead of down when the
16097         tab control is bottom aligned.
16098
16099 2004-11-08 13:59  pbartok
16100
16101         * XplatUIX11.cs:
16102           - Added handling for various window styles
16103           - Added handling for popup windows
16104           - Added SetTopmost handling
16105
16106 2004-11-08 13:55  pbartok
16107
16108         * XplatUIWin32.cs:
16109           - Added argument to SetTopmost method
16110           - Fixed broken ClientToScreen function
16111
16112 2004-11-08 13:53  pbartok
16113
16114         * XplatUIStructs.cs:
16115           - Added missing WS_EX styles
16116
16117 2004-11-08 13:53  pbartok
16118
16119         * XplatUI.cs, XplatUIDriver.cs:
16120           - Added argument to SetTopmost
16121
16122 2004-11-08 13:52  pbartok
16123
16124         * X11Structs.cs:
16125           - Added XSetWindowAttributes structure
16126           - Improved XWindowAttributes structure
16127           - Added SetWindowValuemask enum
16128           - Added window creation arguments enum
16129           - Added gravity enum
16130           - Added Motif hints structure
16131           - Added various Motif flags and enums
16132           - Added PropertyMode enum for property functions
16133
16134 2004-11-08 13:50  pbartok
16135
16136         * Form.cs:
16137           - Fixed arguments for updated SetTopmost method
16138
16139 2004-11-08 13:49  pbartok
16140
16141         * ToolTip.cs:
16142           - Fixed arguments for updated SetTopmost function
16143           - Fixed usage of PointToClient
16144
16145 2004-11-08 13:44  pbartok
16146
16147         * MenuAPI.cs:
16148           - Added Clipping of children and siblings
16149
16150 2004-11-08 13:41  pbartok
16151
16152         * MainMenu.cs:
16153           - Removed SetMenuBarWindow call. We do this in Form.cs
16154
16155 2004-11-08 13:40  jackson
16156
16157         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
16158           scrolling jimmi in the correct location with bottom aligned tabs
16159
16160 2004-11-08 13:36  pbartok
16161
16162         * ContainerControl.cs:
16163           - Implemented BindingContext
16164           - Implemented ParentForm
16165
16166 2004-11-08 12:46  jackson
16167
16168         * TabControl.cs: Put bottom rendered tabs in the right location
16169
16170 2004-11-08 07:15  jordi
16171
16172         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
16173           removes dead code
16174
16175 2004-11-05 17:30  jackson
16176
16177         * TabControl.cs: When selected tabs are expanded make sure they
16178           don't go beyond the edges of the tab control
16179
16180 2004-11-05 14:57  jackson
16181
16182         * TabControl.cs: Reset show_slider so if the control is resized to
16183           a size where it is no longer needed it's not displayed anymore
16184
16185 2004-11-05 13:16  jackson
16186
16187         * TabControl.cs: Make tab pages non visible when added to the
16188           control
16189
16190 2004-11-05 12:42  jackson
16191
16192         * TabControl.cs: Implement SizeMode.FillToRight
16193
16194 2004-11-05 12:16  jackson
16195
16196         * Control.cs: Do not call CreateHandle if the handle is already
16197           created
16198
16199 2004-11-05 11:46  jackson
16200
16201         * TabControl.cs: Remove superflous call to CalcTabRows
16202
16203 2004-11-05 09:07  jackson
16204
16205         * XplatUIX11.cs: Update for Mono.Posix changes
16206
16207 2004-11-05 07:00  ravindra
16208
16209         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
16210           scrolling.
16211
16212 2004-11-04 22:47  jba
16213
16214         * ThemeWin32Classic.cs:
16215           - Fix Button rendering for FlatStyle = Flat or Popup
16216           - Fix RadioButton and CheckBox rendering when Appearance = Button
16217             (normal and flatstyle).
16218           - Correct outer rectangle color when drawing focus rectangle
16219           - Adjust button bounds to be 1 px smaller when focused
16220           - Make button not draw sunken 3d border when pushed (windows compat)
16221           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
16222           - Offset the text in RadioButton and Checkbox when being rendered as
16223           a button.
16224           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
16225           radiobuttons
16226           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
16227           - Fixed disabled text rendering for normally rendered radiobuttons
16228
16229 2004-11-04 10:26  jackson
16230
16231         * TabControl.cs: Recalculate tab rows when resizing
16232
16233 2004-11-04 07:47  jordi
16234
16235         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
16236           collection completion, drawing issues, missing features
16237
16238 2004-11-04 05:03  ravindra
16239
16240         * ScrollBar.cs:
16241                 - We need to recalculate the Thumb area when
16242                 LargeChange/maximum/minimum values are changed.
16243           - We set the 'pos' in UpdatePos() method to minimum, if it's less
16244                 than minimum. This is required to handle the case if large_change is
16245                 more than max, and use LargeChange property instead of large_change
16246                 variable.
16247           - We return max+1 when large_change is more than max, like MS does.
16248
16249 2004-11-04 04:29  ravindra
16250
16251         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
16252                 - Changed default value signatures (prefixed all with ListView).
16253                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
16254                 ListView.
16255           - Fixed calculations for ListViewItem and implemented Clone()
16256           method.
16257
16258 2004-11-04 04:26  ravindra
16259
16260         * Theme.cs, ThemeWin32Classic.cs:
16261                 - Changed default ListView values signatures (prefixed all with
16262                 ListView).
16263           - Fixed default size values for VScrollBar and HScrollBar.
16264                 - Fixed DrawListViewItem method.
16265
16266 2004-11-04 04:05  ravindra
16267
16268         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
16269
16270 2004-11-04 04:04  ravindra
16271
16272         * ImageList.cs: Implemented the missing overload for Draw method.
16273
16274 2004-11-03 19:29  jackson
16275
16276         * TabControl.cs: Handle dropping rows on selection properly
16277
16278 2004-11-03 11:59  jackson
16279
16280         * TabControl.cs: remove debug code
16281
16282 2004-11-03 11:52  jackson
16283
16284         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
16285           the scrolly widgerywoo
16286
16287 2004-11-02 13:52  jackson
16288
16289         * TabControl.cs: Resize the tab pages and tabs when the tab control
16290           is resized
16291
16292 2004-11-02 13:40  jackson
16293
16294         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
16295           selected tab to the bottom
16296
16297 2004-11-02 13:39  jackson
16298
16299         * TabPage.cs: Store the tab pages row
16300
16301 2004-11-02 12:33  jordi
16302
16303         * MenuItem.cs: fixes handle creation
16304
16305 2004-11-02 11:42  jackson
16306
16307         * TabControl.cs: signature fix
16308
16309 2004-11-02 08:56  jackson
16310
16311         * TabControl.cs: Calculate whether the tab is on an edge properly.
16312           Remove top secret debugging code
16313
16314 2004-11-01 19:57  jackson
16315
16316         * TabControl.cs: Add click handling, and proper sizing
16317
16318 2004-11-01 19:47  jackson
16319
16320         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
16321           tab controls
16322
16323 2004-11-01 19:39  jackson
16324
16325         * TabPage.cs: add internal property to store the bounds of a tab
16326           page
16327
16328 2004-10-30 04:23  ravindra
16329
16330         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
16331           values.
16332
16333 2004-10-30 04:21  ravindra
16334
16335         * ListView.cs, ListViewItem.cs: Added support for scrolling and
16336           fixed calculations.
16337
16338 2004-10-30 03:06  pbartok
16339
16340         * XplatUIX11.cs:
16341           - Removed extension of DllImported libs
16342
16343 2004-10-29 09:55  jordi
16344
16345         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
16346           navigation, itemcollection completion, menu fixes
16347
16348 2004-10-27 22:58  pbartok
16349
16350         * XplatUIX11.cs:
16351           - Now throws a nice error message when no X display could be opened
16352
16353 2004-10-26 13:51  jordi
16354
16355         * ListView.cs: removes warning
16356
16357 2004-10-26 03:55  ravindra
16358
16359         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
16360           ThemeWin32Classic.cs: Some formatting for my last checkins.
16361
16362 2004-10-26 03:36  ravindra
16363
16364         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
16365           control and default values.
16366
16367 2004-10-26 03:35  ravindra
16368
16369         * Theme.cs: Added some default values for ListView control.
16370
16371 2004-10-26 03:33  ravindra
16372
16373         * ToolBar.cs: ToolBar should use the user specified button size, if
16374           there is any. Added a size_specified flag for the same.
16375
16376 2004-10-26 03:33  ravindra
16377
16378         * ColumnHeader.cs: Added some internal members and calculations for
16379           ColumnHeader.
16380
16381 2004-10-26 03:32  ravindra
16382
16383         * ListViewItem.cs: Calculations for ListViewItem.
16384
16385 2004-10-26 03:31  ravindra
16386
16387         * ListView.cs: Added some internal members and calculations for
16388           ListView.
16389
16390 2004-10-22 13:31  jordi
16391
16392         * MenuAPI.cs: speedup menus drawing
16393
16394 2004-10-22 13:16  jackson
16395
16396         * XplatUIX11.cs: Make sure to update exposed regions when adding an
16397           expose event
16398
16399 2004-10-22 11:49  jackson
16400
16401         * Control.cs: oops
16402
16403 2004-10-22 11:41  jackson
16404
16405         * Control.cs: Check to see if the window should have its background
16406           repainted by X when drawing.
16407
16408 2004-10-22 11:31  jackson
16409
16410         * XplatUIX11.cs: When invalidating areas only use XClearArea if
16411           clear is true, this way we do not get flicker from X repainting the
16412           background
16413
16414 2004-10-22 11:28  jackson
16415
16416         * XEventQueue.cs: Queue properly
16417
16418 2004-10-21 09:38  jackson
16419
16420         * XEventQueue.cs: Fix access modifier
16421
16422 2004-10-21 09:36  jackson
16423
16424         * XEventQueue.cs: Don't loose messages
16425
16426 2004-10-21 09:22  jackson
16427
16428         * XEventQueue.cs: Don't loose messages
16429
16430 2004-10-20 04:15  jordi
16431
16432         * BootMode.cs: enum need it by SystemInfo
16433
16434 2004-10-19 21:58  pbartok
16435
16436         * XplatUIWin32.cs:
16437           - Small sanity check
16438
16439 2004-10-19 21:56  pbartok
16440
16441         * Form.cs:
16442           - Added private FormParentWindow class which acts as the container
16443             for our form and as the non-client area where menus are drawn
16444           - Added/Moved required tie-ins to Jordi's menus
16445           - Fixed/Implemented the FormStartPosition functionality
16446
16447 2004-10-19 21:52  pbartok
16448
16449         * Control.cs:
16450           - Removed unneeded locals
16451           - Added code to all size and location properties to understand and
16452             deal with the parent container of Form
16453
16454 2004-10-19 21:33  pbartok
16455
16456         * Application.cs:
16457           - Fixed to deal with new Form subclasses for menus
16458
16459 2004-10-19 17:48  jackson
16460
16461         * XEventQueue.cs: commit correct version of file
16462
16463 2004-10-19 16:50  jackson
16464
16465         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
16466
16467 2004-10-19 16:15  jordi
16468
16469         * MenuAPI.cs: MenuBarCalcSize returns the height
16470
16471 2004-10-19 08:31  pbartok
16472
16473         * Control.cs:
16474           - Added missing call to PreProcessMessage before calling OnXXXKey
16475           methods
16476
16477 2004-10-19 00:04  ravindra
16478
16479         * ToolTip.cs: Fixed constructor.
16480
16481 2004-10-18 09:31  jordi
16482
16483         * MenuAPI.cs: menuitems in menubars do not have shortcuts
16484
16485 2004-10-18 09:26  jordi
16486
16487         * MenuItem.cs: fixes MenuItem class signature
16488
16489 2004-10-18 08:56  jordi
16490
16491         * MenuAPI.cs: prevents windows from showing in the taskbar
16492
16493 2004-10-18 00:28  ravindra
16494
16495         * ToolTip.cs: Suppressed a warning message.
16496
16497 2004-10-18 00:27  ravindra
16498
16499         * Control.cs: Default value of visible property must be true.
16500
16501 2004-10-17 23:19  pbartok
16502
16503         * ToolTip.cs:
16504           - Complete implementation
16505
16506 2004-10-17 23:19  pbartok
16507
16508         * XplatUIX11.cs:
16509           - Added EnableWindow method
16510           - Added SetModal stub
16511           - Added generation of WM_ACTIVATE message (still needs testing)
16512           - Added SetTopMost stub
16513           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
16514
16515 2004-10-17 23:17  pbartok
16516
16517         * XplatUIWin32.cs:
16518           - Removed VirtualKeys to XplatUIStructs
16519           - Implemented SetTopMost method
16520           - Implemented EnableWindow method
16521           - Bugfix in ScreenToClient()
16522           - Bugfixes in ClientToScreen()
16523
16524 2004-10-17 22:51  pbartok
16525
16526         * XplatUIStructs.cs:
16527           - Added WS_EX styles to WindowStyles enumeration
16528
16529 2004-10-17 22:50  pbartok
16530
16531         * XplatUI.cs, XplatUIDriver.cs:
16532           - Added method for enabling/disabling windows
16533           - Added method for setting window modality
16534           - Added method for setting topmost window
16535
16536 2004-10-17 22:49  pbartok
16537
16538         * ThemeWin32Classic.cs:
16539           - Added ToolTip drawing code
16540
16541 2004-10-17 22:49  pbartok
16542
16543         * Theme.cs:
16544           - Added ToolTip abstracts
16545
16546 2004-10-17 22:47  pbartok
16547
16548         * Form.cs:
16549           - Fixed Form.ControlCollection to handle owner relations
16550           - Added Owner/OwnedForms handling
16551           - Implemented Z-Ordering for owned forms
16552           - Removed unneeded private overload of ShowDialog
16553           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
16554             so I hope)
16555           - Fixed Close(), had wrong default
16556           - Added firing of OnLoad event
16557           - Added some commented out debug code for Ownership handling
16558
16559 2004-10-17 22:16  pbartok
16560
16561         * Control.cs:
16562           - Fixed/implemented flat list of controls
16563
16564 2004-10-17 22:14  pbartok
16565
16566         * Application.cs:
16567           - Added code to simulate modal dialogs on Win32
16568
16569 2004-10-17 16:11  jordi
16570
16571         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
16572           mouse event
16573
16574 2004-10-17 13:39  jordi
16575
16576         * MenuAPI.cs: menu drawing fixes
16577
16578 2004-10-15 09:10  ravindra
16579
16580         * StructFormat.cs: General Enum.
16581
16582 2004-10-15 09:09  ravindra
16583
16584         * SizeGripStyle.cs: Enum for Form.
16585
16586 2004-10-15 09:08  ravindra
16587
16588         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
16589           in Theme for ListView.
16590
16591 2004-10-15 09:06  ravindra
16592
16593         * ColumnHeader.cs: Flushing some formatting changes.
16594
16595 2004-10-15 09:05  ravindra
16596
16597         * ListViewItem.cs: Implemented GetBounds method and fixed coding
16598           style.
16599
16600 2004-10-15 09:03  ravindra
16601
16602         * ListView.cs: Implemented Paint method and fixed coding style.
16603
16604 2004-10-15 07:34  jordi
16605
16606         * MenuAPI.cs: fix for X11
16607
16608 2004-10-15 07:32  ravindra
16609
16610         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
16611                 - Renamed Paint() method to Draw() for clarity. Also, moved
16612                 DrawImage() to OnPaint().
16613
16614 2004-10-15 07:25  ravindra
16615
16616         * CheckBox.cs, RadioButton.cs:
16617                 - Removed Redraw (), we get it from ButtonBase.
16618                 - Implemented Paint (), to do class specific painting.
16619
16620 2004-10-15 07:16  ravindra
16621
16622         * ButtonBase.cs:
16623                 - Redraw () is not virtual now.
16624                 - Added an internal virtual method Paint (), so that
16625                 derived classes can do their painting on their own.
16626                 - Modified OnPaint () to call Paint ().
16627
16628 2004-10-15 06:43  jordi
16629
16630         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
16631           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
16632
16633 2004-10-15 00:30  ravindra
16634
16635         * MessageBox.cs:
16636                 - MessageBox on windows does not have min/max buttons.
16637                 This change in CreateParams fixes this on Windows. We
16638                 still need to implement this windowstyle behavior in
16639                 our X11 driver.
16640
16641 2004-10-14 05:14  ravindra
16642
16643         * ToolBar.cs:
16644                 - Changed Redraw () to do a Refresh () always.
16645                 - Fixed the MouseMove event handling when mouse is pressed,
16646                 ie drag event handling.
16647                 - Replaced the usage of ToolBarButton.Pressed property to
16648                 ToolBarButton.pressed internal variable.
16649
16650 2004-10-14 05:10  ravindra
16651
16652         * ToolBarButton.cs:
16653                 - Added an internal member 'inside' to handle mouse move
16654                 with mouse pressed ie mouse drag event.
16655                 - Changed 'Pressed' property to return true only when
16656                 'inside' and 'pressed' are both true.
16657                 - Some coding style love.
16658
16659 2004-10-14 00:17  ravindra
16660
16661         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
16662           public method.
16663
16664 2004-10-14 00:15  ravindra
16665
16666         * ButtonBase.cs: Redraw () related improvements.
16667
16668 2004-10-14 00:14  ravindra
16669
16670         * MessageBox.cs: Moved InitFormSize () out of Paint method and
16671           removed unnecessary calls to Button.Show () method.
16672
16673 2004-10-13 17:50  pbartok
16674
16675         * XplatUIX11.cs:
16676           - Formatting fix
16677           - Removed destroying of window until we solve the problem of X
16678             destroying the window before us on shutdown
16679
16680 2004-10-13 16:32  pbartok
16681
16682         * ButtonBase.cs:
16683           - Now Redraws on MouseUp for FlatStyle Flat and Popup
16684
16685 2004-10-13 14:18  pbartok
16686
16687         * XplatUIX11.cs:
16688           - Added code to destroy the X window
16689
16690 2004-10-13 14:18  pbartok
16691
16692         * XplatUIWin32.cs:
16693           - Added code to destroy a window
16694
16695 2004-10-13 14:12  pbartok
16696
16697         * ButtonBase.cs:
16698           - Added the Redraw on Resize that got dropped in the last rev
16699
16700 2004-10-13 09:06  pbartok
16701
16702         * ThemeWin32Classic.cs:
16703           - Path from John BouAntoun:
16704             * Fix check rendering (centre correctly for normal style, offset
16705               correctly for FlatStyle).
16706             * Fix border color usage (use backcolor) for FlatStyle.Popup
16707             * Use checkbox.Capture instead of checkbox.is_pressed when
16708               rendering flatstyle states.
16709
16710 2004-10-12 21:48  pbartok
16711
16712         * ThemeWin32Classic.cs:
16713           - Removed all occurences of SystemColors and replaced them with the
16714             matching theme color
16715
16716 2004-10-12 21:41  pbartok
16717
16718         * ThemeWin32Classic.cs:
16719           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
16720             him using the function for flatstyle drawing
16721           - Changed functions to use the new version of CPDrawBorder3D
16722
16723 2004-10-12 21:15  pbartok
16724
16725         * ControlPaint.cs:
16726           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
16727             match MS documentation. They need to return defined colors if the
16728             passed color matches the configured control color. Thanks to John
16729             BouAntoun for pointing this out.
16730
16731 2004-10-12 20:57  pbartok
16732
16733         * Control.cs:
16734           - Fix from John BouAntoun: Raise ForeColorChanged event when text
16735             color is changed
16736
16737 2004-10-12 20:46  pbartok
16738
16739         * CheckBox.cs:
16740           - Fix from John BouAntoun: Now properly sets the Appearance property
16741
16742 2004-10-12 20:45  pbartok
16743
16744         * ThemeWin32Classic.cs:
16745           - Fixes from John BouAntoun: now handles forecolors and backcolors
16746             for flatstyle rendered controls much better; It also fixes normal
16747             checkbox rendering when pushed or disabled.
16748
16749 2004-10-08 02:50  jordi
16750
16751         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
16752           work
16753
16754 2004-10-07 08:56  jordi
16755
16756         * ThemeWin32Classic.cs: Removes deletion of cached brushes
16757
16758 2004-10-06 03:59  jordi
16759
16760         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
16761           XplatUIWin32.cs: removes warnings from compilation
16762
16763 2004-10-05 12:23  jackson
16764
16765         * RadioButton.cs: Fix ctor
16766
16767 2004-10-05 11:10  pbartok
16768
16769         * MessageBox.cs:
16770           - Partial implementation by Benjamin Dasnois
16771
16772 2004-10-05 10:15  jackson
16773
16774         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
16775           by John BouAntoun
16776
16777 2004-10-05 03:07  ravindra
16778
16779         * ToolBar.cs:
16780                 - Removed a private method, Draw ().
16781                 - Fixed the ButtonDropDown event handling.
16782                 - Fixed MouseMove event handling.
16783
16784 2004-10-05 03:04  ravindra
16785
16786         * ThemeWin32Classic.cs:
16787                 - Added DrawListView method and ListViewDefaultSize property.
16788                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
16789                 - Changed DOS style CRLF to Unix format (dos2unix).
16790
16791 2004-10-05 03:03  ravindra
16792
16793         * Theme.cs:
16794                 - Added DrawListView method and ListViewDefaultSize property.
16795
16796 2004-10-05 02:42  ravindra
16797
16798         * ToolBarButton.cs: Added an internal member dd_pressed to handle
16799           clicks on DropDown arrow.
16800
16801 2004-10-04 22:56  jackson
16802
16803         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
16804           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
16805           Control handle the buffers, derived classes should not have to
16806           CreateBuffers themselves.
16807
16808 2004-10-04 21:20  jackson
16809
16810         * StatusBar.cs: The control handles resizing the buffers now.
16811
16812 2004-10-04 21:18  jackson
16813
16814         * Control.cs: When resizing the buffers should be invalidated. This
16815           should be handled in Control not in derived classes.
16816
16817 2004-10-04 14:45  jackson
16818
16819         * TabPage.cs: oops
16820
16821 2004-10-04 02:14  pbartok
16822
16823         * LeftRightAlignment.cs:
16824           - Initial check-in
16825
16826 2004-10-04 01:09  jordi
16827
16828         * ThemeWin32Classic.cs: fixes right button position causing right
16829           button not showing on horizontal scrollbars
16830
16831 2004-10-02 13:12  pbartok
16832
16833         * XplatUIX11.cs:
16834           - Simplified the Invalidate method by using an X call instead of
16835             generating the expose ourselves
16836           - Added an expose when the window background is changed
16837           - Implemented ClientToScreen method
16838
16839 2004-10-02 13:08  pbartok
16840
16841         * XplatUIWin32.cs:
16842           - Added Win32EnableWindow method (test for implementing modal
16843           dialogs)
16844           - Added ClientToScreen method and imports
16845
16846 2004-10-02 13:07  pbartok
16847
16848         * XplatUI.cs, XplatUIDriver.cs:
16849           - Added ClientToScreen coordinate translation method
16850
16851 2004-10-02 13:06  pbartok
16852
16853         * KeyPressEventArgs.cs:
16854           - Fixed access level for constructor
16855
16856 2004-10-02 13:06  pbartok
16857
16858         * NativeWindow.cs:
16859           - Changed access level for the window_collection hash table
16860
16861 2004-10-02 13:05  pbartok
16862
16863         * Form.cs:
16864           - Added KeyPreview property
16865           - Added Menu property (still incomplete, pending Jordi's menu work)
16866           - Implemented ProcessCmdKey
16867           - Implemented ProcessDialogKey
16868           - Implemented ProcessKeyPreview
16869
16870 2004-10-02 13:02  pbartok
16871
16872         * Control.cs:
16873           - Added private method to get the Control object from the window
16874           handle
16875           - Implemented ContextMenu property
16876           - Implemented PointToScreen
16877           - Implemented PreProcessMessage
16878           - Implemented IsInputChar
16879           - Implemented IsInputKey
16880           - Implemented ProcessCmdKey
16881           - Completed ProcessKeyEventArgs
16882           - Fixed message loop to call the proper chain of functions on key
16883           events
16884           - Implemented ProcessDialogChar
16885           - Implemented ProcessDialogKey
16886           - Implemented ProcessKeyMessage
16887           - Implemented ProcessKeyPreview
16888           - Added RaiseDragEvent stub (MS internal method)
16889           - Added RaiseKeyEvent stub (MS internal method)
16890           - Added RaiseMouseEvent stub (MS Internal method)
16891           - Added RaisePaintEvent stub (MS Internal method)
16892           - Added ResetMouseEventArgs stub (MS Internal method)
16893           - Implemented RtlTranslateAlignment
16894           - Implemented RtlTranslateContent
16895           - Implemented RtlTranslateHorizontal
16896           - Implemented RtlTranslateLeftRight
16897           - Added generation of KeyPress event
16898
16899 2004-10-02 05:57  ravindra
16900
16901         * ListViewItem.cs: Added attributes.
16902
16903 2004-10-02 05:32  ravindra
16904
16905         * ListView.cs: Added attributes.
16906
16907 2004-10-01 11:53  jackson
16908
16909         * Form.cs: Implement the Close method so work on MessageBox can
16910           continue.
16911
16912 2004-09-30 14:06  pbartok
16913
16914         * XplatUIX11.cs:
16915           - Bug fixes
16916
16917 2004-09-30 11:34  jackson
16918
16919         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
16920
16921 2004-09-30 07:26  ravindra
16922
16923         * ListViewItemConverter.cs: Converter for ListViewItem.
16924
16925 2004-09-30 07:26  ravindra
16926
16927         * SortOrder.cs: Enum for ListView control.
16928
16929 2004-09-30 07:25  ravindra
16930
16931         * ColumnHeader.cs: Supporting class for ListView control.
16932
16933 2004-09-30 07:24  ravindra
16934
16935         * ListView.cs, ListViewItem.cs: Initial implementation.
16936
16937 2004-09-30 07:20  ravindra
16938
16939         * ItemActivation.cs: Enum for ListView Control.
16940
16941 2004-09-29 20:29  pbartok
16942
16943         * XplatUIX11.cs:
16944           - Added lookup of pixel value for background color; tries to get a
16945             color 'close' to the requested color, it avoids having to create a
16946             colormap.  Depending on the display this could mean the used color
16947             is slightly off the desired color. Might have to change it to a more
16948             resource intensive colormap approach, but it will work as a
16949           workaround to avoid red screens.
16950
16951 2004-09-29 14:27  jackson
16952
16953         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
16954
16955 2004-09-28 12:44  pbartok
16956
16957         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
16958           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
16959           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
16960           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
16961           TrackBar.cs, VScrollBar.cs:
16962           - Streamlined Theme interfaces:
16963             * Each DrawXXX method for a control now is passed the object for
16964               the control to be drawn in order to allow accessing any state the
16965               theme might require
16966
16967             * ControlPaint methods for the theme now have a CP prefix to avoid
16968               name clashes with the Draw methods for controls
16969
16970             * Every control now retrieves it's DefaultSize from the current
16971             theme
16972
16973 2004-09-28 12:17  jackson
16974
16975         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
16976           drawing
16977
16978 2004-09-24 14:57  jackson
16979
16980         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
16981           Gives us a nice little performance boost.
16982
16983 2004-09-24 12:02  jackson
16984
16985         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
16986           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
16987           Control and supporting classes. Initial checkin
16988
16989 2004-09-23 13:08  jackson
16990
16991         * Form.cs: Temp build fixage
16992
16993 2004-09-23 01:39  ravindra
16994
16995         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
16996           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
16997           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
16998           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
16999           EventHandlers needed by ListView Control.
17000
17001 2004-09-22 14:12  pbartok
17002
17003         * ScrollableControl.cs:
17004           - Implemented DockPadding property
17005           - Implemented AutoScroll property
17006           - Implemented AutoScrollMargin property
17007           - Implemented AutoScrollMinSize property
17008           - Implemented AutoScrollPosition property
17009           - Implemented DisplayRectangle property (still incomplete)
17010           - Implemented CreateParams property
17011           - Implemented HScroll property
17012           - Implemented VScroll property
17013           - Implemented OnVisibleChanged property
17014
17015 2004-09-22 14:09  pbartok
17016
17017         * Form.cs:
17018           - Added Form.ControllCollection class
17019           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
17020             RemoveOwnedForm (still incomplete, missing on-top and common
17021             minimize/maximize behaviour)
17022           - Added StartPosition property (still incomplete, does not use when
17023             creating the form)
17024           - Added ShowDialog() methods (still incomplete, missing forcing the
17025             dialog modal)
17026
17027 2004-09-22 14:05  pbartok
17028
17029         * Application.cs:
17030           - Added message loop for modal dialogs
17031
17032 2004-09-22 14:02  pbartok
17033
17034         * GroupBox.cs:
17035           - Fixed wrong types for events
17036
17037 2004-09-22 14:00  pbartok
17038
17039         * Shortcut.cs, FormWindowState.cs:
17040           - Fixed wrong values
17041
17042 2004-09-22 12:01  jackson
17043
17044         * Control.cs: Text is never null
17045
17046 2004-09-20 22:14  pbartok
17047
17048         * XplatUIWin32.cs:
17049           - Fixed accessibility level for Idle handler
17050
17051 2004-09-20 18:54  jackson
17052
17053         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
17054           XplatUIX11.cs: New message loop that uses poll so we don't get a
17055           busy loop
17056
17057 2004-09-17 10:43  pbartok
17058
17059         * ScrollBar.cs:
17060           - Fixed behaviour of arrow buttons. Now properly behaves like
17061             Buttons (and like Microsoft's scrollbar arrow buttons)
17062
17063 2004-09-17 10:14  pbartok
17064
17065         * ScrollBar.cs:
17066           - Added missing release of keyboard/mouse capture
17067
17068 2004-09-17 06:18  jordi
17069
17070         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
17071           Theme.cs: Very early menu support
17072
17073 2004-09-16 17:45  pbartok
17074
17075         * XplatUIWin32.cs:
17076           - Fixed sending a window to the front
17077           - Added overload for SetWindowPos to avoid casting
17078
17079 2004-09-16 17:44  pbartok
17080
17081         * Control.cs:
17082           - Added SendToBack and BringToFront methods
17083
17084 2004-09-16 07:00  ravindra
17085
17086         * Copyright: Added Novell URL.
17087
17088 2004-09-16 07:00  ravindra
17089
17090         * ToolBar.cs: Invalidate should be done before redrawing.
17091
17092 2004-09-15 21:19  ravindra
17093
17094         * ColumnHeaderStyle.cs: Enum for ListView Control.
17095
17096 2004-09-15 21:18  ravindra
17097
17098         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
17099           ListView Control.
17100
17101 2004-09-13 18:26  jackson
17102
17103         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
17104           properly
17105
17106 2004-09-13 18:13  jackson
17107
17108         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
17109           a second thread and post messages into the main threads message
17110           queue. This makes timing much more consistent. Both win2K and XP
17111           have a minimum timer value of 15 milliseconds, so we now do this
17112           too.
17113
17114 2004-09-13 15:18  pbartok
17115
17116         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
17117           XplatUIX11.cs:
17118           - Added Z-Ordering methods
17119
17120 2004-09-13 10:56  pbartok
17121
17122         * Form.cs:
17123           - Fixed #region names
17124           - Moved properties and methods into their proper #regions
17125
17126 2004-09-13 10:51  pbartok
17127
17128         * Form.cs:
17129           - Added Accept and CancelButton properties
17130           - Added ProcessDialogKey() method
17131
17132 2004-09-13 08:18  pbartok
17133
17134         * IWindowTarget.cs:
17135           - Initial check-in
17136
17137 2004-09-10 21:50  pbartok
17138
17139         * Control.cs:
17140           - Added DoDragDrop() [incomplete]
17141           - Properly implemented 'Visible' handling
17142           - Added SetVisibleCore()
17143           - Implemented FindChildAtPoint()
17144           - Implemented GetContainerControl()
17145           - Implemented Hide()
17146
17147 2004-09-10 19:28  pbartok
17148
17149         * Control.cs:
17150           - Moved methods into their appropriate #regions
17151           - Reordered methods within regions alphabetically
17152
17153 2004-09-10 18:57  pbartok
17154
17155         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
17156           - Added method to retrieve text from window
17157
17158 2004-09-10 18:56  pbartok
17159
17160         * Control.cs:
17161           - Moved some internal functions into the internal region
17162           - Implemented FontHeight
17163           - Implemented RenderRightToLeft
17164           - Implemented ResizeRedraw
17165           - Implemented ShowFocusCues
17166           - Implemented ShowKeyboardCues
17167           - Implemented FromChildHandle
17168           - Implemented FromHandle
17169           - Implemented IsMnemonic
17170           - Implemented ReflectMessage
17171           - All public and protected Static Methods are now complete
17172
17173 2004-09-10 16:54  pbartok
17174
17175         * Control.cs:
17176           - Implemented remaining missing public instance properties
17177           - Alphabetized some out of order properties
17178
17179 2004-09-10 05:51  ravindra
17180
17181         * PictureBox.cs: Added a check for null image.
17182
17183 2004-09-10 00:59  jordi
17184
17185         * GroupBox.cs: remove cvs tag
17186
17187 2004-09-09 05:25  ravindra
17188
17189         * ToolBar.cs: Make redraw accessible from ToolBarButton.
17190
17191 2004-09-09 05:23  ravindra
17192
17193         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
17194           parent redraw.
17195
17196 2004-09-09 02:28  pbartok
17197
17198         * ThemeWin32Classic.cs:
17199           - Improve disabled string look
17200
17201 2004-09-09 01:15  jordi
17202
17203         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
17204           args and handler
17205
17206 2004-09-08 23:56  ravindra
17207
17208         * ItemBoundsPortion.cs: It's enum, not a class!
17209
17210 2004-09-08 23:47  ravindra
17211
17212         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
17213           Enums for Form.
17214
17215 2004-09-08 21:13  ravindra
17216
17217         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
17218           ListView control.
17219
17220 2004-09-08 21:03  ravindra
17221
17222         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
17223           avoid crash.
17224
17225 2004-09-08 21:01  ravindra
17226
17227         * ScrollableControl.cs: Removed unreachable code.
17228
17229 2004-09-08 06:45  jordi
17230
17231         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
17232
17233 2004-09-08 01:00  jackson
17234
17235         * XplatUIX11.cs: Only run the timers when updating the message
17236           queue. This effectively gives X messages a higher priority then
17237           timer messages. Timers still need love though
17238
17239 2004-09-07 14:01  jackson
17240
17241         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
17242           this for us and the handle is no longer valid.
17243
17244 2004-09-07 13:59  jackson
17245
17246         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
17247           loop that manages to not crash. TODO: Add poll and cleanup timers
17248
17249 2004-09-07 11:12  jordi
17250
17251         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
17252
17253 2004-09-07 03:40  jordi
17254
17255         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
17256           fixes, methods, multiple links
17257
17258 2004-09-06 06:55  jordi
17259
17260         * Control.cs: Caches ClientRectangle rectangle value
17261
17262 2004-09-05 02:03  jordi
17263
17264         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
17265           certain situations
17266
17267 2004-09-04 11:10  jordi
17268
17269         * Label.cs: Refresh when font changed
17270
17271 2004-09-02 16:24  pbartok
17272
17273         * Control.cs:
17274           - Added sanity check to creation of double buffer bitmap
17275
17276 2004-09-02 16:24  pbartok
17277
17278         * ButtonBase.cs:
17279           - Fixed selection of text color
17280           - Fixed handling of resize event; now properly recreates double
17281             buffering bitmap
17282           - Added missing assignment of TextAlignment
17283           - Added proper default for TextAlignment
17284
17285 2004-09-02 14:26  pbartok
17286
17287         * RadioButton.cs:
17288           - Added missing RadioButton.RadioButtonAccessibleObject class
17289
17290 2004-09-02 14:26  pbartok
17291
17292         * Control.cs:
17293           - Added missing Control.ControlAccessibleObject class
17294           - Started to implement Select()ion mechanisms, still very incomplete
17295
17296 2004-09-02 14:25  pbartok
17297
17298         * AccessibleObject.cs:
17299           - Added missing methods
17300
17301 2004-09-02 14:23  pbartok
17302
17303         * AccessibleNavigation.cs, AccessibleSelection.cs:
17304           - Initial check-in
17305
17306 2004-09-02 10:32  jordi
17307
17308         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
17309           pool for pens, brushes, and hatchbruses
17310
17311 2004-09-01 15:30  jackson
17312
17313         * StatusBar.cs: Fix typo
17314
17315 2004-09-01 14:44  pbartok
17316
17317         * RadioButton.cs:
17318           - Fixed state
17319
17320 2004-09-01 14:39  pbartok
17321
17322         * Button.cs, RadioButton.cs:
17323           - Functional initial check-in
17324
17325 2004-09-01 14:01  pbartok
17326
17327         * CheckBox.cs:
17328           - Added missing default
17329           - Added missing region mark
17330
17331 2004-09-01 09:10  jordi
17332
17333         * Label.cs: fixes method signatures, new methods, events, fixes
17334           autosize
17335
17336 2004-09-01 07:19  jordi
17337
17338         * Control.cs: Init string variables with an empty object
17339
17340 2004-09-01 04:20  jordi
17341
17342         * Control.cs: fires OnFontChanged event
17343
17344 2004-08-31 20:07  pbartok
17345
17346         * ButtonBase.cs:
17347           - Enabled display of strings
17348
17349 2004-08-31 20:05  pbartok
17350
17351         * Form.cs:
17352           - Added (partial) implementation of DialogResult; rest needs to be
17353             implemented when the modal loop code is done
17354
17355 2004-08-31 19:55  pbartok
17356
17357         * CheckBox.cs:
17358           - Fixed to match the removal of the needs_redraw concept
17359
17360 2004-08-31 19:55  pbartok
17361
17362         * ButtonBase.cs:
17363           - Removed the rather odd split between 'needs redraw' and redrawing
17364           - Now handles the events that require regeneration (ambient
17365             properties and size)
17366
17367 2004-08-31 19:41  pbartok
17368
17369         * Control.cs:
17370           - Added firing of BackColorChanged event
17371           - Added TopLevelControl property
17372           - Fixed handling of WM_ERASEBKGRND message
17373
17374 2004-08-31 12:49  pbartok
17375
17376         * ButtonBase.cs:
17377           - Removed debug
17378           - Minor fixes
17379
17380 2004-08-31 12:48  pbartok
17381
17382         * CheckBox.cs:
17383           - Finished (famous last words)
17384
17385 2004-08-31 04:35  jordi
17386
17387         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
17388           scrolling bugs, adds new methods
17389
17390 2004-08-30 14:42  pbartok
17391
17392         * CheckBox.cs:
17393           - Implemented CheckBox drawing code
17394
17395 2004-08-30 14:42  pbartok
17396
17397         * ButtonBase.cs:
17398           - Made Redraw() and CheckRedraw() virtual
17399           - Improved mouse up/down/move logic to properly track buttons
17400
17401 2004-08-30 09:44  pbartok
17402
17403         * CheckBox.cs:
17404           - Updated to fix broken build. Not complete yet.
17405
17406 2004-08-30 09:28  pbartok
17407
17408         * CheckState.cs:
17409           - Initial checkin
17410
17411 2004-08-30 09:17  pbartok
17412
17413         * Appearance.cs:
17414           - Initial check-in
17415
17416 2004-08-27 16:12  ravindra
17417
17418         * ToolBarButton.cs: Added TypeConverter attribute.
17419
17420 2004-08-27 16:07  ravindra
17421
17422         * ImageIndexConverter.cs: Implemented.
17423
17424 2004-08-27 14:17  pbartok
17425
17426         * Control.cs:
17427           - Removed unneeded stack vars
17428           - First attempt to fix sizing issues when layout is suspended
17429
17430 2004-08-25 15:35  jordi
17431
17432         * ScrollBar.cs: more fixes to scrollbar
17433
17434 2004-08-25 14:04  ravindra
17435
17436         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
17437           Added the missing divider code and grip for ToolBar Control.
17438
17439 2004-08-25 13:20  pbartok
17440
17441         * Control.cs:
17442           - Control now properly passes the ambient background color to child
17443             controls
17444
17445 2004-08-25 13:20  jordi
17446
17447         * ScrollBar.cs: small bug fix regarding bar position
17448
17449 2004-08-25 12:33  pbartok
17450
17451         * Timer.cs:
17452           - Now only calls SetTimer or KillTimer if the enabled state has
17453           changed
17454
17455 2004-08-25 12:33  pbartok
17456
17457         * XplatUIWin32.cs:
17458           - Fixed timer handling, now seems to work
17459           - Improved error message for window creation
17460
17461 2004-08-25 12:32  pbartok
17462
17463         * Control.cs:
17464           - Fixed generation of MouseUp message
17465
17466 2004-08-25 12:29  jordi
17467
17468         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
17469           and fixes for progressbar
17470
17471 2004-08-24 18:43  ravindra
17472
17473         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
17474           in ToolBar control.
17475
17476 2004-08-24 17:15  pbartok
17477
17478         * Panel.cs:
17479           - Added #region
17480           - Added missing events
17481           - Alphabetized
17482
17483 2004-08-24 17:14  pbartok
17484
17485         * StatusBar.cs, PictureBox.cs:
17486           - Now uses Control's CreateParams
17487
17488 2004-08-24 16:36  pbartok
17489
17490         * XplatUIX11.cs:
17491           - Fixed background color handling
17492           - Fixed sending of enter/leave events on a grab
17493
17494 2004-08-24 16:35  pbartok
17495
17496         * X11Structs.cs:
17497           - Refined definitions for CrossingEvent
17498
17499 2004-08-24 12:37  jordi
17500
17501         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
17502           formmating, methods signature, and adds missing events
17503
17504 2004-08-24 12:24  jordi
17505
17506         * Control.cs: fire OnEnabledChanged event
17507
17508 2004-08-24 11:17  pbartok
17509
17510         * XplatUIWin32.cs:
17511           - Implemented SetTimer() and KillTimer()
17512
17513 2004-08-24 11:16  pbartok
17514
17515         * XplatUIX11.cs:
17516           - Now uses Remove instead of Add to kill the timer
17517
17518 2004-08-24 10:16  jackson
17519
17520         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
17521           picture boxes in the theme now. Draw picture box borders and obey
17522           sizing modes
17523
17524 2004-08-24 05:49  jackson
17525
17526         * Timer.cs: Remove top secret debugging code
17527
17528 2004-08-24 05:34  jackson
17529
17530         * PictureBox.cs: Temp hack to make picture boxes draw their full
17531           image
17532
17533 2004-08-24 05:29  jackson
17534
17535         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
17536           XplatUIX11.cs: Move timers to the driver level. On X they are
17537           queued by the driver and checked on idle.
17538
17539 2004-08-24 01:07  jackson
17540
17541         * XplatUIX11.cs: Use a queue for async messages instead of passing
17542           them as ClientMessages since that was totally broken. Also simply
17543           check for events and return an idle message if none are found. This
17544           gives us an idle handler, and prevents deadlocking when no messages
17545           are in the queue.
17546
17547 2004-08-23 18:19  ravindra
17548
17549         * XplatUIWin32.cs: Removed the unwanted destructor.
17550
17551 2004-08-23 17:27  pbartok
17552
17553         * ButtonBase.cs:
17554           - Finishing touches. Works now, just needs some optimizations.
17555
17556 2004-08-23 16:53  jordi
17557
17558         * ScrollBar.cs: small fix
17559
17560 2004-08-23 16:45  pbartok
17561
17562         * Application.cs:
17563           - Removed debug output
17564           - Simplifications
17565
17566 2004-08-23 16:43  jordi
17567
17568         * ScrollBar.cs: [no log message]
17569
17570 2004-08-23 16:10  pbartok
17571
17572         * Form.cs:
17573           - Fixed handling of WM_CLOSE message
17574           - Removed debug output
17575
17576 2004-08-23 16:09  pbartok
17577
17578         * Application.cs:
17579           - Added handling of Idle event
17580           - Added handling of form closing
17581           - Fixed reporting of MessageLoop property
17582           - Removed some unneeded code, should provide a bit of a speedup
17583
17584 2004-08-23 15:22  pbartok
17585
17586         * Control.cs:
17587           - Added InitLayout() method
17588           - Added code to properly perform layout when Anchor or Dock property
17589             is changed
17590           - Changed 'interpretation' of ResumeLayout. MS seems to have a
17591             LAMESPEC, tried to do it in a way that makes sense
17592
17593 2004-08-23 14:10  jordi
17594
17595         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
17596           properties and methods
17597
17598 2004-08-23 13:55  pbartok
17599
17600         * Control.cs:
17601           - Properly fixed Jordi's last fix
17602           - Now uses Cursor's Position property instead of calling XplatUI
17603           directly
17604
17605 2004-08-23 13:44  jordi
17606
17607         * PaintEventHandler.cs: Adding missing attribute
17608
17609 2004-08-23 13:39  pbartok
17610
17611         * Cursor.cs:
17612           - Implemented Position property
17613
17614 2004-08-23 13:39  pbartok
17615
17616         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
17617           - Added method to move mouse cursor
17618
17619 2004-08-23 13:39  pbartok
17620
17621         * XplatUIX11.cs:
17622           - Fixed setting of background color
17623           - Added method to move mouse cursor
17624
17625 2004-08-23 13:16  jordi
17626
17627         * Control.cs: avoids null exception
17628
17629 2004-08-22 17:46  jackson
17630
17631         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
17632           PictureBox
17633
17634 2004-08-22 17:40  jackson
17635
17636         * XplatUIX11.cs: Add some missing locks
17637
17638 2004-08-22 15:10  pbartok
17639
17640         * Control.cs, Form.cs:
17641           - Removed OverlappedWindow style from Control, instead it's default
17642             now is child
17643           - Made form windows OverlappedWindow by default
17644
17645 2004-08-22 13:34  jackson
17646
17647         * ScrollBar.cs: Update the position through the Value property so
17648           the OnValueChanged event is raised.
17649
17650 2004-08-22 12:04  pbartok
17651
17652         * SWF.csproj:
17653           - Added Cursor.cs and UserControl.cs
17654
17655 2004-08-22 12:03  pbartok
17656
17657         * Cursor.cs:
17658           - Started implementation, not usable yet
17659
17660 2004-08-22 12:00  pbartok
17661
17662         * UserControl.cs:
17663           - Implemented UserControl (complete)
17664
17665 2004-08-21 19:20  ravindra
17666
17667         * ToolBar.cs: Correcting the formatting mess of VS.NET.
17668
17669 2004-08-21 18:49  ravindra
17670
17671         * ToolBar.cs: Probably this completes the missing attributes in
17672           toolbar control.
17673
17674 2004-08-21 18:03  ravindra
17675
17676         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
17677           Fixed toolbar control signatures.
17678
17679 2004-08-21 16:32  pbartok
17680
17681         * LinkLabel.cs:
17682           - Signature Fixes
17683
17684 2004-08-21 16:30  pbartok
17685
17686         * Label.cs:
17687           - Signature fixes
17688
17689 2004-08-21 16:19  pbartok
17690
17691         * Control.cs, Label.cs:
17692           - Signature fixes
17693
17694 2004-08-21 15:57  pbartok
17695
17696         * ButtonBase.cs:
17697           - Added loads of debug output for development
17698           - Fixed typo in method name
17699
17700 2004-08-21 15:52  pbartok
17701
17702         * ToolBarButtonClickEventArgs.cs:
17703           - Added missing base class
17704
17705 2004-08-21 14:53  pbartok
17706
17707         * Control.cs:
17708           - Updated to match new GrabWindow signature
17709
17710 2004-08-21 14:51  pbartok
17711
17712         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
17713           - Added method to get default display size
17714
17715 2004-08-21 14:23  pbartok
17716
17717         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
17718           - Added method to query current grab state
17719           - Added argument to allow confining a grab to a window
17720
17721 2004-08-21 14:22  pbartok
17722
17723         * Keys.cs:
17724           - Added [Flags] attribute so that modifiers can be used in bitwise
17725           ops
17726
17727 2004-08-21 14:21  pbartok
17728
17729         * TrackBar.cs, ScrollBar.cs:
17730           - Replaced direct XplatUI calls with their Control counterpart
17731
17732 2004-08-21 13:32  pbartok
17733
17734         * Control.cs:
17735           - Implemented Created property
17736
17737 2004-08-21 13:28  pbartok
17738
17739         * Control.cs:
17740           - Implemented ContainsFocus
17741
17742 2004-08-21 13:26  pbartok
17743
17744         * Control.cs:
17745           - Implemented CausesValidation
17746
17747 2004-08-21 13:21  pbartok
17748
17749         * Control.cs:
17750           - Implemented CanFocus
17751           - Implemented CanSelect
17752           - Implemented Capture
17753
17754 2004-08-21 12:35  pbartok
17755
17756         * XplatUIWin32.cs:
17757           - Fixed bug with Async message handling
17758           - Implemented getting the ModifierKeys
17759
17760 2004-08-21 12:32  jackson
17761
17762         * AsyncMethodResult.cs: Make sure we have the mutex before we
17763           release it. Fixes BeginInvoke on windows
17764
17765 2004-08-21 11:31  pbartok
17766
17767         * XplatUIWin32.cs, XplatUIX11.cs:
17768           - Drivers now return proper mouse state
17769
17770 2004-08-21 10:54  jackson
17771
17772         * Control.cs: Implement EndInvoke
17773
17774 2004-08-21 10:48  jackson
17775
17776         * Timer.cs: Remove unneeded finalizer
17777
17778 2004-08-20 19:52  ravindra
17779
17780         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
17781           in mouse event handling in the ToolBar control.
17782
17783 2004-08-20 19:50  ravindra
17784
17785         * ImageList.cs: Changed draw method to use the arguments passed in
17786           to draw the image.
17787
17788 2004-08-20 18:58  pbartok
17789
17790         * XplatUIStructs.cs:
17791           - Added private message for async communication
17792
17793 2004-08-20 17:38  ravindra
17794
17795         * Control.cs: Made RightToLeft property virtual and removed a
17796           Console.WriteLine.
17797
17798 2004-08-20 14:39  jordi
17799
17800         * ThemeGtk.cs: use style_attach
17801
17802 2004-08-20 14:39  pbartok
17803
17804         * XplatUIWin32.cs:
17805           - Added jackson's Async code from X11 to Win32
17806
17807 2004-08-20 14:09  pbartok
17808
17809         * SWF.csproj:
17810           - Added all new files
17811
17812 2004-08-20 14:09  pbartok
17813
17814         * Control.cs:
17815           - Added call to set window background color
17816
17817 2004-08-20 14:03  pbartok
17818
17819         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
17820           - Added method for setting the window background
17821
17822 2004-08-20 14:02  pbartok
17823
17824         * XplatUIWin32.cs:
17825           - Added method for setting the background color
17826           - Added handling for erasing the window background
17827
17828 2004-08-20 13:45  jordi
17829
17830         * TrackBar.cs: fixes timer, new properties and methods
17831
17832 2004-08-20 13:34  jackson
17833
17834         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
17835           correct thread
17836
17837 2004-08-20 13:22  jackson
17838
17839         * Timer.cs: Timer Tick events are now handed through Controls Async
17840           mechanism so the callbacks are executed in the same thread as X
17841
17842 2004-08-20 13:19  jackson
17843
17844         * XplatUIDriver.cs: Expose functionality to send async messages
17845           through the driver
17846
17847 2004-08-20 13:18  jackson
17848
17849         * Control.cs: Implement Begininvoke
17850
17851 2004-08-20 13:14  jackson
17852
17853         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
17854           messages through the driver
17855
17856 2004-08-20 13:12  jackson
17857
17858         * XplatUIX11.cs: Lock before all X operations. Also added Async
17859           method functionality through XSendEvent
17860
17861 2004-08-20 13:11  jackson
17862
17863         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
17864           This will screw up on 64 bit systems)
17865
17866 2004-08-20 13:10  jackson
17867
17868         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
17869           Async messages through X/Win32
17870
17871 2004-08-19 19:39  pbartok
17872
17873         * XplatUIX11.cs:
17874           - Updated code to match new HandleData.DeviceContext type
17875
17876 2004-08-19 19:38  pbartok
17877
17878         * HandleData.cs:
17879           - Made DeviceContext a generic object to allow usage from various
17880           drivers
17881           - Added support for queueing Windows messages
17882
17883 2004-08-19 19:37  pbartok
17884
17885         * XplatUIWin32.cs:
17886           - Added generation of MouseEnter, MouseLeave and MouseHover events
17887           - Added cleanup on EndPaint
17888
17889 2004-08-19 19:17  pbartok
17890
17891         * Control.cs:
17892           - Added handling of WM_MOUSEHOVER
17893           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
17894           code
17895
17896 2004-08-19 18:55  jordi
17897
17898         * ThemeGtk.cs: fixes button order
17899
17900 2004-08-19 18:12  jordi
17901
17902         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
17903
17904 2004-08-19 17:09  pbartok
17905
17906         * Control.cs:
17907           - Added Right property
17908           - Added RightToLeft property
17909
17910 2004-08-19 16:27  jordi
17911
17912         * ThemeGtk.cs: experimental GTK theme support
17913
17914 2004-08-19 16:26  jordi
17915
17916         * ITheme.cs, Theme.cs: move themes from an interface to a class
17917
17918 2004-08-19 16:25  jordi
17919
17920         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
17921           theme enhancaments
17922
17923 2004-08-19 16:04  pbartok
17924
17925         * XplatUIX11.cs:
17926           - Added colormap basics
17927           - Added a way to re-initialize with a different display handle
17928           - Fixed setting of the window background color
17929           - Added various X11 imports related to colors and colormaps
17930
17931 2004-08-19 15:51  pbartok
17932
17933         * X11Structs.cs:
17934           - Removed packing hints (Paolo suggested this a while back)
17935           - fixed colormap type
17936           - Added default Atom types
17937           - Added Screen and color structs and enums
17938
17939 2004-08-19 15:39  pbartok
17940
17941         * ImageList.cs:
17942           - Added missing Draw() method
17943           - Added missing RecreateHandle event
17944
17945 2004-08-19 15:30  pbartok
17946
17947         * Form.cs:
17948           - Added handling of WM_CLOSE
17949
17950 2004-08-18 13:16  jordi
17951
17952         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
17953           a table
17954
17955 2004-08-18 09:56  jordi
17956
17957         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
17958
17959 2004-08-17 15:31  ravindra
17960
17961         * SWF.csproj: Updated project.
17962
17963 2004-08-17 15:25  pbartok
17964
17965         * Control.cs:
17966           - Drawing improvement; don't call UpdateBounds if we are not visible
17967             (or have been minimized)
17968
17969 2004-08-17 15:24  pbartok
17970
17971         * XplatUIWin32.cs:
17972           - Finished IsVisible
17973           - Added Win32GetWindowPlacement
17974
17975 2004-08-17 15:08  jackson
17976
17977         * Panel.cs: Initial checkin of the Panel
17978
17979 2004-08-17 14:25  pbartok
17980
17981         * Control.cs:
17982           - Fixed broken handling of default window sizes
17983
17984 2004-08-17 13:29  jackson
17985
17986         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
17987           has a large startup time.
17988
17989 2004-08-17 10:25  jackson
17990
17991         * HandleData.cs: union areas properly
17992
17993 2004-08-17 10:12  jackson
17994
17995         * HandleData.cs: union areas properly
17996
17997 2004-08-16 20:00  ravindra
17998
17999         * ToolBar.cs, ToolBarButton.cs: Added attributes.
18000
18001 2004-08-16 18:48  ravindra
18002
18003         * ToolBar.cs: Added attributes.
18004
18005 2004-08-16 17:17  ravindra
18006
18007         * SWF.csproj: Updated project.
18008
18009 2004-08-16 17:16  jackson
18010
18011         * XplatUIX11.cs: Check for more expose events before sending a
18012           WM_PAINT so they can all be grouped together. This makes dragging a
18013           window across another window redraw in a sane way.
18014
18015 2004-08-16 15:47  pbartok
18016
18017         * Control.cs:
18018           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
18019             support OnMouseEnter/Leave()
18020           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
18021             exposure handling
18022
18023 2004-08-16 15:46  pbartok
18024
18025         * XplatUIStructs.cs, XplatUIX11.cs:
18026           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
18027           OnMouseEnter/Leave()
18028
18029 2004-08-16 15:34  jackson
18030
18031         * XplatUIX11.cs: Group multiple expose events in HandleData, make
18032           sure messages get the message field set to WM_NULL if they are not
18033           handled.
18034
18035 2004-08-16 15:24  jackson
18036
18037         * HandleData.cs: HandleData is used for storing message information
18038           for window handles
18039
18040 2004-08-15 17:23  ravindra
18041
18042         * ColorDepth.cs: Added attribute.
18043
18044 2004-08-15 17:23  ravindra
18045
18046         * SWF.csproj: Updated project for ToolBar Control.
18047
18048 2004-08-15 17:20  ravindra
18049
18050         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
18051           control and also dos2unix format.
18052
18053 2004-08-15 17:13  ravindra
18054
18055         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
18056           ToolBarButtonClickEventArgs.cs,
18057           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
18058           ToolBarTextAlign.cs: First Implementation of ToolBar control.
18059
18060 2004-08-15 15:31  pbartok
18061
18062         * ButtonBase.cs:
18063           - First (mostly) working version
18064
18065 2004-08-13 16:15  pbartok
18066
18067         * Control.cs:
18068           - Fixed Anchor default
18069
18070 2004-08-13 15:43  pbartok
18071
18072         * Control.cs:
18073           - Changed GetCursorPos signature
18074
18075 2004-08-13 15:42  pbartok
18076
18077         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
18078           - Changed signature for GetCursorPos
18079
18080 2004-08-13 15:25  pbartok
18081
18082         * XplatUIX11.cs:
18083           - Cleanup
18084           - Fixed resizing/exposure handling
18085
18086 2004-08-13 15:22  jordi
18087
18088         * ThemeWin32Classic.cs: removes redundant code and fixes issues
18089           with tickposition
18090
18091 2004-08-13 14:55  jordi
18092
18093         * TrackBar.cs: change from wndproc to events
18094
18095 2004-08-13 13:00  jordi
18096
18097         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18098           XplatUIX11.cs: implements PointToClient (ScreenToClient)
18099
18100 2004-08-13 12:53  pbartok
18101
18102         * XplatUIWin32.cs:
18103           - Changed GetWindowPos to also provide client area size
18104           - Fixed broken prototypes for several win32 functions
18105
18106 2004-08-13 12:53  pbartok
18107
18108         * XplatUI.cs, XplatUIDriver.cs:
18109           - Changed GetWindowPos to also provide client area size
18110
18111 2004-08-13 12:52  pbartok
18112
18113         * XplatUIX11.cs:
18114           - Added generation of WM_POSCHANGED
18115           - Changed GetWindowPos to also provide client area size
18116
18117 2004-08-13 12:52  pbartok
18118
18119         * Control.cs:
18120           - Added Dispose() and destructor
18121           - Fixed resizing and bounds calculation
18122           - Fixed Layout
18123           - Added memory savings for invisible windows
18124
18125 2004-08-13 12:46  jordi
18126
18127         * TrackBar.cs: adds timer and grap window
18128
18129 2004-08-13 10:25  jackson
18130
18131         * Timer.cs: SWF Timer
18132
18133 2004-08-12 16:59  pbartok
18134
18135         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18136           - Implemented method to get current mouse position
18137
18138 2004-08-12 14:29  jordi
18139
18140         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
18141           enhancement, fix mouse problems, highli thumb, etc
18142
18143 2004-08-12 13:31  pbartok
18144
18145         * Control.cs:
18146           - Fixed Anchoring bugs
18147
18148 2004-08-12 13:01  jackson
18149
18150         * StatusBar.cs: Don't forget things
18151
18152 2004-08-12 12:54  jackson
18153
18154         * ThemeWin32Classic.cs: Handle owner draw status bars
18155
18156 2004-08-12 12:54  jackson
18157
18158         * StatusBar.cs: Implement missing properties, events, and methods.
18159           Handle mouse clicking
18160
18161 2004-08-12 10:19  jackson
18162
18163         * StatusBarPanelClickEventArgs.cs,
18164           StatusBarPanelClickEventHandler.cs: Classes for handling status
18165           bar panel click events
18166
18167 2004-08-12 10:10  jackson
18168
18169         * Control.cs: Add missing properties
18170
18171 2004-08-12 09:46  pbartok
18172
18173         * BindingsManagerBase.cs:
18174           - Name changed to BindingManagerBase.cs
18175
18176 2004-08-12 09:25  jordi
18177
18178         * ScrollableControl.cs: calls ctrlbase instead of exeception
18179
18180 2004-08-11 16:28  pbartok
18181
18182         * InputLanguageChangingEventArgs.cs:
18183           - Never check in before compiling. Fixes the last check-in
18184
18185 2004-08-11 16:26  pbartok
18186
18187         * InputLanguageChangingEventArgs.cs:
18188           - More signature fixes
18189
18190 2004-08-11 16:20  pbartok
18191
18192         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
18193           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
18194           ImageListStreamer.cs, InputLanguage.cs,
18195           InputLanguageChangedEventArgs.cs,
18196           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
18197           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
18198           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
18199           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18200           - Signature fixes
18201
18202 2004-08-11 16:16  pbartok
18203
18204         * Application.cs:
18205           - Fixed Signature
18206           - Added .Net 1.1 method
18207
18208 2004-08-11 15:25  pbartok
18209
18210         * SWF.csproj:
18211           - Fixed BindingManagerBase.cs filename
18212
18213 2004-08-11 15:22  pbartok
18214
18215         * BindingManagerBase.cs:
18216           - Was checked in with wrong filename
18217
18218 2004-08-11 14:50  pbartok
18219
18220         * SWF.csproj:
18221           - Updated
18222
18223 2004-08-11 13:41  jordi
18224
18225         * XplatUIWin32.cs: Fixes ClientRect
18226
18227 2004-08-11 13:19  pbartok
18228
18229         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18230           XplatUIX11.cs:
18231           - We had SetWindowPos and MoveWindow to set window positions and
18232             size, removed MoveWindow. We have GetWindowPos, so it made sense to
18233             keep SetWindowPos as matching counterpart
18234           - Added some X11 sanity checking
18235
18236 2004-08-11 12:59  pbartok
18237
18238         * Control.cs:
18239           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
18240             (It seems that SetBounds is just a front for SetBoundsCore and
18241              SetBoundsCore updates the underlying window system and
18242              UpdateBounds is responsible for updating the variables associated
18243              with the Control and sending the events)
18244           - Major cleanup of Size handling; we now have two sizes, client_size
18245             and bounds. Bounds defines the window with decorations, client_size
18246             without them.
18247
18248 2004-08-11 12:55  pbartok
18249
18250         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18251           - Added method to calculate difference between decorated window and
18252             raw client area
18253
18254 2004-08-11 12:54  pbartok
18255
18256         * Label.cs:
18257           - Forcing redraw on resize
18258
18259 2004-08-11 11:43  pbartok
18260
18261         * ImageList.cs:
18262           - Removed disposing of the actual images when the list is disposed
18263
18264 2004-08-11 09:13  pbartok
18265
18266         * Control.cs:
18267           - Now properly reparents windows
18268
18269 2004-08-11 08:37  pbartok
18270
18271         * Control.cs:
18272           - Duh!
18273
18274 2004-08-11 07:47  pbartok
18275
18276         * Control.cs:
18277           - Rewrote the collection stuff. Might not be as fast now, not
18278             keeping the number of children around and accessible directly, but
18279             it's more straightforward
18280
18281 2004-08-11 07:44  pbartok
18282
18283         * AccessibleObject.cs:
18284           - Fixed to match ControlCollection rewrite
18285
18286 2004-08-11 07:43  pbartok
18287
18288         * ImageList.cs:
18289           - Added missing creation of the collection list
18290
18291 2004-08-10 20:08  jackson
18292
18293         * StatusBar.cs: Get the paint message from WndProc
18294
18295 2004-08-10 19:31  jackson
18296
18297         * ThemeWin32Classic.cs: Create Brushes as little as possible
18298
18299 2004-08-10 19:20  jackson
18300
18301         * UICues.cs: Add Flags attribute
18302
18303 2004-08-10 19:19  jackson
18304
18305         * StatusBarPanel.cs: Signature cleanup
18306
18307 2004-08-10 19:10  jackson
18308
18309         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
18310           Initial implementation of status bar item drawing
18311
18312 2004-08-10 17:27  jordi
18313
18314         * TrackBar.cs: add missing methods, properties, and restructure to
18315           hide extra ones
18316
18317 2004-08-10 16:24  jackson
18318
18319         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
18320           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
18321           attribute
18322
18323 2004-08-10 13:21  jordi
18324
18325         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
18326           enhancements and standarize on win colors defaults
18327
18328 2004-08-10 12:52  jackson
18329
18330         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
18331           ThemeWin32Classic.cs: Implement DrawItem functionality
18332
18333 2004-08-10 12:47  jordi
18334
18335         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
18336
18337 2004-08-10 12:32  jordi
18338
18339         * Control.cs: throw ontextchange event
18340
18341 2004-08-10 11:43  pbartok
18342
18343         * Control.cs:
18344           - Added more to the still unfinished Dock/Anchor layout code
18345
18346 2004-08-10 11:39  pbartok
18347
18348         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
18349           - Added GetWindowPos method
18350
18351 2004-08-10 11:36  pbartok
18352
18353         * XplatUIWin32.cs:
18354           - Implemented several methods
18355
18356 2004-08-10 09:47  jackson
18357
18358         * TrackBar.cs: Allow control to handle buffering
18359
18360 2004-08-10 09:41  jackson
18361
18362         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
18363
18364 2004-08-10 09:24  jackson
18365
18366         * Label.cs, LinkLabel.cs: Let Control handle buffering.
18367
18368 2004-08-10 09:09  jackson
18369
18370         * StatusBar.cs: Let Control handle all the buffering.
18371
18372 2004-08-10 09:08  jackson
18373
18374         * Control.cs: Control will now handle the buffering code, so each
18375           control does not have to implement this.
18376
18377 2004-08-10 08:34  jackson
18378
18379         * XplatUIDriver.cs: Use default colors from the theme
18380
18381 2004-08-09 17:12  pbartok
18382
18383         * ImageList.cs:
18384           - Fixed several bugs Ravindra pointed out
18385
18386 2004-08-09 16:11  pbartok
18387
18388         * Control.cs:
18389           - Added incomplete dock layout code
18390           - Added support for mouse wheel
18391
18392 2004-08-09 16:09  pbartok
18393
18394         * XplatUIX11.cs:
18395           - Added handling for middle and right mousebutton
18396           - Added handling for mouse wheel
18397           - Added handling for key state and mouse state and position
18398           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
18399           messages
18400
18401 2004-08-09 15:40  jackson
18402
18403         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
18404           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
18405           checkin
18406
18407 2004-08-09 15:37  jackson
18408
18409         * StatusBar.cs: Initial implementation of StatusBar
18410
18411 2004-08-09 15:36  jackson
18412
18413         * ITheme.cs: Add support for drawing status bar and getting status
18414           bar item sizes
18415
18416 2004-08-09 15:35  pbartok
18417
18418         * MouseButtons.cs:
18419           - Fixed values
18420
18421 2004-08-09 15:34  jackson
18422
18423         * ThemeWin32Classic.cs: Add support for drawing status bar and get
18424           status bar item sizes
18425
18426 2004-08-09 15:21  jackson
18427
18428         * ThemeWin32Classic.cs: Use known colors for default control
18429           colours
18430
18431 2004-08-09 15:12  jackson
18432
18433         * ThemeWin32Classic.cs: Make the default font static, it is static
18434           in control so this doesn't change functionality and creating fonts
18435           is sloooooow.
18436
18437 2004-08-09 14:56  pbartok
18438
18439         * X11Structs.cs:
18440           - Added GrabMode enum
18441
18442 2004-08-09 14:55  pbartok
18443
18444         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18445           - Removed Run method, was only required for initial development
18446
18447 2004-08-09 14:51  pbartok
18448
18449         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18450           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
18451           capture
18452
18453 2004-08-09 13:48  pbartok
18454
18455         * XplatUIX11.cs:
18456           - Fixed default sizing for child windows
18457
18458 2004-08-09 12:56  pbartok
18459
18460         * XplatUIX11.cs:
18461           - Added generation of WM_DESTROY message
18462           - Added handling of window manager induced shutdown
18463
18464 2004-08-09 11:31  jackson
18465
18466         * ThemeWin32Classic.cs: New names for control properties
18467
18468 2004-08-09 11:25  jackson
18469
18470         * Control.cs: Use new color names
18471
18472 2004-08-09 11:02  jackson
18473
18474         * XplatUI.cs: Get default window properties from the theme
18475
18476 2004-08-09 11:01  jackson
18477
18478         * ITheme.cs: The theme engine now controls default window
18479           properties
18480
18481 2004-08-09 11:00  jackson
18482
18483         * ThemeWin32Classic.cs: Add default window color properties
18484
18485 2004-08-09 10:17  jackson
18486
18487         * ThemeWin32Classic.cs: Use correct default back color
18488
18489 2004-08-09 10:05  jackson
18490
18491         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
18492           the theme now.
18493
18494 2004-08-09 09:56  jackson
18495
18496         * XplatUI.cs: Remove defaults, these are handled by the theme now.
18497
18498 2004-08-09 09:54  jackson
18499
18500         * Control.cs: Get default properties from the theme.
18501
18502 2004-08-09 09:53  jackson
18503
18504         * ITheme.cs: Themes now handle default control properties
18505
18506 2004-08-09 09:53  jackson
18507
18508         * ThemeWin32Classic.cs: Themes now handle default control
18509           properties so coloring will be consistent
18510
18511 2004-08-08 16:54  jordi
18512
18513         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
18514
18515 2004-08-08 15:08  jordi
18516
18517         * XplatUIX11.cs: fixes keyboard crash
18518
18519 2004-08-08 13:47  jordi
18520
18521         * Label.cs: add cvs header info
18522
18523 2004-08-08 12:09  jackson
18524
18525         * ThemeWin32Classic.cs: Add pen_buttonface
18526
18527 2004-08-08 11:52  jordi
18528
18529         * Label.cs, LinkLabel.cs: [no log message]
18530
18531 2004-08-08 11:34  jordi
18532
18533         * ThemeWin32Classic.cs: Use Windows Standard Colours
18534
18535 2004-08-07 17:32  jordi
18536
18537         * TrackBar.cs: throw exceptions of invalid enums values
18538
18539 2004-08-07 17:31  jordi
18540
18541         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
18542           draw method name
18543
18544 2004-08-07 16:56  jackson
18545
18546         * HorizontalAlignment.cs: Initial checkin
18547
18548 2004-08-07 13:16  jordi
18549
18550         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
18551           methods
18552
18553 2004-08-07 13:05  jordi
18554
18555         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
18556           GetSysColor defines
18557
18558 2004-08-06 18:01  pbartok
18559
18560         * ThemeWin32Classic.cs:
18561           - Fixed some rounding issues with float/int
18562
18563 2004-08-06 18:00  jackson
18564
18565         * DockStyle.cs, AnchorStyles.cs:
18566
18567                   Add flags and serializable attributes.
18568
18569 2004-08-06 17:46  pbartok
18570
18571         * XplatUIX11.cs:
18572           - Implemented GetParent
18573
18574 2004-08-06 17:18  pbartok
18575
18576         * TrackBar.cs:
18577           - Fixed some rounding issues with float/int
18578
18579 2004-08-06 17:17  pbartok
18580
18581         * X11Structs.cs, XplatUIX11.cs:
18582           - Fixed Refresh and Invalidate
18583
18584 2004-08-06 15:30  pbartok
18585
18586         * Control.cs, X11Structs.cs, XplatUIX11.cs:
18587           - Fixed recursive loop when resizing
18588           - Improved/fixed redrawing on expose messages
18589
18590 2004-08-06 09:53  jordi
18591
18592         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
18593           keyboard navigation
18594
18595 2004-08-06 08:02  pbartok
18596
18597         * X11Structs.cs, XplatUIX11.cs:
18598           - Fixed reparenting
18599           - Fixed window border creation
18600
18601 2004-08-05 15:38  pbartok
18602
18603         * XplatUIX11.cs:
18604           - Attempted fix for reparenting problems
18605
18606 2004-08-04 15:14  pbartok
18607
18608         * Control.cs:
18609           - Fixed Invalidation bug (calculated wrong client area)
18610           - Added ClientSize setter
18611
18612 2004-08-04 15:13  pbartok
18613
18614         * Form.cs:
18615           - Added AutoScale properties
18616
18617 2004-08-04 15:13  pbartok
18618
18619         * SWF.csproj:
18620           - Added latest files
18621
18622 2004-08-04 14:11  pbartok
18623
18624         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18625           XplatUIX11.cs:
18626           - Added Invalidate handling
18627
18628 2004-08-03 17:09  jordi
18629
18630         * XplatUIDriver.cs: fixes spelling mistake
18631
18632 2004-07-27 09:53  jordi
18633
18634         * TrackBar.cs: fixes trackbar events, def classname, methods
18635           signature
18636
18637 2004-07-27 09:29  jordi
18638
18639         * ScrollBar.cs: fixes scrollbar events
18640
18641 2004-07-27 04:38  jordi
18642
18643         * Control.cs: changes to be able to run winforms samples
18644
18645 2004-07-26 11:42  jordi
18646
18647         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
18648           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
18649
18650 2004-07-26 05:41  jordi
18651
18652         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
18653           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
18654           implementation
18655
18656 2004-07-22 09:22  jordi
18657
18658         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
18659           check link overlapping, implement events, and fixes
18660
18661 2004-07-21 10:28  jordi
18662
18663         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
18664
18665 2004-07-21 10:19  jordi
18666
18667         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
18668           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
18669           LinkLabelLinkClickedEventArgs.cs,
18670           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
18671           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
18672           implementation
18673
18674 2004-07-19 13:09  jordi
18675
18676         * Control.cs, Label.cs: label control re-written: added missing
18677           functionlity, events, and properties
18678
18679 2004-07-19 10:49  jordi
18680
18681         * Control.cs: fixes SetBounds logic
18682
18683 2004-07-19 01:29  jordi
18684
18685         * Control.cs: Call RefreshWindow only if the window has created
18686
18687 2004-07-15 14:05  pbartok
18688
18689         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
18690           - Implemented ImageList and ImageList.ImageCollection classes
18691           - Added ColorDepth enumeration
18692           - Updated SWF VS.Net project
18693
18694 2004-07-15 11:06  jordi
18695
18696         * XplatUIStructs.cs: added MsgButons enum
18697
18698 2004-07-15 11:03  jordi
18699
18700         * Control.cs: added basic mouse handeling events
18701
18702 2004-07-15 03:38  jordi
18703
18704         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
18705           Vertical TrackBar control implementation
18706
18707 2004-07-13 09:33  jordi
18708
18709         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
18710
18711 2004-07-13 09:31  jordi
18712
18713         * Control.cs, Form.cs: commit: new properties and fixes form size
18714           problems
18715
18716 2004-07-09 14:13  miguel
18717
18718         * ProgressBar.cs: Spelling
18719
18720 2004-07-09 11:25  pbartok
18721
18722         * ProgressBar.cs:
18723           - Removed usage of Rectangle for drawing. Miguel pointed out it's
18724           faster
18725
18726 2004-07-09 11:17  miguel
18727
18728         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
18729
18730                 * ProgressBar.cs: Fixed spelling for `block'
18731
18732                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
18733                 style guidelines.
18734
18735                 Avoid using the += on rect.X, that exposed a bug in the compiler.
18736
18737 2004-07-08 23:21  pbartok
18738
18739         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
18740           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
18741           BaseCollection.cs, Binding.cs, BindingContext.cs,
18742           BindingMemberInfo.cs, BindingsCollection.cs,
18743           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
18744           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
18745           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
18746           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
18747           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
18748           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
18749           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
18750           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
18751           FrameStyle.cs, GiveFeedbackEventArgs.cs,
18752           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
18753           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
18754           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
18755           InputLanguageChangedEventArgs.cs,
18756           InputLanguageChangedEventHandler.cs,
18757           InputLanguageChangingEventArgs.cs,
18758           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
18759           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
18760           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
18761           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
18762           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
18763           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
18764           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
18765           QueryAccessibilityHelpEventArgs.cs,
18766           QueryAccessibilityHelpEventHandler.cs,
18767           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
18768           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
18769           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
18770           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
18771           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
18772           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
18773           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
18774           XplatUIX11.cs, lang.cs:
18775           - Initial check-in
18776